Agent Skills
› dcostenco/prism-coder
› Verification Planner
Verification Planner
GitHub在实现计划阶段生成test_assertions.json,定义测试断言、分层及严重性等级,引导自动化验证运行器执行数据、管道和代理层级的检查。
Trigger Scenarios
生成实现计划时
需要定义自动化测试断言
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


