一键导入
commit
Smart conventional commits with auto-detection. Analyzes changes,detects type,commits with minimal interaction. (migrated from Codex command workflow)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Smart conventional commits with auto-detection. Analyzes changes,detects type,commits with minimal interaction. (migrated from Codex command workflow)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Systematic development workflow: Analyze → Plan → Execute → eLicit → eXamine. Use for ANY development task: features, bug fixes, refactoring, hotfixes. Triggers: "implement", "create", "build", "fix", "add feature", "refactor", "develop". Auto-detects project type (Laravel, Next.js, React, Swift) and loads framework-specific references. Enforces: files under 100 lines, interfaces separated, SOLID principles, expert self-review, sniper validation. Modes: --auto (default), --manual, --skip-elicit
Quick Flow for simple fixes - Single expert handles explore,code,review,and validate in one pass. Inspired by BMAD Barry. (migrated from Codex command workflow)
APEX Methodology - The systematic Analyze-Plan-Execute-eLicit-eXamine approach for intelligent development. Eliminates hallucinations,errors,and bugs to produce clean,maintainable code. (migrated from Codex command workflow)
Auto-generate Pull Request with comprehensive description,test plan,and changelog. Uses gh CLI for creation. (migrated from Codex command workflow)
Comprehensive codebase investigation using research-expert for documentation,explore-codebase for structure,and deep analysis. Perfect for understanding complex systems. (migrated from Codex command workflow)
Auto-review skill for expert agents. After coding, expert applies elicitation techniques to self-correct before sniper validation. Inspired by BMAD-METHOD. Use when: an expert agent needs to self-review and self-correct code after the Execute phase, before sniper validation.
| name | commit |
| description | Smart conventional commits with auto-detection. Analyzes changes,detects type,commits with minimal interaction. (migrated from Codex command workflow) |
if ! grep -q "^\.DS_Store$" .gitignore 2>/dev/null; then
echo ".DS_Store" >> .gitignore
fi
find . -name ".DS_Store" -type f -exec git rm --cached {} \; 2>/dev/null
git add .
Run analysis:
git diff --cached --stat
git diff --cached --name-only
Detection Rules (priority order):
| Files Pattern | Type | Confidence |
|---|---|---|
Only *.md, README*, CHANGELOG* | docs | HIGH |
Only *.test.*, *.spec.*, __tests__/* | test | HIGH |
Only *.json, *.yml, .*rc, configs | chore | HIGH |
Only .github/*, CI files | ci | HIGH |
| Diff contains "fix", "bug", "error" | fix | MEDIUM |
| New files with business logic | feat | MEDIUM |
| Renamed/moved without logic change | refactor | MEDIUM |
| Only formatting/whitespace | style | HIGH |
| Mixed or unclear | analyze deeper | LOW |
Extract from primary directory:
src/components/* → ui
src/api/* → api
plugins/* → plugins
lib/utils/* → utils
HIGH confidence → Commit directly (no question)
git commit -m "<type>(<scope>): <description>"
MEDIUM confidence → Show proposal, ask confirmation
Proposed: fix(auth): resolve token validation
Files: src/auth/token.ts
Confirm? [Y/n]
LOW confidence → Ask user for type
<type>(<scope>): <description>Version Rules: ALL types → PATCH only. MINOR/MAJOR = manual user decision.
Plugin repo auto-detection (if .codex-plugin/marketplace.json exists):
git diff --name-only HEAD~1 | grep '^plugins/' | cut -d/ -f2 | sort -uplugins/{name}/.codex-plugin/plugin.json.codex-plugin/marketplace.json plugins array.codex-plugin/marketplace.json → metadata.versioncore[] array): only bump plugin.json (no version in marketplace)CHANGELOG: ## [X.Y.Z] - DD-MM-YYYY — include (plugin-name X.Y.Z) in descriptions
Commit order (MANDATORY):
chore: bump marketplace and CHANGELOG to X.Y.Z/commit auth → scope = auth/commit → auto-detect scope