From claim-harness
Use to run the FormalClaim evaluator locally on a draft. Returns LICENSED / REJECTED / PENDING with a machine-readable diagnostic. Call this before /submit-claim.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claim-harness:validate-claimThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Runs the bundled evaluator (`polymer-formalclaim validate`) on a claim file and returns the verdict.
Runs the bundled evaluator (polymer-formalclaim validate) on a claim file and returns the verdict.
/validate-claim ./claims/drafts/<slug>.json
Or, programmatically via the claim-ir MCP server's evaluate_claim tool.
schemas/formal_claim_v1.2.json. Any schema violation → REJECTED with SCHEMA_INVALID.Statistic.values. Three-valued logic:
CONJUNCT_FALSE + the failing pathEstimatorOp against the live Polymer API; drift reported; mode is skipped_ineligible unless every premise has provenance_state ∈ {canonical_db, fly_postgres}.{
"verdict": "LICENSED" | "REJECTED" | "PENDING",
"conjuncts": [ { "lhs_stat_id": "...", "op": "...", "rhs_value": 0.65, "result": true }, ... ],
"materialization_status": "skipped_pinned_only" | "complete" | "partial" | "skipped_ineligible" | "error",
"materialization_error": "... reason ..." | null,
"reason_codes": ["CONJUNCT_FALSE", ...],
"failing_conjuncts": [ { "path": "...", "fix_hint": "..." }, ... ]
}
The output includes reason_codes and per-failing-conjunct fix_hint. For machine-autonomous fixes (schema typos, missing stat, stale api_version), the author-claim skill can iterate up to 3 rounds. After the budget is exhausted, page the user.
For substantive failures (EFFECT_SIZE_BELOW_THRESHOLD, CONJUNCT_FALSE on a pre-registered threshold), the claim is genuinely falsified. Either flag it as a null-result claim (claim_type: null_result) and re-submit — null results are first-class — or drop it.
npx claudepluginhub beldez01/polymer-claims --plugin claim-harnessProvides CDSS development patterns for drug interaction checking, dose validation, clinical scoring (NEWS2, qSOFA), and alert classification integrated into EMR workflows.