vibecode-pro-max-kit: Skill for Claude Code

.claude/skills/vc-audit-vc/SKILL.md

vc-audit-vc is a skill for Claude Code from withkynam/vibecode-pro-max-kit. It costs 52 tokens per session (658 once invoked), scanned A, original, MIT.

An audit workflow for checking whether an agent-development setup is consistent across its files, tools, and documentation.

In plain words
What is it for?
Use it after moving or splitting agents, skills, README files, or development-protocol files to verify parity, wiring, discovery, and portability.
Why use it?
It helps find drift between Claude and Codex configurations, skill registries, guides, protocols, and validation scripts.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths; mentions Codex.

This is withkynam/vibecode-pro-max-kit's own configuration. It tells Claude Code how to work on vibecode-pro-max-kit itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything vibecode-pro-max-kit configures →

About the project

vibecode-pro-max-kit is a set of instructions, agents, skills, hooks, and settings that gives AI coding agents a plan-first software development workflow. It is designed for developers, product owners, and other builders using agents such as Claude Code, Codex, Cursor, Windsurf, or Copilot across different technology stacks. The catalogue entries are the kit's own workflow components.

withkynam/vibecode-pro-max-kit · 1,116 stars · on GitHub

Reuse

Borrowing it

Nothing to install: this file belongs to withkynam/vibecode-pro-max-kit. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/withkynam/vibecode-pro-max-kit/main/.claude/skills/vc-audit-vc/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/withkynam/vibecode-pro-max-kit

Made for: Claude Code.

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 vc-audit-vc

README.md
[![agentmods](https://agentmods.dev/badge/skills/withkynam/vibecode-pro-max-kit/vc-audit-vc.svg)](https://agentmods.dev/skills/withkynam/vibecode-pro-max-kit/vc-audit-vc)
Your own site
<a href="https://agentmods.dev/skills/withkynam/vibecode-pro-max-kit/vc-audit-vc"><img src="https://agentmods.dev/badge/skills/withkynam/vibecode-pro-max-kit/vc-audit-vc.svg" alt="Measured on agentmods" height="20"></a>
Per session 52 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 658 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.
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.00052 $0.00658
Opus 5 $0.00026 $0.00329
Sonnet 5 $0.00010 $0.00132
Haiku 4.5 $0.00005 $0.00066

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

Security

Grade A, and why

vc-audit-vc 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 7d ago.

The scan reads SKILL.md. This mod also ships 9 executable files (scripts/export-benchmark-kit.mjs, scripts/validate-agent-frontmatter.mjs, scripts/validate-agent-parity.mjs, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/vc-audit-vc/SKILL.md · 66 lines

How it starts

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

Audit VC (Version Control Harness Health)

Output style: Follow process/development-protocols/communication-standards.md — answer-first, plain language, no unexplained jargon, TL;DR on long responses.

Use this skill to verify that the agent harness layer is internally consistent and correctly wired across Claude, Codex, README.md, and protocol files.

For context routing, grouping, and discoverability audits, use the audit-context skill instead.

Workflow

  1. Run the Claude/Codex agent parity validator:
    node .claude/skills/vc-audit-vc/scripts/validate-agent-parity.mjs
    
  2. Run the shared skill discovery validator:
    node .claude/skills/vc-audit-vc/scripts/validate-skills.mjs
    
  3. Run the README.md sync validator:
    node .claude/skills/vc-audit-vc/scripts/validate-guide-sync.mjs
    
  4. Run the protocol wiring validator:
    node .claude/skills/vc-audit-vc/scripts/validate-protocol-wiring.mjs
    
  5. Run the seed/scaffold consistency validator:
    node .claude/skills/vc-audit-vc/scripts/validate-seeds.mjs
    
  6. Run the kit portability validator:
    node .claude/skills/vc-audit-vc/scripts/validate-kit-portability.mjs
    
  7. Run the skill invocation wiring validator:
    node .claude/skills/vc-audit-vc/scripts/validate-skill-invocation-wiring.mjs
    
  8. Run the agent frontmatter validator:
    node .claude/skills/vc-audit-vc/scripts/validate-agent-frontmatter.mjs
    
  9. If any script reports failures, inspect the referenced files and patch the smallest relevant surface.
  10. Re-run the failed validators until they pass.

Rules

  • Treat .claude/agents/ as canonical for agent definitions; .codex/agents/ mirrors them.
  • Treat .claude/skills/ as canonical for skills; .agents/skills/ is the Codex discovery symlink.
  • When updating agents, mirror Claude markdown and Codex TOML surfaces together.
  • Treat process/_seeds/ as an optional legacy scaffold surface in the live repo. Its absence is a warning-only audit result unless the user is explicitly auditing export-kit scaffolding.
  • Treat validator warnings as audit findings unless the user asks for a strict cleanup.
  • For context routing and discoverability audits, delegate to audit-context.

Read the full file on GitHub · 66 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. 7d ago First seen · 66 lines · 52 tokens per session scan A 7f4075fcc662

Subscribe to this mod's changes

vc-audit-vc is a skill published in the GitHub repository withkynam/vibecode-pro-max-kit (1,116 stars, last pushed 2mo ago), licensed MIT. It adds 52 tokens to every session and 658 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.