definition-of-done

definition-of-done is a skill for Claude Code from VincentChuWaiChow/vanguard-frontier-agentic. It costs 61 tokens per session (737 once invoked), scanned A, original, Apache-2.0.

A checklist for finishing repository changes in a fixed order, including regeneration steps, integrity checks, tests, and publishing the change.

In plain words
What is it for?
Use it after editing catalog, skill, model-policy, or Rust tool files, and whenever the repository reports uncommitted or untracked changes.
Why use it?
It prevents changes from being declared complete while generated files, tracked files, or required checks are still out of date.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions CLAUDE.md; mentions subagents.

Part of the vanguard-frontier-agentic plugin — 193 skills shipped together

Good fit Use it after editing catalog, skill, model-policy, or Rust tool files, and whenever the repository reports uncommitted or untracked changes.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vincentchuwaichow/vanguard-frontier-agentic/definition-of-done
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 VincentChuWaiChow/vanguard-frontier-agentic --skill definition-of-done
Clone the repo
git clone --depth 1 https://github.com/VincentChuWaiChow/vanguard-frontier-agentic

Made for: Claude Code.

Or install vanguard-frontier-agentic, the plugin that ships this one along with the rest of its 193 skills.

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 definition-of-done

README.md
[![agentmods](https://agentmods.dev/badge/skills/vincentchuwaichow/vanguard-frontier-agentic/definition-of-done/github.svg)](https://agentmods.dev/skills/vincentchuwaichow/vanguard-frontier-agentic/definition-of-done)
Your own site
<a href="https://agentmods.dev/skills/vincentchuwaichow/vanguard-frontier-agentic/definition-of-done"><img src="https://agentmods.dev/badge/skills/vincentchuwaichow/vanguard-frontier-agentic/definition-of-done/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 definition-of-done

Your own site · 80×15
<a href="https://agentmods.dev/skills/vincentchuwaichow/vanguard-frontier-agentic/definition-of-done"><img src="https://agentmods.dev/badge/skills/vincentchuwaichow/vanguard-frontier-agentic/definition-of-done.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 737 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 warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 47
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
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.00061 $0.00737
Opus 5 $0.00030 $0.00368
Sonnet 5 $0.00012 $0.00147
Haiku 4.5 $0.00006 $0.00074

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

Security

Grade A, and why

definition-of-done 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 12d 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.

.claude/skills/definition-of-done/SKILL.md · 70 lines

How it starts

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

Definition of Done

Doctrine

The order is load-bearing. The integrity manifest must hash the settled tree, so asset-integrity:write always runs last, on its own, from the repo root — never folded into a parallel generator batch, never run from a subdirectory.

Trigger

  • Before declaring any change in this repo finished.
  • Whenever the stop hook reports uncommitted or untracked changes.

Input

The list of paths you touched in this change.

Decision matrix

Pick the steps that apply based on what changed — most changes trigger more than one row.

  • catalog / agents / skills / roles / providers changednpm run manifest:write:all, then re-run asset-integrity LAST on its own (the parallel-generator ordering caveat in CLAUDE.md).
  • skills/** changednpm run manifest:write.
  • catalog/model-policy.json or model-registry.json changednpm run model-policy:check (and model-policy:apply if the projection changed).
  • tools/vfa-tui/** changedcd tools/vfa-tui && cargo fmt --check && cargo clippy --all-targets -- -D warnings && cargo test. Return to the repo root afterwards — a persisted cd has broken integrity runs before.
  • any root file / agents/ / plugins/ / package.json changed → asset-integrity refresh required.

The invariant sequence

Always, in this order:

  1. Applicable generators from the decision matrix above.
  2. python3 tests/validate-asset-integrity.py --write from the REPO ROOT, last, on its own.
  3. npm run validate — zero failures.
  4. npm run lint:spell and npx --yes markdownlint-cli2 "**/*.md" "#node_modules" — zero failures.
  5. git status clean after committing with a scoped conventional-commit message.
  6. git push -u origin <branch> (retry with backoff on network errors only).

Footguns

  • grep -cE 'FAIL|ERROR' exits 1 on a count of 0 — do not chain it with && before the commit, or a clean gate run looks like a failure and blocks you.
  • Run integrity from the repo root — a leftover cd into tools/vfa-tui makes the write silently target a nonexistent path.
  • Warnings from model-policy are exit-0 by design — read them, don't treat them as failures.
  • Never edit catalog/asset-integrity.json by hand.

Read the full file on GitHub · 70 lines

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. 12d ago First seen · 70 lines · 61 tokens per session scan A 989b9635f111

Subscribe to this mod's changes

definition-of-done is a skill published in the GitHub repository VincentChuWaiChow/vanguard-frontier-agentic (22 stars, last pushed today), licensed Apache-2.0. It adds 61 tokens to every session and 737 once invoked, about $0.0003 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

usethis

R usethis package for workflow automation. Use for package setup, Git, GitHub, and project configuration.

LeoLin990405/r-analytics-skill · 27 tokens

foundations-git-version-control

Version-control bioinformatics scripts with git init/add/commit/branch/merge/stash/tag and .gitignore for FASTQ/BAM/VCF. Use when setting up a repo, undoing a commit, or resolving a merge conflict.

Pavel-Kravchenko/Bioinformatics · 56 tokens

linux-git-bash

Write set -euo pipefail bash pipelines, parse FASTA/FASTQ/VCF/GTF/BED with grep/awk/sed and BAM with samtools, and run git workflows. Use when writing/debugging shell scripts or fixing git/BOM/CRLF issues.

Pavel-Kravchenko/Bioinformatics · 63 tokens

auditing-azure-active-directory-configuration

Auditing Microsoft Entra ID (Azure Active Directory) configuration to identify risky authentication policies, overly permissive role assignments, stale accounts, conditional access gaps, and guest user risks using AzureAD PowerShell, Microsoft Graph API, and ScoutSuite.

Youngmaidainon/Agent-Level-Up · 58 tokens

analyzing-azure-activity-logs-for-threats

Queries Azure Monitor activity logs and sign-in logs via azure-monitor-query to detect suspicious administrative operations, impossible travel, privilege escalation, and resource modifications. Builds KQL queries for threat hunting in Azure environments. Use when investigating suspicious Azure tenant activity or…

Youngmaidainon/Agent-Level-Up · 68 tokens

subdomain-takeover-hunt

Detect and verify subdomain takeover via dangling CNAME to unclaimed services.

uphiago/recon-skills · 23 tokens