Some checks are pending
CI (Forgejo Actions — self-hosted runner on Mac, host mode) / preflight (push) Waiting to run
CI (Forgejo Actions — self-hosted runner on Mac, host mode) / vps-smoke (push) Waiting to run
CI (Forgejo Actions — self-hosted runner on Mac, host mode) / rust-primitives (map[crates:frustration-matrix,kei-frustration-loop,kei-skill-importer,kei-projects-index,kei-projects-watcher,kei-gdrive-import,kei-leak-matrix,kei-skills,kei-gateway,kei-cron-scheduler,kei-export-trajectories,kei-backend-daytona,kei-d… (push) Blocked by required conditions
CI (Forgejo Actions — self-hosted runner on Mac, host mode) / rust-primitives (map[crates:kei-compute-baremetal,kei-compute-vultr,kei-compute-linode,kei-compute-digitalocean,kei-svc-systemd,kei-llm-bridge-mlx name:hosted-sleep-compute]) (push) Blocked by required conditions
CI (Forgejo Actions — self-hosted runner on Mac, host mode) / rust-primitives (map[crates:kei-diff,kei-scheduler,kei-watch,kei-prune,kei-discover,kei-brain-view,kei-hibernate,kei-ledger-sign,kei-fork name:wave13-15]) (push) Blocked by required conditions
CI (Forgejo Actions — self-hosted runner on Mac, host mode) / rust-primitives (map[crates:kei-git-gitea,kei-git-forgejo,kei-git-gitlab,kei-git-bitbucket,kei-memory-sled,kei-memory-redis,kei-memory-postgres,kei-memory-sqlite,kei-auth-google,kei-auth-apple,kei-auth-magiclink,kei-auth-webauthn,kei-notify-slack,kei-n… (push) Blocked by required conditions
CI (Forgejo Actions — self-hosted runner on Mac, host mode) / rust-primitives (map[crates:kei-ledger,kei-migrate,kei-changelog,kei-memory,kei-store,kei-conflict-scan,kei-refactor-engine,kei-graph-check,kei-shared,kei-dna-index,kei-pet name:core]) (push) Blocked by required conditions
CI (Forgejo Actions — self-hosted runner on Mac, host mode) / rust-primitives (map[crates:kei-machine-probe,kei-llm-ollama,kei-llm-llamacpp,kei-llm-mlx,kei-llm-router,kei-model name:llm-stack]) (push) Blocked by required conditions
CI (Forgejo Actions — self-hosted runner on Mac, host mode) / rust-primitives (map[crates:kei-router,kei-sage,kei-task,kei-chat-store,kei-crossdomain,kei-search-core,kei-content-store,kei-social-store,kei-curator,kei-auth,kei-artifact name:mcp-lbm]) (push) Blocked by required conditions
CI (Forgejo Actions — self-hosted runner on Mac, host mode) / rust-primitives (map[crates:keisei,kei-forge,kei-runtime,kei-runtime-core,kei-atom-discovery,kei-agent-runtime,kei-capability,kei-provision,kei-entity-store,kei-pipe,kei-cache,kei-spawn,kei-replay name:atom-substrate]) (push) Blocked by required conditions
Adds a uniform launcher that lets any KeiSeiKit agent run on whichever
LLM CLI you have a subscription to. Pick by familiarity, pricing, or
to get a second opinion on the same prompt.
Backends (locally installed, by subscription):
claude Claude Code (claude -p)
grok xAI Grok (grok --print; native --agent supported)
agy Antigravity (agy --print) alias: antigravity
copilot GitHub Copilot (copilot --prompt)
kimi Moonshot Kimi (stdin, TUI primary)
codex OpenAI Codex (codex -p) register-only
Files:
_primitives/cli-backends.toml SSoT backend table
scripts/kei-agent-cli.sh launcher; loads ~/.claude/agents/<n>.md,
strips frontmatter, composes with task,
execs backend non-interactive
bin/kei new arm: run-via | via | run | agent-via
docs/encyclopedia/multi-cli-agents.md user-facing docs + usage
Auto-installed via lib-scaffold.sh:77 glob (no install code change needed).
Test plan:
kei run-via list # status + agents
kei run-via grok critic "review src/auth.rs" # via Grok
kei run-via agy critic "review src/auth.rs" # via Antigravity
kei run-via copilot critic "review src/auth.rs" # via Copilot
KEI_NATIVE_AGENT=1 kei run-via grok critic "..." # native --agent
45 lines
1.5 KiB
TOML
45 lines
1.5 KiB
TOML
# cli-backends.toml — SSoT for external LLM CLIs that can host KeiSeiKit agents.
|
|
#
|
|
# Each backend is a CLI you have a subscription / local install of. The
|
|
# `kei run-via <backend> <agent> "<task>"` launcher composes an agent's
|
|
# assembled .md prompt with the task and invokes the backend's
|
|
# non-interactive (print) mode.
|
|
#
|
|
# Add a backend by appending a `[backend.<name>]` table. The launcher
|
|
# (`scripts/kei-agent-cli.sh`) reads `bin` + `prompt_flag` and execs.
|
|
|
|
[backend.claude]
|
|
bin = "claude"
|
|
prompt_flag = "-p"
|
|
notes = "Claude Code (Anthropic) — native --agent flag also supported"
|
|
homepage = "https://claude.com/claude-code"
|
|
|
|
[backend.grok]
|
|
bin = "grok"
|
|
prompt_flag = "--print"
|
|
notes = "xAI Grok Build TUI — native --agent flag also supported"
|
|
homepage = "https://x.ai/grok"
|
|
|
|
[backend.agy]
|
|
bin = "agy"
|
|
prompt_flag = "--print"
|
|
notes = "Google Antigravity (alias: antigravity)"
|
|
aliases = ["antigravity"]
|
|
|
|
[backend.copilot]
|
|
bin = "copilot"
|
|
prompt_flag = "--prompt"
|
|
notes = "GitHub Copilot CLI (@github/copilot npm)"
|
|
homepage = "https://github.com/github/copilot-cli"
|
|
|
|
[backend.kimi]
|
|
bin = "kimi"
|
|
prompt_flag = "stdin"
|
|
notes = "Moonshot Kimi CLI — primarily TUI/ACP; non-interactive via stdin"
|
|
homepage = "https://moonshotai.github.io/kimi-cli/"
|
|
|
|
[backend.codex]
|
|
bin = "codex"
|
|
prompt_flag = "-p"
|
|
notes = "OpenAI Codex CLI — register here, install separately"
|
|
homepage = "https://github.com/openai/codex"
|