dos-goal-gate

Verify claimed completion against git ancestry and external witnesses before stopping.

18|4|Updated Jun 10, 2026
One-click install
npx skills add https://github.com/anthony-chaudhary/dos-kernel --skill dos-goal-gate
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: dos-goal-gate
Source: https://github.com/anthony-chaudhary/dos-kernel/tree/main/claude-plugin/skills/dos-goal-gate
Command: npx skills add https://github.com/anthony-chaudhary/dos-kernel --skill dos-goal-gate

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill prevents agents from stopping on self-reported completion by requiring external evidence that the claimed work really happened.

Core Features & Use Cases

  • Grounded stop gating: Wires a stop hook that refuses to end work when claimed progress is not corroborated by git or another witness.
  • Claim-to-effect verification: Breaks a goal into checkable effects and verifies each one before allowing the agent to stop.
  • Use Case: Use it for autonomous coding loops, refactors, migrations, or any long-running task where an agent might say it is done before the repository proves it.

Quick Start

Tell the agent to wire the grounded stop gate for the current workspace and keep working until every claimed effect is backed by external evidence.

Frequently Asked Questions about dos-goal-gate

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I stop an autonomous coding agent from claiming it is done when the work is unfinished?▼

To stop autonomous coding agents from falsely claiming completion, you can wire a grounded stop gate. This hook refuses to end the agent loop until self-reported progress is corroborated by external evidence like git ancestry checks.

What is evidence gating in agent workflows?▼

Evidence gating in agent workflows is a verification mechanism that breaks a goal into checkable effects. It requires external witnesses, such as git history, to verify each claimed effect before allowing the agent to stop working.

How do I verify an AI agent's refactoring claims against the repository?▼

You verify an agent's refactoring claims by applying claim-to-effect verification. This process checks git ancestry and effect-level witnesses to ensure the agent's self-reported progress is actually backed by repository evidence before stopping.

Do I need a stop hook to enforce grounded completion for long-running agent tasks?▼

Yes, enforcing grounded completion for long-running agent tasks requires stop-hook integration. The stop hook intercepts the agent's self-reported done claims and blocks them until external evidence verifies the work actually happened.

When should I use claim verification for autonomous coding loops?▼

You should use claim verification for autonomous coding loops, migrations, and long-running refactors. It is necessary whenever an agent might self-report completion before the repository provides external evidence that the work is actually finished.

Can I use this grounded stop gate for migrations without writing custom verification scripts?▼

Yes, you can use this stop gate for migrations without custom scripts by telling the agent to wire the grounded stop gate. It automatically breaks the goal into checkable effects and verifies each one against external witnesses before stopping.