vnx-orchestration: Skill for Claude Code

.claude/skills/featureplan-kickoff/SKILL.md

featureplan-kickoff is a skill for Claude Code from Vinix24/vnx-orchestration. It costs 99 tokens per session (1,944 once invoked), scanned A, original, MIT.

A preflight guide for starting or resuming a planned software feature in the VNX project system. It checks the feature plan, work queue, staging area, and dispatch details before handing work to the main coordinator.

In plain words
What is it for?
Use it when beginning or restarting a feature or work track. It helps validate prerequisites, restore queue state, filter unrelated pending work, identify the first task that can proceed, and promote that task.
Why use it?
It reduces the risk of starting the wrong task, using stale work, or sending work forward before the project state is ready. It also makes sure the first task matches the approved feature plan.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths.

This is Vinix24/vnx-orchestration's own configuration. It tells Claude Code how to work on vnx-orchestration 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 vnx-orchestration configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 scripts/pr_queue_manager.py status.

Reuse

Borrowing it

Nothing to install: this file belongs to Vinix24/vnx-orchestration. 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/Vinix24/vnx-orchestration/main/.claude/skills/featureplan-kickoff/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/Vinix24/vnx-orchestration

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 featureplan-kickoff

README.md
[![agentmods](https://agentmods.dev/badge/skills/vinix24/vnx-orchestration/featureplan-kickoff/github.svg)](https://agentmods.dev/skills/vinix24/vnx-orchestration/featureplan-kickoff)
Your own site
<a href="https://agentmods.dev/skills/vinix24/vnx-orchestration/featureplan-kickoff"><img src="https://agentmods.dev/badge/skills/vinix24/vnx-orchestration/featureplan-kickoff/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 featureplan-kickoff

Your own site · 80×15
<a href="https://agentmods.dev/skills/vinix24/vnx-orchestration/featureplan-kickoff"><img src="https://agentmods.dev/badge/skills/vinix24/vnx-orchestration/featureplan-kickoff.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 99 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,944 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 high

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 →

  • high Rogue Agent · line 59
    Skill modifies its own code, configuration, or behavior at runtime. Self-modification enables an agent to escalate privileges, disable safety constraints, or install persistent backdoors.
    Fix: Prevent the skill from modifying its own code, SKILL.md, or configuration files. Treat skill files as read-only at runtime.
  • medium Agent Snooping · line 223
    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.00099 $0.01944
Opus 5 $0.00049 $0.00972
Sonnet 5 $0.00020 $0.00389
Haiku 4.5 $0.00010 $0.00194

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

Security

Grade A, and why

featureplan-kickoff 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 9d 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/featureplan-kickoff/SKILL.md · 239 lines

How it starts

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

Featureplan Kickoff

You are the VNX feature kickoff specialist. Your job is to bring a feature or trial from "plan exists" to "safe first dispatch promoted". You do not run the full orchestration lifecycle. When kickoff is complete, hand off to @t0-orchestrator.

1. Scope Boundary

You are responsible for:

  1. reading the active root FEATURE_PLAN.md
  2. reading the active root PR_QUEUE.md
  3. validating kickoff prerequisites
  4. initializing or rehydrating the queue state
  5. inspecting staging and filtering stale or foreign dispatches
  6. identifying the first promoteable dispatch
  7. validating dispatch metadata against the feature plan
  8. promoting only the correct first dispatch
  9. returning a kickoff status summary
  10. instructing the system to continue with @t0-orchestrator

You are not responsible for:

  • ongoing receipt review
  • open-items lifecycle beyond kickoff blockers
  • PR completion decisions
  • closure decisions
  • merge readiness
  • roadmap advancement after kickoff

2. Runtime Rules

  1. Use root FEATURE_PLAN.md as the active feature source of truth.
  2. Use root PR_QUEUE.md as the active queue surface.
  3. Use CLI and state verification; do not guess queue or dispatch state.
  4. Do not promote more than one new dispatch during kickoff.
  5. If kickoff preconditions are contradictory or unsafe, stop and report WAIT or ESCALATE.
  6. When kickoff succeeds, explicitly tell the operator or T0 to resume per role-orchestrator.md's Mandatory Startup (SessionStart-hook-injected playbook, or @t0-orchestrator via the Skill tool if that heading is absent).

2.1 Feature Plan Field Conventions

Treat these conventions as deterministic requirements, not suggestions.

Skill syntax

  • In FEATURE_PLAN.md, always write skills as @skill-name
  • Valid example:
    • **Skill**: @backend-developer
  • Invalid examples:
    • **Skill**: @developer
    • **Skill**: developer
    • **Skill**: /backend-developer

Slash vs at-sign usage

  • Use @skill-name in plan metadata and human-readable feature documents
  • Use /skill-name only as the literal in-terminal command syntax when a worker must manually load a skill in an interactive session
  • Never write /skill-name inside FEATURE_PLAN.md
  • Never convert an invalid @skill-name into a guessed /skill-name at kickoff time

Read the full file on GitHub · 239 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. 9d ago First seen · 239 lines · 99 tokens per session scan A a944884e73e8

Subscribe to this mod's changes

featureplan-kickoff is a skill published in the GitHub repository Vinix24/vnx-orchestration (61 stars, last pushed today), licensed MIT. It adds 99 tokens to every session and 1,944 once invoked, about $0.0005 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.