Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,5 @@
.fastembed_cache/
**/.fastembed_cache/
.claude/
.codex/
.codex/
.mcp.json
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ kimetsu --version
kimetsu doctor # checks paths, brain.db, embedder, MCP, bridge
```

**Prerequisites:** Rust 1.85+ (stable) and a Claude credential
(`CLAUDE_CODE_OAUTH_TOKEN` or `ANTHROPIC_API_KEY`). That's it for chat — Docker,
**Prerequisites:** Rust 1.85+ (stable) and a Claude or OpenAI credential
(`CLAUDE_CODE_OAUTH_TOKEN` or `ANTHROPIC_API_KEY` or `OPENAI_API_KEY`). That's it for chat — Docker,
Harbor, and Python are only needed for benchmark runs.

---
Expand All @@ -115,7 +115,6 @@ Harbor, and Python are only needed for benchmark runs.
### 1. Talk to it directly

```bash
export CLAUDE_CODE_OAUTH_TOKEN=<your-token> # or use a workspace .env
kimetsu chat --workspace . --project .
```

Expand All @@ -129,8 +128,8 @@ whole conversation and injects retrieved context into every turn. Inside chat,
Wire Kimetsu into your existing agent as an MCP sidecar — one command:

```bash
kimetsu plugin install claude --workspace . # writes .claude/mcp.json + hooks
kimetsu plugin install codex --workspace . # writes .codex/mcp.json + skill
kimetsu plugin install claude --workspace . # writes .mcp.json + .claude/settings.json
kimetsu plugin install codex --workspace . # writes .codex/config.toml + .codex/hooks.json + skill
```

Now your agent gets ~18 `kimetsu_*` tools (brain context, memory add/list,
Expand Down
1 change: 1 addition & 0 deletions crates/kimetsu-chat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,4 @@ crossterm.workspace = true
reqwest.workspace = true
serde.workspace = true
serde_json.workspace = true
toml.workspace = true
Loading
Loading