@@ -12,19 +12,32 @@ drift clearly, and favors repairable workflows over hidden automation.
1212- per-worktree operation journals for interrupted rebases
1313- command-first UX with polished terminal output
1414- read-only Bubble Tea dashboard for stack inspection
15+ - deterministic restack and recovery scaffolding
16+ - explicit submit, sync, move, and queue command flows
1517- ` git ` and ` gh ` CLI only
1618- no GraphQL, no backend, no synthetic refs
1719
18- ## First Commands
20+ ## Implemented Commands
1921
2022- ` stack init `
2123- ` stack create <branch> `
2224- ` stack track <branch> --parent <parent> `
2325- ` stack status `
2426- ` stack tui `
27+ - ` stack restack `
28+ - ` stack continue `
29+ - ` stack abort `
30+ - ` stack submit `
31+ - ` stack sync `
32+ - ` stack move `
33+ - ` stack queue `
2534
26- Later phases add restack, submit, sync, move, queue, and recovery commands on
27- top of the same state model.
35+ ## Current Caveats
36+
37+ - restack and sync safety are implemented, but still need deeper fixture coverage
38+ - GitHub sandbox coverage for submit, sync, and queue still needs expansion
39+ - the TUI is intentionally read-only in the current alpha
40+ - ambiguous merged-parent repair cases stop for review instead of guessing
2841
2942## Tooling
3043
@@ -41,10 +54,10 @@ top of the same state model.
4154``` bash
4255mise install
4356mise exec -- go test ./...
57+ mise exec -- go build ./...
4458mise exec -- go run ./cmd/stack status
4559```
4660
4761## Design
4862
4963The reduced V1 design lives at [ docs/v1.md] ( docs/v1.md ) .
50-
0 commit comments