Agent Skills
› dcostenco/prism-coder
› Verification Planner
Verification Planner
GitHub在制定实施计划时生成测试断言文件,定义数据、管道和智能体层的验证逻辑及严重性级别。支持多种检查类型,并可委托本地代理进行对抗性审查,以指导自动化验证运行器执行测试。
Trigger Scenarios
生成 implementation_plan.md 时
需要定义测试断言和验证策略时
Install
npx skills add dcostenco/prism-coder --skill Verification Planner -g -y
SKILL.md
Frontmatter
{
"name": "Verification Planner",
"description": "Mandates generation of `test_assertions.json` during planning. v7.2.0 enhanced with severity gates (warn\/gate\/abort), dependency chains, and Claw-as-Validator support."
}
Verification Planner (v7.2.0)
You MUST use this skill when generating an implementation_plan.md. You are required to create a test_assertions.json file in the project root to guide the automated Verification Runner.
🚀 Workflow
- Plan: Alongside your MD plan, define assertions in
test_assertions.json. - Define Layers: Categorize tests into
data(schema),pipeline(files/APIs), oragent(logic). - Set Severity:
warn: Non-blocking logs.gate: Blocks progression on failure.abort: Stops the pipeline immediately (safety-critical).
🛠️ Assertion Types
sqlite_query: Validate DB state.http_status: Verify API health.file_exists/file_contains: Check filesystem.quickjs_eval: Sandbox JS logic for complex checks.
🧠 Claw-as-Validator
If PRISM_VERIFICATION_HARNESS_ENABLED=true, delegate your JSON suite to the local Claw agent for adversarial review before execution to catch missing coverage or false positives.
🔗 References
- EXAMPLES.json: Full JSON schema and multi-layer example.
- CONFIG.md: Environment variables and severity guidelines.
Version History
- 5b13bcc Current 2026-07-25 08:05


