Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading