用 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.