用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/seanrobertwright/archon-workflow-studio --skill source-command-validation-code-review命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Create runbooks, playbooks, and technical documentation for engineering teams. Use when the user wants to document a process, create a runbook, build operational docs, or formalize any repeatable technical procedure. Triggers on requests like "create a runbook for...", "document this process", "write a playbook", or any technical documentation request.
Create Excalidraw diagram JSON files that make visual arguments. Use when the user wants to visualize workflows, architectures, or concepts.
Create Instagram content for AI/tech educational posts. Use when the user wants to create Instagram content including carousels, reels scripts, or captions. Triggers on requests like "create an Instagram post about...", "write a carousel on...", or any Instagram content request.
基于 SOC 职业分类
正在显示 SKILL.md
| name | source-command-validation-code-review |
| description | Technical code review for quality and bugs that runs pre-commit |
Use this skill when the user asks to run the migrated source command validation-code-review.
Perform technical code review on recently changed files.
Review Philosophy:
Start by gathering codebase context to understand the codebase standards and patterns.
Start by examining:
After you have a good understanding
Run these commands:
git status
git diff HEAD
git diff --stat HEAD
Then check the list of new files:
git ls-files --others --exclude-standard
Read each new file in its entirety. Read each changed file in its entirety (not just the diff) to understand full context.
For each changed file or new file, analyze for:
Logic Errors
Security Issues
Performance Problems
Code Quality
Adherence to Codebase Standards and Existing Patterns
Save a new file to .agents/code-reviews/[appropriate-name].md
Stats:
For each issue found:
severity: critical|high|medium|low
file: path/to/file.py
line: 42
issue: [one-line description]
detail: [explanation of why this is a problem]
suggestion: [how to fix it]
If no issues found: "Code review passed. No technical issues detected."