lightspec-loop
LightSpec Loop: LightSpec Subagent-Driven Development
Implement LightSpec specs by dispatching fresh subagent per spec, with clean context isolation and sequential execution.
Core principle: Fresh subagent per spec + sequential execution + clean context = high quality isolated implementation
When to Use
digraph when_to_use {
"Have LightSpec specs to implement?" [shape=diamond];
"Specs are independent changes?" [shape=diamond];
"Want clean context per spec?" [shape=diamond];
"lightspec-subagent-driven-development" [shape=box];
"Manual execution or other workflow" [shape=box];
"Have LightSpec specs to implement?" -> "Specs are independent changes?" [label="yes"];
"Have LightSpec specs to implement?" -> "Manual execution or other workflow" [label="no"];
"Specs are independent changes?" -> "Want clean context per spec?" [label="yes"];
More from viteinfinite/skills
pm2-server-control
>-
14openspec-loop
Use when systematically implementing OpenSpec change proposals through clean, sequential delegation
10request-recorder
>-
10commit-style-enforcer
Use when creating git commits. Learns repository-specific commit style patterns from history, caches them, and enforces consistency.
5documentation-updater
Use when implementing features, refactors, or fixes that affect core functionality, configuration, infrastructure, or integrations. Ensures documentation stays accurate by updating README, operational guides, and reference docs, and verifying links/commands remain correct.
5openspec-subagent-driven-development
Use when systematically implementing OpenSpec change proposals through clean, sequential delegation
1