This skill should be used when running the full autonomous engineering workflow from plan to PR with video.
From soleurnpx claudepluginhub jikig-ai/soleur --plugin soleurThis skill uses the workspace's default tool permissions.
Run these steps in order. Do not do anything else.
Step 0a: Activate Ralph Loop. Run this command via the Bash tool:
bash ./plugins/soleur/scripts/setup-ralph-loop.sh "finish all slash commands" --completion-promise "DONE"
Step 0b: Ensure branch isolation. Check the current branch with git branch --show-current. If on the default branch (main or master), create a worktree for the feature branch. Do NOT use git pull or git checkout -b -- both fail on bare repos (core.bare=true).
bash ./plugins/soleur/skills/git-worktree/scripts/worktree-manager.sh --yes create feat-one-shot-<slugified-arguments>
Then cd into the worktree path printed by the script. Parallel agents on the same repo cause silent merge conflicts when both work on main.
Step 0c: Create draft PR. After creating the feature branch, create a draft PR:
bash ./plugins/soleur/skills/git-worktree/scripts/worktree-manager.sh draft-pr
If this fails (no network), print a warning but continue. The branch exists locally.
Steps 1-2: Plan + Deepen (Isolated Subagent)
Spawn a Task general-purpose subagent to run plan and deepen-plan. This creates a compaction boundary -- the subagent's context is discarded after it returns, freeing headroom for implementation.
Task general-purpose: "You are running the planning phase of a one-shot pipeline.
WORKING DIRECTORY: [insert pwd output]
BRANCH: [insert current branch name]
ARGUMENTS: $ARGUMENTS
STEPS:
1. Use the Skill tool: skill: soleur:plan, args: "$ARGUMENTS"
2. After plan is created, use the Skill tool: skill: soleur:deepen-plan, args: "<plan_file_path>"
RETURN CONTRACT:
When both steps are done, output a summary in this exact format:
## Session Summary
### Plan File
<absolute path to the plan .md file>
### Errors
<list any errors encountered during planning, or 'None'>
### Decisions
<key decisions made during planning, 3-5 bullet points>
### Components Invoked
<list of commands/skills/agents invoked>
Do NOT proceed beyond deepen-plan. Do NOT start work."
Parse subagent output and write session-state.md:
After the subagent returns, check for a ## Session Summary heading in the output.
If present (success):
### Plan Filegit branch --show-currentknowledge-base/project/specs/feat-<name>/session-state.md (create if needed):# Session State
## Plan Phase
- Plan file: <path from subagent>
- Status: complete
### Errors
<errors from subagent output>
### Decisions
<decisions from subagent output>
### Components Invoked
<components from subagent output>
If absent or subagent failed (fallback):
## Plan Phase\n- Status: fallback (subagent failed)\nskill: soleur:plan, args: "$ARGUMENTS" and then skill: soleur:deepen-plan inline (no compaction benefit, but pipeline continues)Steps 3-10: Implementation, Review, and Ship
skill: soleur:work, args: "<plan_file_path>". Work handles implementation only (Phases 0-3). It does NOT invoke ship -- one-shot controls the full lifecycle below.CONTINUATION GATE: When work outputs
## Work Phase Complete, that is your signal to continue. Do NOT end your turn. Do NOT treat "Implementation complete" or similar phrases as a stopping point. Immediately proceed to step 4 in the same response.
Use the Skill tool: skill: soleur:review
Resolve P1 review findings. List open GitHub issues with code-review + priority/p1-high labels:
gh issue list --label code-review --label priority/p1-high --state open --search "PR #<current_pr_number>" --json number,title,body
The --search flag scopes results to issues from this review session (the review skill's issue template includes PR #<number> in the body). If zero issues match, proceed immediately to Step 5.5.
For each matching P1 issue, spawn a parallel pr-comment-resolver agent. Pass the issue body's ## Problem, ## Proposed Fix, and Location: fields as the agent's input. After all agents return, commit fixes and close each resolved issue:
gh issue close <number> --comment "Fixed in <commit-sha>"
Do NOT end your turn after this step. Proceed to Step 5.5.
5.5. Use the Skill tool: skill: soleur:qa, args: "<plan_file_path>". QA verifies features work end-to-end by executing the plan's Test Scenarios (browser flows via Playwright MCP, API verification via Doppler + curl). If QA fails, fix the issues and re-run QA before proceeding. If the plan has no Test Scenarios section, QA skips gracefully.
6. Use the Skill tool: skill: soleur:compound
7. Use the Skill tool: skill: soleur:ship. Ship handles compound re-check (Phase 2), documentation verification (Phase 3), tests (Phase 4), semver label assignment, push, PR creation, CI, merge, and cleanup.
8. Use the Skill tool: skill: soleur:test-browser
9. Use the Skill tool: skill: soleur:feature-video
10. Output <promise>DONE</promise> when video is in PR
CRITICAL RULE: If a completion promise is set, you may ONLY output it when the statement is completely and unequivocally TRUE. Do not output false promises to escape the loop.
Start with step 0a now.