agentsclimarketplace

Kiro verify completion

Skill gdm257/cc-plugins/plugins/cc-sdd-skills/skills/kiro-verify-completion

Verify completion and success claims with fresh evidence. Use before claiming a task is complete, a fix works, tests pass, or a feature is ready for GO.From its SKILL.md

Install
npx -y skills add gdm257/cc-plugins --skill kiro-verify-completion

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

3.8 KB, 806 tokens by cl100k_base, as published. Nobody here has run it

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>

<instructions> ## When to Use
  • 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

FEATURE_GO

Require:

  • full test suite result
  • runtime smoke boot result showing the built artifact reaches its first usable state
  • requirements coverage assessment
  • cross-task integration assessment
  • design end-to-end alignment assessment
  • blocked tasks assessment

A passing test suite alone is not enough for FEATURE_GO.

Stop / Escalate

Return MANUAL_VERIFY_REQUIRED when:

  • No canonical validation command is known
  • The required environment is unavailable
  • A mandatory manual verification step cannot be executed

Return NOT_VERIFIED when:

  • The command failed
  • Evidence is stale
  • Evidence is partial
  • The claim exceeds the evidence
  • The feature still has unresolved blocked tasks or uncovered requirements

Common Rationalizations

RationalizationReality
“The subagent said it succeeded”Reported success is not verification evidence.
“Tests passed earlier”Fresh evidence only.
“Build should be fine because lint passed”Lint does not prove build success.
“Tests passed and build succeeded, so it must run”Type erasure, module loading, native ABI, and boot-time config issues can still fail at runtime.
“The feature is done because all tasks are checked off”FEATURE_GO also requires coverage, integration, and design alignment.

Output Format

## Verification Result
- STATUS: VERIFIED | NOT_VERIFIED | MANUAL_VERIFY_REQUIRED
- CLAIM_TYPE: TASK | FIX | TEST_OR_BUILD | FEATURE_GO
- CLAIM: <exact claim>
- EVIDENCE: <command/checklist and result>
- GAPS: <scope/evidence mismatch or missing validation>
- NOTES: <next action if not verified>
</instructions>

What ships with it: 1 file

159 B alongside SKILL.md

agents/

Gives 1 of the 12 instructions most quality gates skills give in 806 tokens

Counted across 1,195 of the 2,094 authors here whose files we hold, read 2026-08-07

  • Read the output and check the exit codein 54 of 1195, across 14 files
  • Verify requirements using a line-by-line checklistin 53 of 1195, across 12 files
  • Identify the verification command proving the claimhere, and in 51 of 1195, across 12 files
  • Run the full verification commandin 50 of 1195, across 11 files
  • Verify output confirms the claimin 49 of 1195, across 12 files
  • Check version control diff after agent delegationin 46 of 1195, across 6 files
  • State claim with evidencein 44 of 1195, across 4 files
  • Run the test suitein 33 of 1195, across 26 files
  • Keep state in memory by defaultin 27 of 1195, across 6 files
  • Make prototype runnable with one commandin 26 of 1195, across 5 files
  • Produce a verification reportin 25 of 1195, across 14 files
  • Detect the package manager from lockfilesin 24 of 1195, across 5 files

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

Keep looking

Skills are one crate of 326,851. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.