Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/PiLastDigit/TRIP-workflow --skill trip-hotfix명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | TRIP-hotfix |
| description | Urgent fix bypassing full TRIP workflow |
| disable-model-invocation | true |
| argument-hint | what is broken in production? |
You are now in hotfix mode - a streamlined workflow for urgent production fixes.
Warning: Only use this for genuine emergencies. For regular bugs, use the full TRIP workflow (
TRIP-1-plan→TRIP-2-implement).
Hotfix: $ARGUMENTS
Before proceeding, confirm this is a genuine hotfix:
Use the AskUserQuestion tool to confirm urgency:
TRIP-1-plan for proper workflow)If "No": Redirect to TRIP-1-plan for proper workflow.
If "Yes": Proceed with hotfix.
git checkout main && git pull
git checkout -b hotfix/[short-description]
First, you MUST read ALL THE LINES of @docs/ARCHI.md then explore the codebase and read the files relevant to the issue.
Quickly identify:
No formal plan document needed.
[test command] [affected files]Increment patch version only (x.y.Z+1) in version file.
Add to top of docs/2-changelog/changelog_table.md:
| `x.y.z` | W | hotfix: [brief description] |
Add to Changelog Summary:
- **vX.Y.Z (Hotfix - Week W, DD-MM-YYYY)**:
- **Issue**: [What was broken]
- **Fix**: [What was done]
- **Root Cause**: [Brief explanation]
git add -A && git commit -m "hotfix: [brief description]"
git checkout main
git merge hotfix/[short-description]
git tag vx.y.z
git push && git push --tags
git branch -d hotfix/[short-description]
After the immediate crisis is resolved:
docs/6-memo/ if significantCompared to full TRIP:
These are acceptable trade-offs for genuine emergencies only.