kiro-verify-completion

kiro-verify-completion is a skill for Codex from gotalab/cc-sdd. It costs 39 tokens per session (851 once invoked), scanned A, original, MIT.

A completion check that requires fresh evidence before saying a task, fix, test, or feature is finished. It compares the claim with command results and, for larger features, with requirements, design, integration, and blocked-task status.

In plain words
What is it for?
Use it before reporting completed work, a fixed bug, passing tests, or a ready-to-release feature, using the relevant validation commands and project records.
Why use it?
A report that something works can be stale or incomplete. This check helps prevent false claims that tests pass or a feature is ready when the evidence does not cover the claim.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: mentions subagents.

Good fit Use it before reporting completed work, a fixed bug, passing tests, or a ready-to-release feature, using the relevant validation commands and project records.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/gotalab/cc-sdd/kiro-verify-completion
About the project

cc-sdd is a spec-driven development workflow for coding agents: it turns approved software specifications into requirements, designs, task plans, and extended autonomous implementation. Developers use it across several AI coding agents, with independent review and task-level continuation for long-running work. The catalogue entries provide commands, skills, agents, and instructions for using this workflow.

gotalab/cc-sdd · 3,659 stars · on GitHub

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add gotalab/cc-sdd --skill kiro-verify-completion
Clone the repo
git clone --depth 1 https://github.com/gotalab/cc-sdd

Made for: Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for kiro-verify-completion

README.md
[![agentmods](https://agentmods.dev/badge/skills/gotalab/cc-sdd/kiro-verify-completion/github.svg)](https://agentmods.dev/skills/gotalab/cc-sdd/kiro-verify-completion)
Your own site
<a href="https://agentmods.dev/skills/gotalab/cc-sdd/kiro-verify-completion"><img src="https://agentmods.dev/badge/skills/gotalab/cc-sdd/kiro-verify-completion/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for kiro-verify-completion

Your own site · 80×15
<a href="https://agentmods.dev/skills/gotalab/cc-sdd/kiro-verify-completion"><img src="https://agentmods.dev/badge/skills/gotalab/cc-sdd/kiro-verify-completion.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 851 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00039 $0.00851
Opus 5 $0.00019 $0.00426
Sonnet 5 $0.00008 $0.00170
Haiku 4.5 $0.00004 $0.00085

Measured 10d ago against content hash 389b056b47c9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

kiro-verify-completion scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

tools/cc-sdd/templates/agents/antigravity-skills/skills/kiro-verify-completion/SKILL.md · 132 lines

How it starts

The opening of the file, as written. The whole thing — 132 lines — stays where its author put it; the contents beside it link to each section on GitHub.

kiro-verify-completion

<background_information> This skill prevents false completion claims. A task, fix, or feature is only complete when supported by fresh evidence that matches the scope of the claim. </background_information>

  • Before saying a task is complete
  • Before saying a bug is fixed
  • Before saying tests pass
  • Before moving to the next task in autonomous execution
  • Before reporting GO from feature-level validation
  • Before trusting another subagent's success report

Do not use this skill for early planning or speculative status updates.

Inputs

Provide:

  • The exact claim to verify
  • Claim type:
    • TASK
    • FIX
    • TEST_OR_BUILD
    • FEATURE_GO
  • Validation commands discovered by the controller
  • Fresh command output and exit codes
  • Relevant task IDs, requirement IDs, and design refs where applicable
  • For feature-level claims:
    • requirements coverage status
    • design alignment status
    • integration status
    • blocked task status

Outputs

Return one of:

  • VERIFIED
  • NOT_VERIFIED
  • MANUAL_VERIFY_REQUIRED

Also return:

  • Claim reviewed
  • Evidence used
  • Scope/evidence mismatch, if any

Use the language specified in spec.json.

Gate Function

  1. Identify the exact claim.
  2. Identify the exact command or checklist that proves that claim.
  3. Require fresh evidence from the current code state.
  4. Check exit code, failure count, skipped scope, and missing coverage.
  5. Reject claims that are broader than the evidence.
  6. If mandatory validation cannot be completed, return MANUAL_VERIFY_REQUIRED.
  7. Only then allow the claim.

Claim-Specific Rules

TASK

Require:

  • task-local verification evidence
  • no unresolved blocking findings from review
  • evidence aligned with the task boundary

FIX

Require:

  • evidence that the original symptom is resolved
  • no broader regressions in the relevant verification scope

TEST_OR_BUILD

Require:

  • actual command output
  • exit code
  • no inference from unrelated checks

Read the full file on GitHub · 132 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 132 lines · 39 tokens per session scan A 389b056b47c9

Subscribe to this mod's changes

kiro-verify-completion is a skill published in the GitHub repository gotalab/cc-sdd (3,659 stars, last pushed 3mo ago), licensed MIT. It adds 39 tokens to every session and 851 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

repo-consistency-sweep

Proactive defect-class detection that handles the lower-value half of code review (per Bacchelli and Bird 2013) so human reviewers stay focused on design, intent, and knowledge transfer. Catches convention drift, ordering bugs, type-safety gaps, security and multi-tenant invariants (CWE-grounded), and operability…

Mozurok/fhorja.dev · 200 tokens

app-runtime-verify

Verify a built mobile or app runtime at runtime: run the app (device, emulator, or headless), read the captured runtime output (native logcat, iOS device log, or the Metro/JS console), classify any runtime errors against a per-stack taxonomy, and decide a PASS/FAIL runtime gate for the slice's acceptance behavior. The…

Mozurok/fhorja.dev · 227 tokens

incident-triage

Triage a concrete observed technical failure (stack trace, error, failing test, runtime symptom, production alert), classify the failure type (REGRESSION/NEWBUG/CONFIG/EXTERNALDEPENDENCY/REPRODUCIBILITY/DIAGNOSTICINSUFFICIENT), recommend fix size (HOTFIX/SLICE/INVESTIGATION/ESCALATE), and validate against locked…

Mozurok/fhorja.dev · 213 tokens

code-locate

Given a behavior description, locate candidate code paths and line ranges in the active codebase that probably implement it. Output up to 10 candidates with HIGH/MEDIUM/LOW confidence, one-line rationale per candidate, and an explicit search trail; propose a SOURCEOFTRUTH.md update so the next workflow step (typically…

Mozurok/fhorja.dev · 209 tokens

im-stuck

Break the task out of a loop, confusion state, or false-progress state, and determine the fastest safe path forward. Diagnoses whether the issue is technical, workflow-related, or scope-related, then routes to the right recovery command and editor mode (Ask by default; Debug if the stuckness is a concrete technical…

Mozurok/fhorja.dev · 179 tokens

gsd-debug

Systematic debugging with persistent state across context resets.

open-gsd/gsd-core · 13 tokens