一键导入
test-suggestions
Suggest which tests to run based on code changes. Use this skill when the user modifies source files or asks what tests they should run.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Suggest which tests to run based on code changes. Use this skill when the user modifies source files or asks what tests they should run.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Automatically analyze git commits to predict which tests might fail and identify potential risks. Use this skill when the user pushes code, creates a PR, or asks about the impact of their changes.
Detect and analyze flaky tests that fail intermittently. Use this skill when a test fails unexpectedly, the user asks about flaky tests, or test results are inconsistent.
Scan code changes for security vulnerabilities. Use this skill when the user edits code files, asks about security, or before committing sensitive changes.
| name | test-suggestions |
| description | Suggest which tests to run based on code changes. Use this skill when the user modifies source files or asks what tests they should run. |
This skill suggests which tests to run based on code changes.
Use the argus_what_to_test MCP tool:
{ "diff": "<git diff>", "project_id": "<project>" }| Priority | Test | Reason |
|---|---|---|
| 🔴 Must Run | test_auth_login | Directly affected by auth.py changes |
| 🟡 Should Run | test_api_users | Uses UserService (transitive) |
| 🟢 Optional | test_e2e_checkout | Low probability of impact |
pytest tests/test_auth_login.py tests/test_api_users.py
Estimated time: ~2 minutes