From 391a17918a5fb5c223b4787f5b920edf017ef4e0 Mon Sep 17 00:00:00 2001 From: Chojan Shang Date: Tue, 3 Mar 2026 18:00:44 +0000 Subject: [PATCH] docs: minor fix for comma commands --- docs/cli.md | 6 +++--- docs/features.md | 2 +- docs/index.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/cli.md b/docs/cli.md index c0870dce..13ab6d08 100644 --- a/docs/cli.md +++ b/docs/cli.md @@ -53,19 +53,19 @@ Use shell mode when you want to run multiple shell commands quickly. 2. Read files: `,fs.read path=README.md` 3. Edit files: `,fs.edit path=foo.py old=... new=...` 4. Validate: `uv run pytest -q` -5. Mark phase transition: `,handoff name=phase-x summary="tests pass"` +5. Mark phase transition: `,tape.handoff name=phase-x summary="tests pass"` ## Session Context Commands ```text ,tape.info ,tape.search query=error -,anchors +,tape.anchors ,tape.reset archive=true ``` - `,tape.reset archive=true` archives then clears current tape. -- `,anchors` shows phase boundaries. +- `,tape.anchors` shows phase boundaries. ## One-Shot Examples diff --git a/docs/features.md b/docs/features.md index 4d5781dc..eb2c5be4 100644 --- a/docs/features.md +++ b/docs/features.md @@ -20,7 +20,7 @@ Why it matters: the assistant can debug based on real command output instead of ## 3. Verifiable Session History and Context Assembly - Bub records session activity as append-only, verifiable history. -- `,anchors` and `,handoff` mark phase transitions. +- `,tape.anchors` and `,tape.handoff` mark phase transitions. - `,tape.search` and `,tape.info` help inspect context quickly. Why it matters: long tasks stay traceable and easier to resume. diff --git a/docs/index.md b/docs/index.md index 6b2d5dc4..ed34692a 100644 --- a/docs/index.md +++ b/docs/index.md @@ -26,7 +26,7 @@ Its operating philosophy follows [Socialized Evaluation](https://psiace.me/posts 2. Run `uv run bub` and ask a normal question. 3. Run `,help` and `,tools` to inspect available capabilities. 4. Execute one shell command like `,git status`. -5. Create one handoff: `,handoff name=phase-1 summary="..."`. +5. Create one handoff: `,tape.handoff name=phase-1 summary="..."`. 6. Verify history using `,tape.info` or `,tape.search query=...`. ## Where To Read Next