-
Notifications
You must be signed in to change notification settings - Fork 3
Domain Retry
mvoutov edited this page Mar 23, 2026
·
1 revision
When a domain fails during aspens doc init, the CLI shows the exact command to retry just that domain:
▲ 1 domain(s) skipped: performance-tracking
Retry just these: aspens doc init --mode chunked --domains "performance-tracking"
Or retry all: aspens doc init --mode chunked --timeout 600
aspens doc init --mode chunked --domains "performance-tracking"This runs a fast, targeted regeneration:
- Scans repo — fast, no LLM
- Skips discovery — no parallel agents, saves ~2 min
- Skips strategy prompt — no "improve/rewrite/skip" question
- Skips base skill — loads existing base skill for context instead of regenerating
- Generates only the specified domain(s)
- Skips CLAUDE.md — already exists from the first run
-
Updates hooks — re-generates
skill-rules.jsonto include the new skill
Total time: ~1 min instead of ~9 min for a full run.
Comma-separate domain names to retry several at once:
aspens doc init --mode chunked --domains "performance-tracking,github-traffic"- A domain timed out during the initial
doc initrun - You want to regenerate a specific skill after making code changes
- You added new files to a domain and want the skill updated
- How Aspens Works — full pipeline overview
- Common Recipes — other useful command combinations