From a4684f7afa78475c0537bb4abcc6673dd4d91cd0 Mon Sep 17 00:00:00 2001 From: dan-claude-bot Date: Wed, 22 Jul 2026 15:22:20 +0000 Subject: [PATCH] docs+drill: add kimi-box to the two enumeration spots review caught box-recipe.md's agent-template sentence and the drill's mint-surface check (list + ok message) both enumerate the agent seeds by hand; kimi-box joins them, matching what the grok-box addition did. Co-Authored-By: Claude Fable 5 --- docs/box-recipe.md | 4 ++-- drill/drill.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/box-recipe.md b/docs/box-recipe.md index 3effb11..3dc8c99 100644 --- a/docs/box-recipe.md +++ b/docs/box-recipe.md @@ -2,8 +2,8 @@ `box` mints trust-less, creds-free, isolated VMs with a coding agent already installed (`box new/shell/snapshot/restore/exec/down/start/rm/status`) — the -`claude-box`, `codex-box`, and `grok-box` templates each ship a CLI agent. The -tool knows **nothing** about your project. There is no `install` step and no +`claude-box`, `codex-box`, `grok-box`, and `kimi-box` templates each ship a +CLI agent. The tool knows **nothing** about your project. There is no `install` step and no host-run setup script. A project makes itself easy to stand up inside a box by shipping an optional diff --git a/drill/drill.sh b/drill/drill.sh index 2d63a50..66e1e64 100755 --- a/drill/drill.sh +++ b/drill/drill.sh @@ -492,10 +492,10 @@ fi # --- templates: the mint surface is itself a surface to test ---------------- tpl_missing="" -for t in blank claude-box codex-box grok-box; do +for t in blank claude-box codex-box grok-box kimi-box; do box templates 2>/dev/null | grep -q "^ $t" || tpl_missing="$tpl_missing $t" done -[ -z "$tpl_missing" ] && ok "templates: lists blank, claude-box, codex-box, grok-box" \ +[ -z "$tpl_missing" ] && ok "templates: lists blank, claude-box, codex-box, grok-box, kimi-box" \ || no "templates listing is missing:$tpl_missing" box new --name tpl --template nosuch 2>&1 | grep -q 'no such template' \ && ok "unknown template refused, points at 'box templates'" || no "an unknown template was not refused"