auto-confirm-skill-level

auto-confirm-skill-level is a skill for Claude Code, Codex from adamwang99/NEUTRON-EVO-OS. It costs 5 tokens per session (382 once invoked), scanned A, original, MIT.

A workflow pattern for making an AI check an auto-confirm setting in its instruction file before showing a confirmation step.

In plain words
What is it for?
Use it when adding automatic or skipped approval steps to an AI workflow. It helps document the required first check in the instruction file.
Why use it?
It prevents a setting from being ignored when only the supporting Python code checks it. This matters because the AI may read the instructions directly without running that code.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions CLAUDE.md; mentions Claude Code.

Good fit Use it when adding automatic or skipped approval steps to an AI workflow. It helps document the required first check in the instruction file.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/adamwang99/neutron-evo-os/auto-confirm-skill-level
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add adamwang99/NEUTRON-EVO-OS --skill auto-confirm-skill-level
Clone the repo
git clone --depth 1 https://github.com/adamwang99/NEUTRON-EVO-OS

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 auto-confirm-skill-level

README.md
[![agentmods](https://agentmods.dev/badge/skills/adamwang99/neutron-evo-os/auto-confirm-skill-level/github.svg)](https://agentmods.dev/skills/adamwang99/neutron-evo-os/auto-confirm-skill-level)
Your own site
<a href="https://agentmods.dev/skills/adamwang99/neutron-evo-os/auto-confirm-skill-level"><img src="https://agentmods.dev/badge/skills/adamwang99/neutron-evo-os/auto-confirm-skill-level/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 auto-confirm-skill-level

Your own site · 80×15
<a href="https://agentmods.dev/skills/adamwang99/neutron-evo-os/auto-confirm-skill-level"><img src="https://agentmods.dev/badge/skills/adamwang99/neutron-evo-os/auto-confirm-skill-level.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 5 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 382 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.00005 $0.00382
Opus 5 $0.00003 $0.00191
Sonnet 5 $0.00001 $0.00076
Haiku 4.5 $0.00001 $0.00038

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

Security

Grade A, and why

auto-confirm-skill-level 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.

The scan reads SKILL.md. This mod also ships 2 executable files (logic/__init__.py, validation/__init__.py), 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.

skills/learned/auto-confirm-skill-level/SKILL.md · 38 lines

What it actually says

Learned Skill: Auto-Confirm Enforcement at SKILL.md Level

Pattern

When implementing an auto-confirm/config system, the configuration exists but the AI doesn't read it because it's only checked at the Python execution layer (skill_execution.run()), not at the SKILL.md layer that Claude Code reads directly. Claude Code reads SKILL.md files to understand what to do — it never calls skill_execution.run() during normal chat. Fix: add FIRST STEP sections to SKILL.md files that tell the AI to check the config file before presenting gates.

When to Apply

  • Implementing any "auto" or "skip" mode for a workflow gate
  • Adding configuration that should control AI behavior
  • Making sure a Python config layer is actually enforced by the AI itself

Example

Problem: Auto-confirm config exists at memory/.auto_confirm.json, Python code checks it, but Claude Code ignores it because it doesn't run the Python code during chat.

Fix applied:

## ⚡ FIRST STEP: Check Auto-Confirm Status
**BEFORE doing anything else**, check if auto-confirm is enabled:
1. Read memory/.auto_confirm.json
2. If {"enabled": true}: → skip the gate
3. Only present gate UI if auto-confirm is FALSE

Also update CLAUDE.md (loaded first) with the same check.

Notes

Realized during Phase 6 (2026-04-01) when user complained auto-confirm wasn't working despite being enabled. Root cause: AI reads CLAUDE.md + SKILL.md for guidance, not Python code. Solution: embed the check in the docs the AI actually reads.

Files

What ships with it

2 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.

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 · 38 lines · 5 tokens per session scan A 72bebea22fee

Subscribe to this mod's changes

auto-confirm-skill-level is a skill published in the GitHub repository adamwang99/NEUTRON-EVO-OS (20 stars, last pushed 5mo ago), licensed MIT. It adds 5 tokens to every session and 382 once invoked, about $0.0000 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

metago-expert-agent-lifecycle-manager

An expert role that manages an AI agent through its full lifecycle, from defining its requirements and abilities to packaging, testing, deploying, upgrading, and retiring it. It also designs how multiple agents work together.

metago-ai/metagolifeform · 67 tokens

metago-security-audit

A security review skill based on the OWASP Top 10, a commonly used list of major web-application security risks. It checks code, dependencies, configuration, authentication, and data handling.

metago-ai/metagolifeform · 75 tokens

metago-compliance

A pre-task checklist for checking legal, ethical, and security concerns before acting. It covers privacy, copyright, permissions, sensitive data, system safety, and regional compliance requirements.

metago-ai/metagolifeform · 62 tokens

metago-delivery-gate

A delivery checklist for software work that links each requirement to code, tests, and proof that the result looks right. It includes screenshot comparison, where a new image is checked against a reference image.

metago-ai/metagolifeform · 81 tokens

metago-expert-dcv-economist

An expert role for measuring how people, teams, or projects contribute value using a six-part scoring model. It also evaluates credit, balance, and possible contribution risks from records such as work logs and output data.

metago-ai/metagolifeform · 84 tokens

metago-expert-industrial-interconnect-engineer

An industrial-connectivity engineering guide for linking factory equipment such as PLCs, CNC machines and sensors to software systems. It covers industrial communication protocols, digital twins, operational-technology security and compliance standards.

metago-ai/metagolifeform · 69 tokens