基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/parsoFish/forge --skill pr-workflow命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Layered Trunk branching strategy for multi-agent development — worktree isolation, dependency layers, Ship/Show/Ask merge classification.
HTML5 Canvas game development patterns — game loop, rendering, input, state management, and Vite/Vitest tooling.
Docker Compose patterns for multi-container automation — health checks, networking, volumes, and service orchestration.
| name | pr-workflow |
| category | git |
| description | Standard workflow for creating branches, committing changes, and opening pull requests. |
feat/<project>-<short-description> # New features
fix/<project>-<short-description> # Bug fixes
refactor/<project>-<short-description> # Refactoring
docs/<project>-<short-description> # Documentation
test/<project>-<short-description> # Test-only changes
Follow conventional commits:
feat: add user authentication with JWT
fix: resolve race condition in queue processing
refactor: extract payment processing into service layer
test: add integration tests for user registration
docs: update API documentation for v2 endpoints
chore: upgrade TypeScript to 5.8
Rules:
## Why
[Motivation and context — what problem does this solve?]
## Approach
[Chosen approach and rationale — why this over alternatives?]
## Testing
[Testing strategy — which layers, what behavior is verified]
## Notes
[Follow-up work, caveats, reviewer focus areas]
git checkout -b <branch-name> — Create feature branchgit add -A && git commit -m "<conventional-commit>" — Commitgit push origin <branch-name> — Pushgh pr create --title "<title>" --body "<description>" — Create PR