@@ -45,7 +45,7 @@ scud set-status 1 in-progress
4545scud set-status 1 done
4646
4747# Visualize in browser
48- scud serve
48+ scud view
4949```
5050
5151** Quick reference:** [ docs/reference/QUICK_REFERENCE.md] ( docs/reference/QUICK_REFERENCE.md )
@@ -101,7 +101,7 @@ Use orchestrator patterns to spawn multiple Claude Code agents in parallel, each
101101- ** Smart scheduling** - ` scud next ` finds ready tasks
102102
103103### Web Dashboard
104- - ** Visual task board** - ` scud serve ` opens browser dashboard
104+ - ** Visual task board** - ` scud view ` opens browser dashboard
105105- ** Mermaid diagrams** - dependency graph visualization
106106- ** Real-time stats** - progress tracking
107107
@@ -149,25 +149,29 @@ scud waves [--tag <tag>] # Show parallel execution waves
149149
150150### Visualization
151151``` bash
152- scud serve # Start web dashboard (port 3000)
152+ scud view # Open task viewer in browser
153153scud mermaid [--tag < tag> ] # Generate Mermaid diagram
154154```
155155
156156### AI Commands (Requires XAI_API_KEY)
157157``` bash
158158scud parse < file> --tag < tag> # Parse PRD/doc into tasks
159+ scud parse < file> --tag < tag> --no-guidance # Parse without project guidance
159160scud analyze-complexity # Analyze task complexity
160161scud expand --all # Break down complex tasks
162+ scud expand --all --no-guidance # Expand without project guidance
161163```
162164
163- Default model: ` grok-3-mini ` . Configure with ` scud config --provider <provider> --model <model> ` .
165+ Default model: ` grok-code-fast-1 ` . Configure with ` scud config set-provider <provider> --model <model> ` .
166+
167+ Project guidance files in ` .scud/guidance/*.md ` are automatically included in AI prompts.
164168
165169### Orchestrator Commands
166170``` bash
167- scud claim < id> --name < name> # Claim task (lock)
168- scud release < id > # Release task lock
169- scud whois [--tag < tag > ] # See who's working on what
170- scud doctor [--tag < tag> ] # Check for stale locks
171+ scud assign < id> < name> # Assign task to a developer
172+ scud who-is [--tag < tag > ] # See who's working on what
173+ scud next-batch [--limit 5 ] # Get multiple ready tasks
174+ scud doctor [--tag < tag> ] # Diagnose stuck workflow states
171175```
172176
173177### Utilities
@@ -207,8 +211,8 @@ scud stats --tag auth-system
207211# Shows progress: 8/10 complete
208212
209213# 6. Visualize
210- scud serve
211- # Opens web dashboard with task graph
214+ scud view
215+ # Opens task viewer in browser
212216```
213217
214218See [ docs/orchestrator.md] ( docs/orchestrator.md ) for parallel execution patterns.
@@ -262,9 +266,31 @@ Alternative providers: Anthropic (`ANTHROPIC_API_KEY`), OpenAI (`OPENAI_API_KEY`
262266├── config.toml # Provider/model settings
263267├── active-tag # Currently active tag
264268├── current-task # Active task ID (for commits)
269+ ├── guidance/ # Project guidance for AI prompts
270+ │ └── *.md # Markdown files auto-loaded
265271└── logs/ # Task log entries
266272```
267273
274+ ### Project Guidance
275+
276+ You can provide project-specific context that will be automatically included in AI prompts. Create markdown files in ` .scud/guidance/ ` :
277+
278+ ``` bash
279+ # Example: Add coding standards
280+ echo " # Coding Standards
281+ - Use TypeScript strict mode
282+ - All functions must have JSDoc comments
283+ - Maximum function length: 50 lines" > .scud/guidance/coding-standards.md
284+
285+ # Example: Add architecture notes
286+ echo " # Architecture
287+ - Frontend: React with hooks
288+ - Backend: Express.js
289+ - Database: PostgreSQL" > .scud/guidance/architecture.md
290+ ```
291+
292+ All ` .md ` files in this folder are automatically loaded when running ` scud parse ` or ` scud expand ` . Use ` --no-guidance ` to skip loading guidance.
293+
268294---
269295
270296## Development
0 commit comments