Skip to content

Commit e67710c

Browse files
authored
Merge pull request #5 from pyrex41/fix/cross-tag-dependencies
Add scud spawn with TUI monitor and fix cross-tag dependencies (rebased)
2 parents 5eed588 + 94dbe8a commit e67710c

File tree

26 files changed

+4757
-589
lines changed

26 files changed

+4757
-589
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ Project guidance files in `.scud/guidance/*.md` are automatically included in AI
171171
scud assign <id> <name> # Assign task to a developer
172172
scud who-is [--tag <tag>] # See who's working on what
173173
scud next-batch [--limit 5] # Get multiple ready tasks
174-
scud doctor [--tag <tag>] # Diagnose stuck workflow states
174+
scud doctor [--tag <tag>] # Diagnose stuck task states
175175
```
176176

177177
### Utilities

bin/scud.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const command = process.argv[2];
1414
const args = process.argv.slice(3);
1515

1616
// Task management commands (use Rust CLI)
17-
const taskCommands = ['tags', 'use-tag', 'list', 'show', 'set-status', 'next', 'stats', 'mermaid', 'waves', 'doctor', 'convert', 'assign', 'whois', 'migrate', 'hooks', 'warmup', 'commit', 'next-batch', 'who-is', 'reanalyze-deps', 'clean'];
17+
const taskCommands = ['tags', 'use-tag', 'list', 'show', 'set-status', 'next', 'stats', 'mermaid', 'waves', 'doctor', 'convert', 'assign', 'whois', 'migrate', 'hooks', 'warmup', 'commit', 'next-batch', 'who-is', 'reanalyze-deps', 'clean', 'spawn', 'monitor'];
1818

1919
// AI-powered commands (use Rust CLI)
2020
const aiCommands = ['parse', 'parse-prd', 'analyze-complexity', 'expand', 'research'];

0 commit comments

Comments
 (0)