원클릭으로
code-review
针对 Drogon 项目的自动化代码审查流程 (Format, Lint, Arch)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
针对 Drogon 项目的自动化代码审查流程 (Format, Lint, Arch)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Build Drogon payment plugin with correct Release mode configuration
Create comprehensive production readiness documentation package for software projects. Use this skill whenever the user mentions production readiness, deployment docs, operations manual, preparing for release, going to production, or needs deployment guide, monitoring setup, security checklist, or runbook creation. This skill generates the complete documentation ecosystem needed for production deployment including deployment guides, operations manuals, monitoring configuration, security checklists, CI/CD setup, and operational automation scripts.
将 Drogon 插件测试从旧插件 API 迁移到新的基于 Service 的架构
Build Drogon payment plugin with correct Release mode configuration
Standardize and organize C++ project file structure. Use this skill whenever the user mentions cleaning up project files, organizing documentation, archiving old files, removing backups, standardizing file layout, restructuring docs, cleaning up repository, or says things like "my project is messy" or "too many files in my docs folder". This skill handles creating archive directories, moving backup/temporary files to archive, updating .gitignore, creating documentation indexes, and general project file organization for C/C++ projects.
Migrate Drogon plugin tests from old plugin API to new Service-based architecture. Use this skill whenever the user mentions migrating tests, updating to Service API, converting plugin calls, refactoring Drogon tests, or needs to update test code to use PaymentService, RefundService, CallbackService, etc. This skill handles the API migration pattern from plugin.method(req, callback) to service->method(request, key, callback) with Promise/Future for async handling.
| name | code-review |
| description | 针对 Drogon 项目的自动化代码审查流程 (Format, Lint, Arch) |
用于对项目代码进行全自动化的质量检查,包括格式、风格和架构合规性检查。
📌 注意:测试由
/testworkflow 单独处理,避免功能重复。
/code-review [options] [files...]
--all: 全量检查项目中的所有源文件--fix: 【新】自动修复 Clang-Format 格式问题file1 file2 ...: 仅检查指定的文件args = "{{args}}".split()
skill_dir = os.path.dirname(os.path.abspath(file)) script_path = os.path.join(skill_dir, "scripts", "run.py")
cmd = [sys.executable, script_path] + args subprocess.run(cmd)