acquiring-skills
Discover and install skills from Hermes, ClawHub, GitHub, and other registries. Load this skill whenever a user asks for a capability you don't already have —…
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.
$ npx -y skills add letta-ai/letta-code --skill finding-agents --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/finding-agentsContext preview
The summary Claude sees to decide when to auto-load this skill.
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.
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.
This skill helps you find other agents on the same Letta server.
letta agents list [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 | | `--shared` | List agents shared with the current user | | `--limit <n>` | Max results (default: 20) |
Agents created by Letta Code are tagged with `origin:letta-code`. To find only Letta Code agents:
letta agents list --tags "origin:letta-code"
This is useful when the user is looking for agents they've worked with in Letta Code CLI sessions.
List agents owned by the current user, then list agents shared with them:
letta agents list letta agents list --shared
Use `--query <text>` with either command to search by name.
**List all agents (up to 20):**
letta agents list
**Find agent by exact name:**
letta agents list --name "ProjectX-v1"
**Search agents by name (fuzzy):**
letta agents list --query "project"
**Find only Letta Code agents:**
letta agents list --tags "origin:letta-code"
**Find agents with multiple tags:**
letta agents list --tags "frontend,production" --match-all-tags
**Include memory blocks in results:**
letta agents list --query "project" --include-blocks
Returns the raw API response with full agent details. Key fields:
If you need to find which agent worked on a specific topic:
1. Search messages across all agents:
letta messages search --query "topic" --all-agents --limit 10
2. Note the `agent_id` values from matching messages 3. Get agent details:
letta agents list --query "partial-name"
Or use the agent_id directly in the Letta API
Letta Code is a stateful agent harness for creating agents that are more like people than tools. Letta Code agents have memory, identity, and a sense of experience over time.
Repo: letta-ai/letta-code
Discover and install skills from Hermes, ClawHub, GitHub, and other registries. Load this skill whenever a user asks for a capability you don't already have —…
Control a real browser to navigate pages, click, type, fill forms, inspect rendered UI, take screenshots, or record video. Load only when the user asks to open…
Investigate agent behavior and audit memory structure, organization, and skills; make evidence-backed repairs.
Creates and edits trusted local Letta Code mods, including tools, slash commands, local-only model providers, lifecycle/turn events, scoped conversation…
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…
Creates, edits, and enables Letta Code mod-provided slash commands. Use when the user asks to add a custom /command, slash command, command shortcut, scoped…