Find other agents on the same server. Use when the user asks about other agents, wants to migrate memory from another agent, or needs to find an agent by name or tags.
Installation
Details
Usage
After installing, this skill will be available to your AI coding assistant.
Verify installation:
skills listSkill Instructions
name: finding-agents description: Find other agents on the same server. Use when the user asks about other agents, wants to migrate memory from another agent, or needs to find an agent by name or tags.
Finding Agents
This skill helps you find other agents on the same Letta server.
When to Use This Skill
- User asks about other agents they have
- User wants to find a specific agent by name
- User wants to list agents with certain tags
- You need to find an agent ID for memory migration
- You found an agent_id via message search and need details about that agent
Script Usage
npx tsx <SKILL_DIR>/scripts/find-agents.ts [options]
Options
| Option | Description |
|---|---|
--name <name> | Exact name match |
--query <text> | Fuzzy search by name |
--tags <tag1,tag2> | Filter by tags (comma-separated) |
--match-all-tags | Require ALL tags (default: ANY) |
--include-blocks | Include agent.blocks in response |
--limit <n> | Max results (default: 20) |
Common Patterns
Finding Letta Code Agents
Agents created by Letta Code are tagged with origin:letta-code. To find only Letta Code agents:
npx tsx <SKILL_DIR>/scripts/find-agents.ts --tags "origin:letta-code"
This is useful when the user is looking for agents they've worked with in Letta Code CLI sessions.
Finding All Agents
If the user has agents created outside Letta Code (via ADE, SDK, etc.), search without the tag filter:
npx tsx <SKILL_DIR>/scripts/find-agents.ts
Examples
List all agents (up to 20):
npx tsx <SKILL_DIR>/scripts/find-agents.ts
Find agent by exact name:
npx tsx <SKILL_DIR>/scripts/find-agents.ts --name "ProjectX-v1"
Search agents by name (fuzzy):
npx tsx <SKILL_DIR>/scripts/find-agents.ts --query "project"
Find only Letta Code agents:
npx tsx <SKILL_DIR>/scripts/find-agents.ts --tags "origin:letta-code"
Find agents with multiple tags:
npx tsx <SKILL_DIR>/scripts/find-agents.ts --tags "frontend,production" --match-all-tags
Include memory blocks in results:
npx tsx <SKILL_DIR>/scripts/find-agents.ts --query "project" --include-blocks
Output
Returns the raw API response with full agent details. Key fields:
id- Agent ID (e.g.,agent-abc123)name- Agent namedescription- Agent descriptiontags- Agent tagsblocks- Memory blocks (if--include-blocksused)
Related Skills
- migrating-memory - Once you find an agent, use this skill to copy/share memory blocks
- searching-messages - Search messages across all agents to find which agent discussed a topic. Use
--all-agentsto getagent_idvalues, then use this skill to get full agent details.
Finding Agents by Topic
If you need to find which agent worked on a specific topic:
- Load both skills:
searching-messagesandfinding-agents - Search messages across all agents:
search-messages.ts --query "topic" --all-agents --limit 10 - Note the
agent_idvalues from matching messages - Get agent details:
Or use the agent_id directly in the Letta API
find-agents.ts --query "partial-name"
More by letta-ai
View allComprehensive guide for initializing or reorganizing agent memory. Load this skill when running /init, when the user asks you to set up your memory, or when you need guidance on creating effective memory blocks.
Guide for safely discovering and installing skills from external repositories. Use when a user asks for something where a specialized skill likely exists (browser testing, PDF processing, document generation, etc.) and you want to bootstrap your understanding rather than starting from scratch.
Defragments and cleans up agent memory blocks. Use when memory becomes messy, redundant, or poorly organized. Backs up memory, uses a subagent to clean it up, then restores the cleaned version.
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Letta Code's capabilities with specialized knowledge, workflows, or tool integrations.
