vhk: Skill for Claude Code

.agents/skills/overnight-vhk-auto/SKILL.md

overnight-vhk-auto is a skill for Claude Code, Codex from byh3071-cpu/vhk. It costs 26 tokens per session (783 once invoked), scanned A, original, MIT.

A conductor for running one VHK goal unattended overnight and stopping after opening a pull request. A pull request is a proposed code change submitted for review.

In plain words
What is it for?
Running an overnight implementation task, committing verified changes, and opening an autonomous pull request for morning review.
Why use it?
It defines the repository wrapper and safety rules for implementing a goal and creating a pull request without merging it or changing protected branches.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents); mentions AGENTS.md.

This is byh3071-cpu/vhk's own configuration. It tells Claude Code and Codex how to work on vhk 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 vhk configures →

Reuse

Borrowing it

Nothing to install: this file belongs to byh3071-cpu/vhk. 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/byh3071-cpu/vhk/main/.agents/skills/overnight-vhk-auto/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/byh3071-cpu/vhk

Made for: Claude Code, 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 overnight-vhk-auto

README.md
[![agentmods](https://agentmods.dev/badge/skills/byh3071-cpu/vhk/overnight-vhk-auto/github.svg)](https://agentmods.dev/skills/byh3071-cpu/vhk/overnight-vhk-auto)
Your own site
<a href="https://agentmods.dev/skills/byh3071-cpu/vhk/overnight-vhk-auto"><img src="https://agentmods.dev/badge/skills/byh3071-cpu/vhk/overnight-vhk-auto/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 overnight-vhk-auto

Your own site · 80×15
<a href="https://agentmods.dev/skills/byh3071-cpu/vhk/overnight-vhk-auto"><img src="https://agentmods.dev/badge/skills/byh3071-cpu/vhk/overnight-vhk-auto.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 783 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: 2 findings, 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 Agent Snooping · line 22
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
  • medium Agent Snooping · line 44
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
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.00026 $0.00783
Opus 5 $0.00013 $0.00392
Sonnet 5 $0.00005 $0.00157
Haiku 4.5 $0.00003 $0.00078

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

Security

Grade A, and why

overnight-vhk-auto 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 11d 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.

.agents/skills/overnight-vhk-auto/SKILL.md · 47 lines

How it starts

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

Overnight vhk-auto conductor

One goal per invocation. Different track from overnight-autoloop (do not mix).

Repository wrapper

Use the tracked scripts/auto_pr_goal.ps1 wrapper after the implementation commit. Its interface is fixed:

powershell -NoProfile -ExecutionPolicy Bypass -File scripts/auto_pr_goal.ps1 `
  -RepositoryRoot <repo-root> -BaseBranch main -Title <title> -BodyFile <body-file>

Prepare a temporary PR body file that follows AGENTS.md and includes the morning review questions. Do not commit that file.

Invariants

  • INV-A Follow .agents/skills/vhk-auto/SKILL.md INV-1..INV-11 for the implement loop. Commit only inside that loop (INV-7).
  • INV-B After green verify + commit, call scripts/auto_pr_goal.ps1. The wrapper supports a clean worktree with an unpushed commit; do not require dirty porcelain. Merge = 0. Never push main, force-push, publish, or change branch protection.
  • INV-B2 The autonomous label is attached idempotently by that script on both create and reuse paths (Goal 111 cohort secondary signal). Never add or remove it by hand — the primary signal is the terminal-SHA join, and signal mismatch is quarantined as unknown.
  • INV-C If autonomy-log start or terminal event is missing → write .vhk/HARD_STOP and stop. Same when a successful terminal event has no receipt for the same SHA — that run is recorded but never counts as verified completion, so it never enters the observation gate sample (vhk-auto INV-10).
  • INV-D Use the release order in docs/roadmap/2.x-roadmap.md and acceptance criteria in docs/PRD-2.x.md. Do not invent a queue from old Goal numbers.
  • INV-E Stop on HARD_STOP, verify 2× red, or open PR reported.

Loop

  1. If .vhk/HARD_STOP exists → report and exit. Before any mutation, apply vhk-auto INV-11: require empty output from git -c core.quotepath=false status --porcelain=v1 -z --untracked-files=all and a named branch other than main or master; otherwise report and stop.
  2. Run vhk goal next and select only the Goal it reports. If none is available or dependencies block it, report and stop. Preserve its local state as IN_PROGRESS; do not invent an order from old Goal numbers.
  3. Run vhk-auto loop for that card (including INV-9 autonomy-log).
  4. On success, require a clean worktree and a current branch other than main.
  5. Call scripts/auto_pr_goal.ps1 with the repository root, base branch main, PR title, and temporary PR body file.
  6. Optionally generate the morning report with node scripts/gen-autonomy-morning-report.mjs --date YYYY-MM-DD.
  7. Report the PR URL (or HARD_STOP reason). Do not merge.

Read the full file on GitHub · 47 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. 11d ago First seen · 47 lines · 26 tokens per session scan A 2e04ef5e4cb3

Subscribe to this mod's changes

overnight-vhk-auto is a skill published in the GitHub repository byh3071-cpu/vhk (12 stars, last pushed today), licensed MIT. It adds 26 tokens to every session and 783 once invoked, about $0.0001 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.