Loading...
Loading...
Implement a single user story or task from a GitHub Issue backlog. Executes a single Ralph Loop iteration by fetching the next open issue, assigning it, implementing the code, creating a branch and PR, and moving on. You MUST use this skill when asked to "implement a user story", "run one iteration", "do the next task", "execute a ralph loop iteration", or "complete a task from the backlog".
npx skill4agent add eho/agent-skills user-story-implementerghgh auth logingh issue list --label "user-story" --limit 1 --search "sort:created-asc"gh issue edit <issue-number> --add-assignee "@me"git checkout -b feature/us-<issue-number>gh issue comment <issue-number> --body "<Details>"blockedgh issue edit <issue-number> --add-label "blocked"git commit -agit push -u origin HEADgh pr create --title "feat: <issue-title>" --body "$(cat <<'EOF'
Closes #<issue-number>
### Summary
<Summary of work done>
EOF
)"Closes #<issue-number>gh issue list --label "user-story" --limit 1 --search "sort:created-asc"[RALPH_LOOP_DONE_MARKER]gh issue list --label "user-story" --limit 1 --search "sort:created-asc"gh issue edit 12 --add-assignee "@me"git checkout -b feature/us-12git add src/components/TaskEdit.tsxgit commit -m "feat: add priority selector (US-002)"git push -u origin HEADgh pr create --title "feat: Add priority selector" --body "$(cat <<'EOF'
Closes #12
### Summary
Added priority selector to task edit.
EOF
)"