Unlimited organized memory for your AI agent. Store, search, and organize projects, contacts, decisions, and knowledge across categories. Never lose context...
记忆
Agent Context KB
试用Project memory for coding agents
它能做什么
Manage and explain a repository's `.agent-kb/` knowledge base (KB) for coding agents. Use when the user works with the KB — asks how the KB or its commands behave, sets up project memory, records durable knowledge, refreshes the KB runtime protocol, validates routes/links, compiles inbox notes into topics, or trims stale content.
技能文档
Agent KB
Use this skill to manage a repository-local .agent-kb/ for coding agents. The
KB is an agent-facing index of durable project knowledge, not a replacement for
human docs.
Quick Start
Run the bundled script from the skill directory. Use --root . in the target repo.
python3 scripts/agent_kb.py init --root /path/to/repo
python3 scripts/agent_kb.py upgrade --root /path/to/repo
python3 scripts/agent_kb.py validate --root /path/to/repo
python3 scripts/agent_kb.py note --root /path/to/repo --title "Auth session note" --target decisions/active/auth-storage.md --body "Durable fact."
python3 scripts/agent_kb.py compile --root /path/to/repo
python3 scripts/agent_kb.py trim --root /path/to/repo
python3 scripts/agent_kb.py trim --root /path/to/repo --write
python3 scripts/agent_kb.py stats --root /path/to/repo
Workflow
init: create the scaffold and runtime protocol. Default versioning is a personal nested.agent-kb/.git; use--sharedor--localwhen requested. When init reports an empty scaffold, initialization completes only after you have offered the user the one-time distillation pass described in the init output — then run it if they accept, or leave the scaffold as-is if they decline.upgrade: refresh generated protocol/scaffold files conservatively.validate: run after KB edits; fix errors before finishing.note: capture durable knowledge when the stable target is unclear.compile: merge inbox notes with validSuggested targetfiles.trim: run it and follow its output. Size is a proxy; compact redundant or stale information, and stop when the remaining content is genuinely non-redundant. Usetrim --writeonly for deterministic cleanup.stats: backfills local transcript reads when available. Paste its full output verbatim in a fenced code block; the ASCII charts are the deliverable.
Knowledge Rules
Record durable knowledge only; the full do/don't canon lives in the generated
.agent-kb/start.md. Summarize or link human docs rather than copying them in.
Each layer has exactly one owner — do not restate another layer's content here:
- Trigger layer (protocol section in
AGENTS.md/CLAUDE.md): when to read and when to update, nothing else. Owned byRUNTIME_PROTOCOLinscripts/agent_kb.py. - Canon layer (
.agent-kb/start.md): what counts as durable knowledge and the do/don't lists. - Skill layer (this file): maintenance commands only.
Lightweight Plans
Use .agent-kb/plans/current.md for durable continuity: current focus, major
done milestones, next moves, and open questions. Keep it short.
Route Format
.agent-kb/routes.yaml is the canonical route source.
routes:
- id: planning
task: Planning / current focus
read_first:
- plans/current.md
also_consider:
- decisions/active/project-decisions.md
- id: local-dev
task: Local dev / test / deploy
read_first:
- workflows/local-dev.md
also_consider:
- workflows/deploy.md
Paths are relative to .agent-kb/. Keep read_first to one file and
also_consider to at most two files. Regenerate map.md when routes change.
Keep each stable topic reachable from routes or another reachable Markdown link.
Versioning & privacy
.agent-kb/.gitignore always keeps .log/ out of version control. Versioning
modes are recorded in .agent-kb/.kb-meta.yaml:
- Nested (default): personal KB repo under
.agent-kb/.git; commit KB changes withgit -C .agent-kb .... - Shared:
init --shared; track.agent-kb/in the parent repo. - Local:
init --local; gitignore.agent-kb/without a nested repo.
相关技能
A cross-agent project memory skill for Codex and Claude Code, enabling consistent context, documentation, and development history across sessions.
Query the agent's knowledge graph for entities, relationships, and statistics. Enables natural language exploration of accumulated session memory without she...
Use when preserving, searching, reviewing, or exporting user-owned agent memory across OpenClaw, Codex, Claude, OpenCode, Hermes, Qoder, Obsidian, and Git. Inputs are local memory/chat stores and handoff summaries; outputs are Obsidian sources, memory indexes, context/profile packs, skill inventorie
Answer Research KB questions from the team Gitea-backed knowledge base with OpenClaw reasoning, optional reference attachments, stable citations, OpenClaw-led evidence selection, and optional high-value Q&A persistence.
Give AI agents Everything you read becomes knowledge. using BlueColumn persistent memory. Use when an agent researches and needs to keep findings; when the user wants to store, recall, or search research memory context. Requires a BlueColumn API key (bc_live_*).