一键导入
cli-tooling-reviewer
Domain guidance for reviewing CLI and tooling phases. Loaded when phase category is CLI.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Domain guidance for reviewing CLI and tooling phases. Loaded when phase category is CLI.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Domain guidance for implementing API and service layer phases. Loaded when phase category is API.
Domain guidance for planning API and service layer phases. Loaded when phase category is API.
Domain guidance for reviewing API and service layer phases. Loaded when phase category is API.
Domain guidance for planning authentication and security phases. Loaded when phase category is AUTH.
Domain guidance for planning CLI and tooling phases. Loaded when phase category is CLI.
Domain guidance for planning data and persistence phases. Loaded when phase category is DATA.
| name | cli-tooling-reviewer |
| description | Domain guidance for reviewing CLI and tooling phases. Loaded when phase category is CLI. |
Test success and all error conditions return expected exit codes. Confirm no hidden successes (wrapper returning 0 on failure/signal).
Run tool --help and each subcommand help. Verify: lists every flag with correct descriptions, shows defaults, required args clearly indicated.
Capture stdout and stderr separately. Normal output only on stdout; errors only on stderr. Meaningful stderr on failure (no silent failures).
All features tested via shell invocation (subprocess), not just internal functions. Assert return codes + stdout + stderr content.
Feed arguments with spaces and shell metacharacters. Verify tool still works.
Simulate non-interactive env (pipe input, unset TTY). Verify CLI doesn't hang. Ctrl+C returns conventional interrupt code (130).