using-spwnr
Use for /using-spwnr. Route non-trivial work through /spwnr-plan, then /spwnr-task, while keeping /spwnr-do and /spwnr-worker-audit as alternate lanes.
Using Spwnr
Use this skill as the main entry router for the Spwnr Claude Code plugin.
This plugin is a controller, not the worker itself.
Default workflow:
/spwnr-plan/spwnr-task- implement
Main Route
-
Start with
/spwnr-planfor non-trivial work that needs a locked executable plan before implementation. -
/spwnr-planshould loadspwnr-principleplusspwnr-plan, inspect context withRead, ask only material follow-up questions withAskUserQuestion, keep blockers visible withTodoWrite, and persist the latest active revision under.claude/plans/spwnr-<project-folder-name>-<YYYY-MM-DD>.mdor.claude/plans/spwnr-<project-folder-name>-<YYYY-MM-DD>-rN.md. -
Planning should run a sequential expert loop with
spwnr resolve-workersplus planning-onlyAgentpasses forresearch,draft, andreview. -
Planning must choose
pipelineorteam, explain why, and persist the execution pattern. -
After each write or revision,
/spwnr-planshould run the execution review loop withAskUserQuestion, usingExecute current plan,Continue improving plan, andEnd this round. -
Execute current planis the handoff signal into/spwnr-task. -
Use
/spwnr-taskafter the task already has a ready active revision. -
/spwnr-taskshould read the latest active revision withRead, appendApproved Execution SpecwithEdit, resolve registry candidates withresolve-workers, build per-unit coverage with repeatable--unit "<unit-id>::<brief>"inputs when needed, and route implementation through the helper docs inskills/spwnr-task/task-pipeline.mdorskills/spwnr-task/task-team.md. -
If registry resolution cannot satisfy the approved capability requirements, stop and direct the user to
/spwnr-worker-auditbefore retrying/spwnr-task.
Alternate Lanes
-
Use
/spwnr-dofor a bounded small task that can be handled directly in the current run without the full plan artifact flow. -
/spwnr-dowrites a lightweight runtime note under.claude/do/spwnr-do-<project-folder-name>-<YYYY-MM-DD-HHMMSS>-<slug>.md. -
/spwnr-domay useRead,Write,Edit,Agent, andspwnr resolve-workers, but it must never create tasks or teams. -
/spwnr-domay invoke at most 3 direct workers. -
If
/spwnr-dofinds a worker gap, redirect to/spwnr-worker-audit. -
If
/spwnr-dodiscovers the task is broad, multi-stage, risky, or planning-sensitive, redirect to/spwnr-plan. -
Use
/spwnr-worker-auditwhen registry health, local package availability, injected agent visibility, or readiness recovery is unclear. -
/spwnr-worker-auditis the deeper audit and recovery lane for install, inject, and sync guidance.
Quick Examples
- Broad coding or research request with several execution units ->
/spwnr-plan, then/spwnr-task, then implement - Approved plan already exists and the user wants execution now ->
/spwnr-task - Small follow-up fix after a completed workflow ->
/spwnr-do - Missing local packages, injection, or registry readiness ->
/spwnr-worker-audit