Named Agents & Memory
Give an agent a name and it remembers context across sessions:
# First session — agent learns about your projectnpx agntk -n myproject "read the codebase and understand the architecture"
# Later session — agent already knows the contextnpx agntk -n myproject "add rate limiting to the API endpoints"
# See what agents existnpx agntk listMemory is stored at ~/.agntk/agents/{name}/ as plain markdown files:
| File | Description |
|---|---|
memory.md | Agent-curated facts about your project |
context.md | Session context the agent rewrites as it learns |
decisions.md | Append-only log of decisions made |
preferences.md | Cross-project preferences |
identity.md | Human-authored identity (you can edit this) |
project.md | Human-authored project context |