con un clic
fix-issue
Implement a GitHub issue end-to-end following TDD — branch, code, tests, PR
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Implement a GitHub issue end-to-end following TDD — branch, code, tests, PR
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
| name | fix-issue |
| description | Implement a GitHub issue end-to-end following TDD — branch, code, tests, PR |
| argument-hint | <issue-number> |
| disable-model-invocation | true |
| allowed-tools | Read, Grep, Glob, Bash(git *), Bash(gh *), Bash(just *), Bash(uv run *) |
Fix story for GitHub issue #$ARGUMENTS in HyperAdmin.
STORY_FILE=$(grep -rl "issue_number: $ARGUMENTS" .meta/stories/ .meta/epics/*/stories/ 2>/dev/null | head -1)
cat "$STORY_FILE"
Check ROADMAP.md to confirm priority and scope. Do not expand scope.
Run /wt fix/issue-$ARGUMENTS to create an isolated worktree branched from develop.
Then sync the environment:
uv sync --all-extras
src/hyperadmin/tests/unit/tests/e2e/ha-* CSS selectors (see .claude/rules/testing.md)just test-e2e to verifyjust lint
just test
All must pass. Fix any failures before continuing.
git -c user.name="Claude Code" -c user.email="noreply+claude-code@anthropic.com" \
commit -m "fix: <description> (#$ARGUMENTS)"
git push origin HEAD
GH_TOKEN="$CLAUDE_GH_TOKEN" gh pr create --fill
Important: if CLAUDE_GH_TOKEN is not set, stop and ask the user to add it — do not create the PR under their identity.