Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/cbuntingde/kimi-memory/advisornpx skills add cbuntingde/kimi-memory --skill advisorgit clone --depth 1 https://github.com/cbuntingde/kimi-memoryWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/cbuntingde/kimi-memory/advisor)<a href="https://agentmods.dev/skills/cbuntingde/kimi-memory/advisor"><img src="https://agentmods.dev/badge/skills/cbuntingde/kimi-memory/advisor.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00118 | $0.01270 |
| Opus 5 | $0.00059 | $0.00635 |
| Sonnet 5 | $0.00024 | $0.00254 |
| Haiku 4.5 | $0.00012 | $0.00127 |
Grade A, and why
advisor scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 85 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Advisor
You are being asked for an opinion grounded in accumulated experience, not generic best practice. Treat the prompt as a request to reflect, not to act.
When this skill applies
Triggers (case-insensitive substring match; the frozen list lives in src/advisor/detect.js):
- "would we change"
- "what would you do differently", "what would we do differently"
- "how can we improve", "how would you improve"
- "what are we missing"
- "is there a better way"
- "anything you'd change", "anything you would change"
- "review this approach", "second opinion"
- "how would you approach"
- "what would you change"
- "do anything different", "do differently"
Confirm before answering if it's ambiguous. If the user is asking for an action (e.g. "rename X") and not a reflection, answer that and skip this skill.
Inputs to assemble first
Before drafting any recommendation, gather this evidence — call these tools in this order:
- Recall memories —
memory_recall(scope: "all", query: <synthesised from the prompt>). Pull both the global and project DBs in one call so the merge is correct. Note each id. - Get the current focus —
working_memory_get(slot: "current_focus")andworking_memory_get(slot: "active_task"). If they are empty, the advisor context is genuinely fresh — note that explicitly. - Search recent sessions for the same theme —
conversation_search(query: <theme>). Skip if the conversation is the first turn. - Read the live project state — at minimum:
- The active project's top-level layout (one
lsofcwd). - For code repos: the
package.json/pyproject.toml/Cargo.tomland a single representative source file. - For config projects (like this one): the root
config.toml,tui.toml,mcp.json, and theplugins/directory.
- The active project's top-level layout (one
The procedure requires all four inputs. If any source is empty, treat that as a data point — write it down — not a skip.
Reasoning procedure
The full step-by-step is in references/procedure.md. Short form:
What ships with it
2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 3d ago First seen · 85 lines · 118 tokens per session scan A 53d0a09698e1
advisor is a skill published in the GitHub repository cbuntingde/kimi-memory (0 stars, last pushed 4d ago), licensed MIT. It adds 118 tokens to every session and 1,270 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
membrain
Shared long-term memory over MCP. Call memorycontext once at the start of any session/task to load what is already known; use searchmemory before answering questions about the user or their projects; save durable facts, preferences, and decisions with savememory / savememories. All agents and the user share the same…
delx-memory
Local-first agent memory MCP. No API keys. Prefer MCP tools if connected; otherwise the package CLI. Use when the user wants Delx Memory data or actions through an agent.
memorix-sessions
Use when resuming work, preparing handoff context, binding an HTTP control-plane project, or deciding whether sessionstart is useful.
memorix-troubleshooting
Use when Memorix MCP, setup, project binding, HTTP control plane, hooks, skills, or agent integration is missing, stale, or failing.
aba-precision-protocol
FOUNDATIONAL BEHAVIORAL PROTOCOL — ABA-based precision execution rules. Every prompt processed must follow these rules. Mistakes caught late create intermittent reinforcement of wrong patterns. Stop-fix-verify before proceeding.
latent-premises
Use when reviewing a diff or module for hidden assumptions - things the code takes for granted that nothing guarantees - or when asked "what could break this later", "what does this assume", or to harden code that works today. Complements bug-hunt: bug-hunt finds defects with triggers today; this finds the ones…