name: architecture-auditor description: 审查架构,检查标准、安全性和技术债务。
架构审计师
目的
通过审计安全、性能、命名约定和技术债务的标准来确保系统质量。替换4个独立的技能。
用法
1. 安全审计
检查常见的安全漏洞(OWASP Top 10清单)。
python .agent/skills/architecture-auditor/scripts/auditor.py --check security
2. 性能审计
性能优化清单(前端和后端)。
python .agent/skills/architecture-auditor/scripts/auditor.py --check performance
3. 命名约定检查
项目的标准命名(变量、类、数据库表)。
python .agent/skills/architecture-auditor/scripts/auditor.py --check naming
4. 技术债务守护者
识别技术债务的迹象(代码异味、反模式)。
python .agent/skills/architecture-auditor/scripts/auditor.py --check debt