StepCOVNet: Skill for Claude Code

.cursor/skills/steering-correction-promotion/SKILL.md

steering-correction-promotion is a skill for Claude Code, Cursor from cpuguy96/StepCOVNet. It costs 61 tokens per session (1,230 once invoked), scanned A, original, Apache-2.0.

A workflow for turning user corrections or remembered preferences into the smallest lasting project instruction, such as a skill section or scoped rule, and recording the change in a journal.

In plain words
What is it for?
Use it after a user corrects how work should be done, including decisions about routing, logging, documentation, or commits.
Why use it?
It keeps important guidance for future work without filling the main agent instructions with details that apply only sometimes.

Skill for Claude CodeCursor

Written for Claude Code and Cursor: disable-model-invocation in frontmatter, but also installed under .cursor/. Also seen: mentions AGENTS.md.

This is cpuguy96/StepCOVNet's own configuration. It tells Claude Code and Cursor how to work on StepCOVNet 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 StepCOVNet configures →

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is → Keep under ~40 lines; regenerate [agent-brain.md](../../../docs/agents/agent-brain.md).

Reuse

Borrowing it

Nothing to install: this file belongs to cpuguy96/StepCOVNet. 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/cpuguy96/StepCOVNet/master/.cursor/skills/steering-correction-promotion/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/cpuguy96/StepCOVNet

Made for: Claude Code, Cursor.

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 steering-correction-promotion

README.md
[![agentmods](https://agentmods.dev/badge/skills/cpuguy96/stepcovnet/steering-correction-promotion/github.svg)](https://agentmods.dev/skills/cpuguy96/stepcovnet/steering-correction-promotion)
Your own site
<a href="https://agentmods.dev/skills/cpuguy96/stepcovnet/steering-correction-promotion"><img src="https://agentmods.dev/badge/skills/cpuguy96/stepcovnet/steering-correction-promotion/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 steering-correction-promotion

Your own site · 80×15
<a href="https://agentmods.dev/skills/cpuguy96/stepcovnet/steering-correction-promotion"><img src="https://agentmods.dev/badge/skills/cpuguy96/stepcovnet/steering-correction-promotion.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 1,230 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 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 58
    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.
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.01230
Opus 5 $0.00030 $0.00615
Sonnet 5 $0.00012 $0.00246
Haiku 4.5 $0.00006 $0.00123

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

Security

Grade A, and why

steering-correction-promotion 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 10d 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.

.cursor/skills/steering-correction-promotion/SKILL.md · 97 lines

How it starts

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

Steering correction promotion

Run this skill in the same turn as any user steering correction — how you decide, operate, route, log, or commit. Finish with artifact + JRN + brief confirmation.

Also invoked from agent-self-improvement.

Context budget (optimize every promotion)

Layer Cost Use for
alwaysApply: true rules Every turn — add sparingly; merge or scope when possible Routing, portable paths, Python env — only what every task needs
globs rules When matching files are in play Script execution, docs schema, test patterns
Skills When task matches or agent opens skill How to decide or run — not live F1 / EXP ids / today's Next action
Current phase Live scoreboard Next action, blockers, run numbers — EXPERIMENT_LOG.md
AGENTS.md Router only — stay thin One index table; no procedure prose
Self-journal Receipt — not loaded every turn Audit trail with Artifact path

Default: prefer skill section or scoped rule over a new alwaysApply rule. Put live experiment state in Current phase, not in the skill body.

Decision tree

Answer in order; stop at the first fit.

1. Multi-step procedure (train, debug playbook, log EXP)?
   → Extend existing skill OR new skill + skills README row
   → AGENTS.md: new index row ONLY if nothing routes there yet

2. Only matters when editing/running certain paths?
   → Scoped rule (.mdc with globs, alwaysApply: false)
   → Merge into existing scoped rule if same glob family (e.g. scripts/**)

3. Universal but <5 lines and same topic as an existing alwaysApply rule?
   → Merge into that rule — do NOT add a new file

4. Truly required on EVERY turn (safety, entry routing)?
   → alwaysApply rule — LAST RESORT
   → Keep under ~40 lines; regenerate [agent-brain.md](../../../docs/agents/agent-brain.md)

5. One-off preference for this session only?
   → Chat — no JRN unless user says remember this

6. Mechanical bug with a code fix?
   → Code/tests first; optional scoped rule if agents keep repeating it

Read the full file on GitHub · 97 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. 10d ago First seen · 97 lines · 61 tokens per session scan A 96c6903e1c1c

Subscribe to this mod's changes

steering-correction-promotion is a skill published in the GitHub repository cpuguy96/StepCOVNet (22 stars, last pushed 16d ago), licensed Apache-2.0. It adds 61 tokens to every session and 1,230 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

developing-with-streamlit

Use for ALL Streamlit tasks: creating, editing, debugging, beautifying, styling, theming, optimizing, or deploying Streamlit apps. Also custom components, st.components.v2, HTML/JS/CSS work. Discovers and loads version-matched reference docs from the user's installed Streamlit (>=1.57). Triggers: streamlit, st.…

streamlit/streamlit · 128 tokens

physicsnemo-shard-tensor

Official NVIDIA-authored guidance for PhysicsNeMo ShardTensor domain parallelism — integrate domain parallelism into training/inference scripts (new or existing) with DDP or FSDP2, write and register shard patches to enable new layers/ops, and bootstrap multi-GPU correctness tests. Use when working with ShardTensor…

NVIDIA/physicsnemo · 152 tokens

physicsnemo-discover

Official NVIDIA-authored guidance for navigating PhysicsNeMo — pick the model, datapipe, or example for a SciML/AI4Science task (surrogates, forecasting, downscaling, physics-informed, inverse, generative). Points at existing files via live repo search; never writes code. Do NOT use for installation or environment…

NVIDIA/physicsnemo · 124 tokens

lepton-cli

Operate NVIDIA DGX Cloud Lepton through the globally installed lep CLI. Use when the user asks to inspect or manage Lepton workspaces, endpoints/deployments, dev pods, batch jobs, fine-tuning jobs, Ray clusters, Slurm clusters, Dynamo endpoints, storage, secrets, nodes, ingress, templates, logs, authentication, or…

leptonai/leptonai · 122 tokens

memory

Use when the user asks to remember, recall, forget, update, search, or inspect durable OpenSquilla memory, including profile facts in USER.md and long-term notes in MEMORY.md or memory//.md.

opensquilla/opensquilla · 44 tokens

wax

Swift framework guidance for Wax on-device memory/RAG. Use when writing Swift code with the public Memory facade, experimental PhotoMemory / VideoMemory, BuiltInMultimodalEmbeddings, embedding providers, retrieval modes, or hybrid search. For agent operators using the Wax MCP server tools, use the separate wax-mcp…

christopherkarani/Wax · 68 tokens