一键导入
post-change-validation
Automatic validation workflow after code changes (loads appropriate skill)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Automatic validation workflow after code changes (loads appropriate skill)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Coordinates subagent task distribution and collaboration. Controls scale determination and autonomous execution mode.
Execute comprehensive test suite with coverage reporting
Coordinates subagent task distribution and collaboration. Controls scale determination and autonomous execution mode.
Coordinates subagent task distribution and collaboration. Controls scale determination and autonomous execution mode.
Detects code smells, anti-patterns, and readability issues. Use when implementing features, reviewing code, or refactoring.
Coordinates subagent task distribution and collaboration. Controls scale determination and autonomous execution mode.
| name | post-change-validation |
| description | Automatic validation workflow after code changes (loads appropriate skill) |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"developers","workflow":"automation"} |
After you've made code changes, I guide you through automatic validation:
Use this skill after any code changes:
I analyze your changes and recommend:
→ Load lint-project skill
make check→ Load test-project skill then lint-project
make test then make check→ Load check-project skill
make check then make test→ Load lint-project skill
make checkYou: [Make code changes]
Agent: [Detect changes and load this skill]
Validation Skill: Analyzing changes...
→ Code modified: app.py
→ Tests modified: test_app.py
Recommendation: Load test-project skill
Agent: [Load test-project]
Test Skill: Running make test...
Results: ✅ All tests pass (89% coverage)
Agent: Ask what to do next
Just code changes → lint-project
Modified: app.py, utils.py
→ Recommend: lint-project
Code + Tests → test-project
Modified: app.py, test_app.py
→ Recommend: test-project
Dependencies changed → lint-project
Modified: pyproject.toml
→ Recommend: lint-project
Complex changes → check-project
Modified: 5+ files, including tests
→ Recommend: check-project
This skill works with your agent-interaction rules:
Shallow validation (lint only):
lint-projectDeep validation (lint + test):
test-projectComplete validation (full pipeline):
check-projectcheck-project when in doubtRelated Skills: lint-project, test-project, check-project