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.
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.
curl -O https://raw.githubusercontent.com/withkynam/vibecode-pro-max-kit/main/.claude/skills/vc-generate-closeout/SKILL.mdgit clone --depth 1 https://github.com/withkynam/vibecode-pro-max-kitWrote 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.
[](https://agentmods.dev/skills/withkynam/vibecode-pro-max-kit/vc-generate-closeout)<a href="https://agentmods.dev/skills/withkynam/vibecode-pro-max-kit/vc-generate-closeout"><img src="https://agentmods.dev/badge/skills/withkynam/vibecode-pro-max-kit/vc-generate-closeout.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00042 | $0.03102 |
| Opus 5 | $0.00021 | $0.01551 |
| Sonnet 5 | $0.00008 | $0.00620 |
| Haiku 4.5 | $0.00004 | $0.00310 |
Grade A, and why
vc-generate-closeout 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.
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.
How it starts
The opening of the file, as written. The whole thing — 262 lines — stays where its author put it; the contents beside it link to each section on GitHub.
vc-generate-closeout
Output style: closeout packet leads with the verdict/recommendation, tables for drift/readiness, one-line TL;DR —
process/development-protocols/communication-standards.md.
Generate the post-EXECUTE closeout packet for a completed plan or phase. Produces a structured summary with archive-readiness classification, drift signal scoring, commit checkpoint recommendation, and the single best next valid state.
When To Invoke
Invoke this skill at the end of:
- Any non-trivial EXECUTE completion (the execute-agent's own closeout block)
- ENTER UPDATE PROCESS MODE flows before archiving a plan
- fast-mode-agent session end, after implementation and verification are complete
- Phase program closeout between phases (after validate + regression checkpoint, before inter-phase UPDATE PROCESS)
Do not invoke for trivial single-file fixes where the plan file is not involved.
Mode Selection
Choose one mode before generating the closeout packet.
Simple Mode (default)
Use when:
- The execute session just ended and all context is fresh in the conversation.
- The plan was a single-phase, straightforward implementation.
- No context compaction occurred during the session.
Behavior: write the 8-item closeout packet directly from the plan file and conversation context. No additional git or file scanning is required.
Deep Mode
Trigger conditions — use Deep Mode if any one of the following applies:
- The session was resumed after a context compaction (conversation context may be incomplete).
- The execute session was long — many sub-steps, multiple checklist sections, or multiple commits.
- The caller explicitly requests deep mode.
- The phase is part of a multi-phase program and accurate phase-completion status is required for the umbrella plan.
Behavior: gather evidence before writing the closeout packet. Run these steps in order:
git diff HEAD~1 --name-only— confirm which files were actually changed. Cross-reference against the plan's blast radius.git log --oneline -5— confirm commit messages match what was planned. Flag any commits that touch files outside the plan's scope.- Read the phase report if one was already written — confirm its claims match actual execution output.
- Read the validate-contract test gates — confirm each gate's final status: green, known-gap, or skipped. Do not rely on memory for gate outcomes.
- Read the plan Implementation Checklist — for every checked item, confirm a matching file appears in the git diff. Flag any checked item with no corresponding change.
What ships with it
3 files 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.
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.
- 7d ago First seen · 262 lines · 42 tokens per session scan A e54a81fd901a
vc-generate-closeout is a skill published in the GitHub repository withkynam/vibecode-pro-max-kit (1,116 stars, last pushed 2mo ago), licensed MIT. It adds 42 tokens to every session and 3,102 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.
Other skills, from other repositories
commit
Draft and create a git commit for staged changes. Use when asked to commit.
validate-changes
Evaluate staged changes using LLM-as-a-Judge before committing.
catchup
Restore context after /clear by summarizing recent work and project state.
dedup
Dedupe-only pass for BASESHA..HEAD: remove duplicate code introduced by the diff or reuse existing shared utils; applies changes + commits.
plan-critique-loop
Critique and revise an existing plan doc up to 3 iterations, using accept/reject triage and stopping early when no important feedback remains. Use when refining a plan/.md before implementation.
besimple-tiny-broccoli
Small-change wrapper: implement → run repo checks → atomic commit → run dedup (BASESHA..HEAD).