docs(readme): refresh loadout demo with current CLI syntax - #1095
Merged
Conversation
The README's asciinema demo showed two command spellings that no longer exist: - `min activate` — activate lives under the `session` noun; there is no top-level `activate` in the `min` CLI. - `min run <task>` in the MOTD task table — `min` has no `run` subcommand. `mip run <task>` is the task runner. (`min run <task>` is only a wire form the daemon's exec channel accepts, not something you type in a session shell.) The inserted ` session` keystrokes continue the recording's existing 6-step typing-jitter cycle, with every later event shifted by +0.408s, so the cast stays cycle-consistent (runtime 15.014s -> 15.422s). MOTD column padding is byte-preserved, keeping the task table aligned. GIF re-rendered with `agg --line-height 1.3`, which reproduces the committed asset's 886x541 geometry. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
📝 WalkthroughWalkthroughThe terminal loadout demo recording updates its initial command sequence, changes task entries from ChangesLoadout demo recording
Estimated code review effort: 2 (Simple) | ~10 minutes Possibly related PRs
Suggested reviewers: Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
Comment |
twitchyliquid64
approved these changes
Jul 30, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The README's asciinema demo (
docs/public/loadout-demo.cast→loadout-demo.gif) showed two command spellings that no longer exist. Both verified againstmain:min activate --loadout dev --attach .min session activate --loadout dev --attach .activate; it lives under thesessionnoun (crates/minimal/src/lib.rsCommandenum,docs/reference/cli-min.md)min run build/test/shell(MOTD table)mip run build/test/shellminhas norunsubcommand —mip run <task>is the task runner (crates/mip/src/main.rs,docs/reference/tasks.md).min run <task>exists only as a wire form the daemon's exec channel accepts, not as something you type in a session shellCast mechanics
The inserted
sessionkeystrokes continue the recording's existing 6-step typing-jitter cycle (0.057, 0.037, 0.065, 0.039, 0.060, 0.045), with every later event shifted by+0.408s, so the file stays cycle-consistent. Runtime 15.014s → 15.422s.MOTD column padding is byte-preserved (
min run buildandmip run buildare the same width), so the task table stays aligned.GIF
Re-rendered with
agg --line-height 1.3— the parameters that reproduce the committed asset's exact886x541geometry. Rendered frame checked visually: layout, palette, and logo unchanged.Out of scope, flagging
docs/reference/cli-min.mddocumentsmin add <--runtime|--build|--task <TASK>>, omitting--session, which the binary does accept. The README'smin add --session git gh claude-codeis correct; the reference doc is the stale one. Not touched here.🤖 Generated with Claude Code
Summary by CodeRabbit
Note
Refresh loadout demo recording with current CLI syntax
Updates loadout-demo.cast and loadout-demo.gif to reflect current CLI syntax. The recorded command now uses the
session activateprefix, and task label prefixes in the Tasks listing changed frommintomipfor build, test, and shell entries.Macroscope summarized 0b730ab.