基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Miasakiii/skills-manager --skill code-reviewer命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
skillfmt Skills 管理助手
Expert agent for creating comprehensive Architectural Decision Records (ADRs) with structured formatting optimized for AI consumption and human readability.
AI agent governance expert that reviews code for safety issues, missing governance controls, and helps implement policy enforcement, trust scoring, and audit trails in agent systems.
| name | code-reviewer |
| version | 1.0.0 |
| description | 多语言代码审查,检测 bug、性能和安全问题 |
| summary | 对代码片段进行审查,检测潜在的 bug、性能瓶颈和安全漏洞。 支持 Python / JavaScript / TypeScript / Go / Rust 五种语言。 输出结构化的审查报告,包含问题位置、严重级别和修复建议。 |
| skill_type | component |
| intent | 对代码进行审查,检测 bug、性能和安全问题 |
| type | tool |
| tags | ["review","security","debugging"] |
| category | code |
| author | skills-manager |
| license | MIT |
对代码片段进行审查,检测潜在的 bug、性能瓶颈和安全漏洞。输出结构化报告。
| 参数 | 类型 | 必需 | 说明 |
|---|---|---|---|
| code | string | ✅ | 待审查的代码片段 |
| language | string | ✅ | 代码语言:python / javascript / typescript / go / rust |
| focus | string | ❌ | 审查重点:bug / performance / security / all,默认 all |
| severity | string | ❌ | 最低严重级别:info / warning / error,默认 warning |
| 字段 | 类型 | 说明 |
|---|---|---|
| issues | array | 问题列表 |
| summary | string | 审查摘要 |
| score | number | 代码质量评分 0-100 |
输入:
{"code": "def add(a, b): return a + b", "language": "python", "focus": "all"}
输出:
{"issues": [], "summary": "未发现问题,代码简洁清晰。", "score": 100}