원클릭으로
quick-fix
Create a quick fix branch, commit, PR, merge, and rebase worktrees
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a quick fix branch, commit, PR, merge, and rebase worktrees
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | quick-fix |
| description | Create a quick fix branch, commit, PR, merge, and rebase worktrees |
| disable-model-invocation | true |
Use this for small fixes while another Claude process is working on main. Run through the entire sequence without asking for confirmation at each step.
Execute all steps in sequence without pausing:
Create branch from main:
git checkout main && git pull
git checkout -b fix/<description>
Make the fix — edit the necessary files
Commit with conventional commit message:
git add <changed-files>
git commit -m "fix(<scope>): <description>"
Push and create PR:
git push -u origin fix/<description>
gh pr create --title "fix(<scope>): <description>" --body "<summary>"
Merge with rebase (this repo uses rebase/FF only, no squash):
gh pr merge <number> --rebase
Return to main:
git checkout main && git pull
Update any active worktrees:
# For each worktree that exists:
cd <worktree> && git fetch origin main && git rebase origin/main
fix(<scope>): <description>Load project context for the audiobook-organizer codebase. Invoke this skill at the start of any agent that needs project knowledge. Reads live docs files — no hardcoded values. Falls back to generic behavior on non-audiobook-organizer projects.
Initialize server authentication and retrieve API key. SSH to the audiobook-organizer server, restart the service, read the bootstrap token from the .bootstrap-token file (no longer logged in plaintext — pen-test CRIT-1), exchange it for an API key via POST /api/v1/auth/bootstrap, and write the key to .claude/.api-token (shared across worktrees, auto-cleanup after 8 hours). Use when starting fresh or when the API key has expired.
Build and deploy audiobook-organizer to the production Linux server
Reference guide for common audiobook-organizer tasks and recurring patterns. Helps identify which tasks have existing skills or which new skills might be useful. Use when starting a new task to see if there's a pattern match, or to discover which skills exist for database, build, deployment, debugging, or operational tasks.
Pull logs from the audiobook-organizer service and provide web UI login instructions. Requires running server-bootstrap first to get .api-token file. Reads journalctl via SSH (supports tail, filter, streaming), extracts login credentials, and provides instructions for accessing the web dashboard. Use when troubleshooting server issues, checking service status, or needing to log into the web UI.
Build and deploy the audiobook-organizer using Makefile targets. Handles full builds (frontend + backend), API-only builds, test runs, and deployment. Always uses `make` targets instead of manual commands; auto-installs frontend dependencies before builds. Use when asked to build, run, test, deploy, or for frontend dev server.