Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Miasakiii/skills-manager --skill code-reviewer명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
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.
SOC 직업 분류 기준
SKILL.md 표시 중
| 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}