reset_project

A command that clears all stored memory data for the current project after it has been re-cloned into the same folder.

In plain words
What is it for?
Use it to preview and, after confirmation, delete the project's memories, working data, conversation history, and related records.
Why use it?
It removes stale records that could otherwise be mistaken for information from the newly cloned project, while leaving global and other project memories untouched.

Command

Install

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.

agentmods
npx agentmods add commands/cbuntingde/kimi-memory/reset-project
Clone the repo
git clone --depth 1 https://github.com/cbuntingde/kimi-memory
Per session 25 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 504 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00025 $0.00504
Opus 5 $0.00013 $0.00252
Sonnet 5 $0.00005 $0.00101
Haiku 4.5 $0.00003 $0.00050

Measured yesterday against content hash d8ba9b8928f1, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

reset_project 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 yesterday.

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.

commands/reset-project.md · 49 lines

What it actually says

/kimi-memory:reset_project

Wipe every per-project row (memories, working memory, conversations, conversation events, edges, synthesizes) for the active project so the project starts from a clean slate. Use this after a repo is re-cloned to the same canonical path: the project_key is a hash of the path, so kimi-memory cannot otherwise tell the new project apart from the old one. The global database and every other project DB are never touched.

Steps:

  1. Call memory_reset_project with cwd set to the project root and confirm: false to do a dry run. Echo the returned row_counts and reclone so the user can see what would be deleted.
  2. Render a one-line confirmation prompt that names the project root, the total row count, and asks for the user's explicit "yes" before continuing. Never auto-confirm — the reset is destructive.
  3. If the user confirms, call memory_reset_project again with confirm: true and echo the returned summary (memories_deleted, working_memory_deleted, conversations_deleted, etc.).
  4. If the user declines, stop and report that the project was not reset. Suggest /kimi-memory:list_memories so the user can see what would have been wiped.

The hook layer surfaces a [stale-memory] line on SessionStart and UserPromptSubmit when a re-clone is detected (compare directory birthtime with first_seen_at). Treat that as the trigger to suggest this command rather than auto-running it.

Example dry run response:

{
  "operation": "reset_project_dry_run",
  "project_key": "152cb83a2d1f7821",
  "reclone": { "isReclone": true, "reason": "directory birthtime is 42m newer than first_seen_at" },
  "row_counts": { "memories": 12, "working_memory": 1, "conversations": 9, ... },
  "total_rows": 23
}

The plugin's /reset_project skill is equivalent; this command is the namespaced fallback (/kimi-memory:reset_project).

Changes

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.

  1. yesterday First seen · 49 lines · 25 tokens per session scan A d8ba9b8928f1

Subscribe to this mod's changes

reset_project is a command published in the GitHub repository cbuntingde/kimi-memory (0 stars, last pushed 2d ago), licensed MIT. It adds 25 tokens to every session and 504 once invoked, about $0.0001 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.