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
7 changes: 3 additions & 4 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,9 @@ khive gives your agent:
9. **Brain** — Bayesian profile tuning from feedback signals
10. **Session** — persist and resume agent-session records

All 9 packs load by default. **76 public verbs** across the packs — the `git` pack
(commit/issue/pull_request provenance notes, populated by a batch ingester, not agent-facing
verbs) contributes no new verb (regenerate via `request(ops="verbs()")` before editing this
line).
All 9 packs load by default. **77 public verbs** across the packs — the `git` pack
contributes the `git.digest` verb plus the commit/issue/pull_request provenance note kinds
and a batch ingester (regenerate via `request(ops="verbs()")` before editing this line).

If you're working on khive itself (writing code in this repo), see `CLAUDE.md` instead.

Expand Down
4 changes: 2 additions & 2 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ request(ops="[{\"tool\":\"v1\",\"args\":{...}}, ...]")

Verbs come from whichever packs are loaded via `KHIVE_PACKS` (env) or `--pack` (CLI). Default
loads all 9 production packs: kg, gtd, memory, brain, comm, schedule, knowledge, session, git
(76 verbs total — git contributes commit/issue/pull_request note kinds and a batch ingester,
no new verbs; comm.probe (#644) added 2026-07-07; brain.event_counts (ADR-103 Stage 1, #724
(77 verbs total — git contributes commit/issue/pull_request note kinds, a batch ingester,
and the git.digest verb (ADR-088 Amendment 1); comm.probe (#644) added 2026-07-07; brain.event_counts (ADR-103 Stage 1, #724
Ask A) added 2026-07-08; regenerate via `request(ops="verbs()")` before editing this line).

### KG pack verbs (17 — ADR-017, ADR-046, ADR-089)
Expand Down
1 change: 1 addition & 0 deletions crates/khive-pack-git/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ tracing = { workspace = true }
tokio = { workspace = true }
anyhow = { workspace = true }
clap = { workspace = true }
blake3 = { workspace = true }

[dev-dependencies]
tokio = { workspace = true, features = ["full"] }
Expand Down
Loading
Loading