Provider /models listings that return bare ids (OpenAI-style) get context windows, thinking levels, image support, and display names from models.dev: kigi-models owns the transform (parse_api_json — ONE field interpretation for the bundled snapshot AND runtime refreshes), enrich_wire_model fills gaps with wire values always winning and model availability strictly wire-truth. Spec rows gained models_dev_id + wire_serves_metadata; all three current platforms are wire-served, so this pipeline is provably inert for them (byte-identical catalogs, zero egress, zero ~/.kigi writes — adversarially verified). Shell side: enrichment_fetch with a 24h disk cache guarded by binary version + keep-set + future-stamp sanity (a registry change or downgrade refetches instead of serving a catalog missing new providers), refresh of https://models.dev/api.json filtered to registry ids, KIGI_MODELS_DEV_URL override with case/whitespace-tolerant kill switch, fallback chain fresh-cache > refresh > stale-cache > bundled (each step logged). The fast path returns an empty catalog without forcing the bundled parse. From the review: blast-radius-confined parsing (one drifted provider on models.dev warn-skips instead of failing the whole refresh), registry- coverage and field-coverage tests guarding script/parser drift, a path- injectable core with 8 state-machine tests (one of which caught a guard patch that had failed to apply), _meta provenance stamp in the snapshot, and models.dev (MIT) attribution in NOTICE. Snapshot: 29 providers, 1124 models, 246KB, regenerated by scripts/gen_enrichment_snapshot.py (pure filter, no transform).
11 KiB
Kigi — agent/developer notes
Single source of truth for how this repository is organized and the constraints every change must respect. Update this file whenever the tech stack or product direction changes.
What this is
Kigi is an unofficial Kimi Code CLI community build: a hard fork of
xai-org/grok-build (Apache-2.0, Rust) re-targeted at the Kimi Code
subscription API and the Moonshot open platform. It coexists with the
official kimi CLI: binary kigi, config dir ~/.kigi
(KIGI_SHARE_DIR override), keyring service kigi, env prefix KIGI_*.
Never read or write ~/.kimi (except the explicit one-time read-only
import) or any KIMI_* env var.
Hard constraints
- Zero egress: outbound connections are limited to
auth.kimi.com,api.kimi.com,api.moonshot.cn,api.moonshot.ai, GitHub Releases domains, user-configured MCP servers, the endpoints of provider platforms the user has credentialed, andmodels.dev(model metadata refresh — reached ONLY when an enabled platform's/modelswire lacks metadata,wire_serves_metadata=false; Kimi/Moonshot never trigger it;KIGI_MODELS_DEV_URL=0disables). No telemetry, no analytics, ever.crates/codegen/kigi-envis the single home of first-party endpoints. - Toolchain: Rust 1.97.0 (rust-toolchain.toml), edition 2024.
- Gates (all must stay green):
cargo check --workspace --all-targets,cargo clippy --workspace --all-targets(zero warnings),cargo fmt --all --check,cargo deny check advisories. - Observability is local:
kigi-log(unified session log,--debugfirehose, subsystem file logs, opt-in instrumentation) writes under~/.kigionly. Its zero-network property is a contract. - The root
Cargo.tomlis hand-maintained (upstream's generator is not in this repo). Members sorted; versions inherited fromworkspace.package.version(0.1.0).
Layout
crates/codegen/— the bulk of the application (62kigi-*crates). Key ones:kigi-bin(binarykigi),kigi-tui(full-screen TUI + headless-pmode +acp/mcpcommands),kigi-shell(agent runtime, leader-follower IPC, sessions),kigi-sampler(inference client; ChatCompletions/Responses/Messages backends),kigi-auth(credentials),kigi-config(config layering,~/.kigipaths),kigi-env(endpoints),kigi-tools(tool implementations incl. codex/opencode ports — see its THIRD_PARTY_NOTICES.md),kigi-workspace(FS/VCS/exec/permissions, checkpoint/worktree),kigi-log(local observability).crates/common/,crates/build/,prod/mc/— shared libs, proto build, proxy wire types (the latter to be redefined against Kimi in M1).third_party/— vendored Mermaid rendering stack (untouched policy).bin/protoc— dotslash launcher used by proto codegen.
Storage discipline
- Tests that touch the filesystem MUST use
tempfile::TempDir(drop cleans up) — never barestd::env::temp_dir()+create_dir_all, which leaks directories into the OS temp root forever. target/grows past 150GB across repeated full-workspace builds (incremental is already off); runcargo cleanwhen it exceeds ~50GB and at milestone boundaries.- Graph node worktrees are removed right after a successful merge-back; only FAILED nodes keep theirs for postmortem.
Test seams
Cross-crate test hooks are behind the test-support cargo feature
(kigi-workspace, kigi-pager-render, kigi-config, kigi-tui), enabled via
dependents' [dev-dependencies]. Don't expose new test seams as plain
#[cfg(test)] items across crate boundaries.
Graph mode (/graph, post-0.1.x — plan.md in the parent dir)
A deterministic DAG scheduler layered over the goal engine: /graph <objective> decomposes the objective into nodes (graph planner subagent
→ Agentproof-style static gate in graph_plan.rs), then executes each
node as one ordinary goal — the agentic loop lives INSIDE the node; the
edges stay deterministic Rust. The harness appends a terminal
gn-final verification node depending on every planner node.
- Feature flag
KIGI_GRAPH=1(default off); availability additionally requires the goal harness (BuiltinGate::Graph). - Key modules (kigi-shell):
session/graph_tracker.rs(pure state machine; reusesGoalStatus/GoalPhase/GoalPauseReason),session/graph_plan.rs(planner-JSON contract + validation + fnv id canonicalization),session/graph_planner.rs(planner runner, reuses the goal planner spawn plumbing),session/acp_session_impl/graph.rs(orchestration seam). - Seam points:
handle_promptintercepts GraphSet/GraphResume; the in-turn loop'sEndTurnarm callsrun_graph_round_end()to advance nodes within the same turn; goal auto-pauses cascade to the graph inauto_pause_goal_if_active_inner; node goals are armed with the REMAINING graph budget soenforce_goal_token_budgetcascades trips. - Persistence:
PersistenceMsg::GraphModeState(Option<..>)→<session_dir>/graph/state.json(Nonetombstones after clear); immutable per-version baselinesgraph/graph.baseline.v{N}.json; per-node goal artifacts archived tograph/<node_id>/. Restore demotesActive→UserPausedandRunning→Ready(re-run is safe: the verifier gates completion). /goaland/graphare mutually exclusive while the graph owns the engine; e2e suite:acp_session_tests/graph/graph_e2e_tests.rs.- Parallel fan-out (G1): with
KIGI_GRAPH_CONCURRENCY > 1(default 3, clamp [1,8]) and ≥2Readynodes,drive_graphruns batches viaacp_session_impl/graph_workers.rs— per node a bounded worker↔verifier subagent loop (KIGI_GRAPH_NODE_ROUNDS, default 3;general-purposechildren; worktree isolation on round 1, resume keeps context+worktree on later rounds;NODE_RESULT:/NODE_VERDICT:terminal contracts parsed fail-closed), then SEQUENTIAL merge-back viakigi_workspace::worktree::apply_worktree(ApplyMode::Merge); a conflict fails the node and blocks its dependents while other chains continue.gn-finalalways runs serially on the full goal engine. Concurrency=1 is byte-identical to the serial G0 path. Ceiling: a worker round exceeding the foreground subagent await budget (600s) is cancelled and retried via resume. - G2:
BudgetLimitedis resumable — a budget trip demotes in-flight nodes toReady(resource stop, not a verdict) and/graph resume --budget <tokens>re-arms with fresh headroom. The pager shows a graph status chip driven by theGraphUpdatedwire variant (extensions/notification.rs), emitted from the singlepersist_graph_statechokepoint (checkpoint ⇔ badge tick); old pagers degrade via#[serde(other)] Unknown. PTY scenarios:graph_slash_presession{,_disabled}.yaml. - G3: dynamic replan.
DISCOVERED: <text>line markers (fence-stripped, placeholder-filtered) from workers/verifiers/the serial node's final text queue aspending_discoveries; at each dispatch boundarymaybe_replan_graph(acp_session_impl/graph_replan.rs) runs a replanner subagent producing an APPEND-ONLY appendix (validate_replan: existing-id deps allowed, edges ontogn-finalrejected — they would cycle after the final-gating extension), bumpsplan_version, freezesgraph.baseline.v{N}.json, and regatesgn-final(Ready→Waiting). Bounded byKIGI_GRAPH_REPLAN_CAP(default 3, 0 = off); past the cap — and after the final node has achieved — discoveries drain to history only. Replan failure degrades (history + notice); it never pauses a working graph. - G4: the graph follows the repo. Every checkpoint projects to
.kigi/graph.jsonlat the git root (session/graph_project.rs, header line + one node per line, atomic write); single writer via an fs2 flock sidecar; other instances get read-only/graph status. Fresh sessions revive via/graph resume(load UNDER the lock, from_snapshot demotions apply). All lock-then-mutate sites identity-check the projectedgraph_id; kigi never commits the file. - G5:
/graph showrenders box-drawing DAG art (session/graph_render.rs, Sugiyama-lite: longest-path layers, dummy pass-throughs, barycenter ordering, bus lanes). Wider than 120 cols degrades to the status tree. - G6: plan-boundary topology optimizer
(
acp_session_impl/graph_optimize.rs;KIGI_GRAPH_OPTIMIZER=0disables). Restricted ops (remove_dep/reorder/merge/split) validated bygraph_plan::apply_optimization: pending-only targets, immutable nodes byte-identical in the result, terminal gate rebuilt, whole-graph acyclicity. Applied passes bumpplan_versionand share the replan cap;{"ops": []}is a respected free no-op; failures degrade.
Provider registry & API-key auth (post-0.1.3 expansion)
- The platform registry is compiled-in spec rows in
kigi-models(PlatformSpec; adding a platform = enum variant +ALLentry +spec()arm + row; registry tests enforce completeness/uniqueness/row shape). - API-key resolution precedence, per platform: platform env var(s) >
auth.jsonscope named by the platform id (moonshot-cn, …) > legacy[platforms.<id>]in config.toml (read-only fallback). - The TUI login picker persists pasted keys to
auth.json(platform-id scope,api_keymode) — never to config.toml. The keyring holds ONLY the OAuth session scope; platform keys are file-only. - Auth method ids over ACP equal the platform ids; interactive picker rows
are built generically from advertised methods (
AuthMethodKind:: ApiKeyPlatform), so new registry rows appear in the picker with no TUI changes. - Model metadata (context window, thinking levels) comes from the provider
wire when served; metadata-poor listings are enriched from models.dev
(
kigi-models/src/enrichment.rs— bundled raw snapshot regenerated byscripts/gen_enrichment_snapshot.py, single Rust transformparse_api_jsonfor bundled + runtime refresh; 24h cache~/.kigi/models_dev_cache.json). Wire values always win; enrichment never invents model availability. Canonical reasoning efforts: none/minimal/low/medium/high/xhigh/max (maxsplit fromxhigh2026-07; Kimi wire spells its top tiermax, kimi_compat renames).
Milestones (PRD §8.3)
- M0 (done): rename, deletions (voice/telemetry/announcements/marketplace/ relay-gateway), toolchain, gates.
- M1: Kimi device-flow auth (F1), Moonshot API-key channel (F2), inference
via ChatCompletions (F3), dynamic model sync (F4). The auth stack in
kigi-shell/src/auth+kigi-authgets rewritten here; transitional grok.com references live only there and inkigi-sampler/proxy types. - M2: server-side search/fetch (F5), command parity with kimi-cli 1.49.0
(F6), one-time
~/.kimi/config.tomlimport (F7), F9 smoke list, perf CI. - M3: GitHub Releases distribution, install scripts, self-update (F8).