lightspec-loop

Installation
SKILL.md

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"];
Related skills
Installs
5
GitHub Stars
1
First Seen
Feb 21, 2026