@staff0rd/assist 0.202.0 → 0.204.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/claude/commands/draft.md +17 -0
- package/claude/settings.json +1 -0
- package/dist/commands/sessions/web/bundle.js +299 -35
- package/dist/index.js +10201 -10178
- package/package.json +5 -3
- package/dist/commands/backlog/web/bundle.js +0 -137
package/README.md
CHANGED
|
@@ -83,7 +83,7 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
83
83
|
- `assist news` - Start the news web UI showing latest RSS feed items (same as `news web`)
|
|
84
84
|
- `assist news add [url]` - Add an RSS feed URL to the config
|
|
85
85
|
- `assist news web [-p, --port <number>]` - Start a web view of the news feeds (default port 3001)
|
|
86
|
-
- `assist backlog [--dir <path>]` -
|
|
86
|
+
- `assist backlog [--dir <path>]` - Open the backlog tab in the web dashboard (same as `backlog web`). `--dir` overrides the directory for backlog file discovery
|
|
87
87
|
- `assist backlog init` - Create an empty backlog
|
|
88
88
|
- `assist backlog list [--status <type>] [-v]` - List all backlog items with status icons
|
|
89
89
|
- `assist backlog add` - Add a new backlog item interactively (prompts for type: story/bug)
|
|
@@ -105,7 +105,7 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
105
105
|
- `assist backlog phase-done <id> <phase> <summary>` - Signal that a plan phase is complete with a summary (used by orchestrator)
|
|
106
106
|
- `assist backlog rewind <id> <phase> --reason <reason>` - Rewind a backlog item to an earlier phase, setting status to in-progress
|
|
107
107
|
- `assist backlog run <id>` - Run a backlog item's plan phase-by-phase with Claude
|
|
108
|
-
- `assist backlog web [-p, --port <number>]` -
|
|
108
|
+
- `assist backlog web [-p, --port <number>]` - Open the backlog tab in the web dashboard (default port 3100)
|
|
109
109
|
- `assist roam auth` - Authenticate with Roam via OAuth (opens browser, saves tokens to ~/.assist.yml)
|
|
110
110
|
- `assist roam show-claude-code-icon` - Forward Claude Code hook activity to Roam local API
|
|
111
111
|
- `assist run <name> [params...]` - Run a configured command from assist.yml (positional params are matched to `params` config; supports `pre` array of commands to run first)
|
|
@@ -193,8 +193,8 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
193
193
|
- `assist voice status` - Check voice daemon status and recent events
|
|
194
194
|
- `assist voice devices` - List available audio input devices
|
|
195
195
|
- `assist voice logs [-n <count>]` - Show recent voice daemon log entries
|
|
196
|
-
- `assist sessions` - Start the
|
|
197
|
-
- `assist sessions web [-p, --port <number>]` - Start
|
|
196
|
+
- `assist sessions` - Start the web dashboard (same as `sessions web`)
|
|
197
|
+
- `assist sessions web [-p, --port <number>]` - Start the web dashboard with Sessions and Backlog tabs, xterm.js terminals (default port 3100)
|
|
198
198
|
- `assist sessions summarise [-f, --force] [-n, --limit <count>]` - Generate one-line summaries for unsummarised Claude sessions (force re-generates all; limit caps how many to process)
|
|
199
199
|
- `assist next` - Alias for `backlog next -w`
|
|
200
200
|
- `assist draft` (alias: `feat`) - Launch Claude in `/draft` mode, chain into next on `/next` signal
|
package/claude/commands/draft.md
CHANGED
|
@@ -36,6 +36,23 @@ Once you have enough context, propose a complete backlog item. Show it to the us
|
|
|
36
36
|
- Phase 1: (name) — tasks...
|
|
37
37
|
- Phase 2: (name) — tasks... [manual checks: ...]
|
|
38
38
|
|
|
39
|
+
### Phase design rules
|
|
40
|
+
|
|
41
|
+
**Phases must be vertical slices, not horizontal layers.** Each phase should deliver a thin, working increment of the feature that can be verified end-to-end. Do NOT decompose by architectural layer (e.g. "Phase 1: schema changes", "Phase 2: backend API", "Phase 3: UI"). Instead, each phase should cut through all necessary layers to produce something observable.
|
|
42
|
+
|
|
43
|
+
Bad (horizontal):
|
|
44
|
+
- Phase 1: Add database schema and types
|
|
45
|
+
- Phase 2: Build API endpoints
|
|
46
|
+
- Phase 3: Create UI components
|
|
47
|
+
- Phase 4: Wire everything together
|
|
48
|
+
|
|
49
|
+
Good (vertical):
|
|
50
|
+
- Phase 1: Minimal working feature (hardcoded/simplified) visible end-to-end
|
|
51
|
+
- Phase 2: Add real data handling and validation
|
|
52
|
+
- Phase 3: Polish edge cases and error states
|
|
53
|
+
|
|
54
|
+
The test: at the end of each phase, you should be able to answer "does this work?" by running or inspecting the result. If a phase only produces internal plumbing with no observable effect, it's horizontal — restructure it.
|
|
55
|
+
|
|
39
56
|
Keep phases small (2-4 tasks each). A typical item should have 2-3 phases.
|
|
40
57
|
|
|
41
58
|
Most phases should NOT have manual checks. Only add `manualChecks` to a phase when the checks are genuinely difficult to automate (e.g. visual appearance, UX flow, hardware interaction). Do not add a final phase just for end-to-end verification — a review phase is auto-appended at runtime.
|