forked from heavy-duty/box
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 <noreply@anthropic.com>
This commit is contained in:
parent
bf74744bda
commit
a4684f7afa
2 changed files with 4 additions and 4 deletions
|
|
@ -2,8 +2,8 @@
|
||||||
|
|
||||||
`box` mints trust-less, creds-free, isolated VMs with a coding agent already
|
`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
|
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
|
`claude-box`, `codex-box`, `grok-box`, and `kimi-box` templates each ship a
|
||||||
tool knows **nothing** about your project. There is no `install` step and no
|
CLI agent. The tool knows **nothing** about your project. There is no `install` step and no
|
||||||
host-run setup script.
|
host-run setup script.
|
||||||
|
|
||||||
A project makes itself easy to stand up inside a box by shipping an optional
|
A project makes itself easy to stand up inside a box by shipping an optional
|
||||||
|
|
|
||||||
|
|
@ -492,10 +492,10 @@ fi
|
||||||
|
|
||||||
# --- templates: the mint surface is itself a surface to test ----------------
|
# --- templates: the mint surface is itself a surface to test ----------------
|
||||||
tpl_missing=""
|
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"
|
box templates 2>/dev/null | grep -q "^ $t" || tpl_missing="$tpl_missing $t"
|
||||||
done
|
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"
|
|| no "templates listing is missing:$tpl_missing"
|
||||||
box new --name tpl --template nosuch 2>&1 | grep -q 'no such template' \
|
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"
|
&& ok "unknown template refused, points at 'box templates'" || no "an unknown template was not refused"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue