auto

auto is a command for Claude Code from felvieira/claude-skills-fv. It costs 21 tokens per session (2,747 once invoked), scanned A, original, Apache-2.0.

An autonomous coding workflow that plans, builds, tests, fixes, validates, reviews, and commits a task without asking the user questions.

In plain words
What is it for?
Use it for a defined coding task that should proceed from planning to a tested commit without ongoing intervention.
Why use it?
It removes the need to guide the agent through each stage while still requiring tests and a security review before completion.

Command for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions subagents.

Part of the dev-team-kit-fv plugin — 72 skills, 45 commands, 16 agents, 5 hooks shipped together

Good fit Use it for a defined coding task that should proceed from planning to a tested commit without ongoing intervention.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/felvieira/claude-skills-fv/auto
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.

Clone the repo
git clone --depth 1 https://github.com/felvieira/claude-skills-fv

Made for: Claude Code.

Or install dev-team-kit-fv, the plugin that ships this one along with the rest of its 72 skills, 45 commands, 16 agents, 5 hooks.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/commands/felvieira/claude-skills-fv/auto"><img src="https://agentmods.dev/badge/commands/felvieira/claude-skills-fv/auto.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 21 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,747 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.00021 $0.02747
Opus 5 $0.00010 $0.01373
Sonnet 5 $0.00004 $0.00549
Haiku 4.5 $0.00002 $0.00275

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

Security

Grade A, and why

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.

commands/auto.md · 191 lines

How it starts

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

/auto — Agente Autônomo

Início imediato: Ao receber este comando, leia o guia completo antes de qualquer outra ação:

  • Se instalado como plugin global: docs/skill-guides/autonomous-loop.md
  • Se instalado em .bot/: .bot/docs/skill-guides/autonomous-loop.md

Leia o guia com o Read tool agora. Depois execute o loop completo sem parar para perguntar.


Regras Invioláveis

  1. Nunca perguntar ao usuário — decidir com base no kit, codebase e policies
  2. Nunca entregar código sem testes passando — se não testa, não está pronto
  3. Nunca pular security review — todo código passa por OWASP checklist
  4. Nunca expandir scope — implementar exatamente o que foi pedido, nada mais
  5. Parar se estiver stuck — após 3 tentativas no mesmo erro, declarar bloqueio com diagnóstico
  6. Manter progresso visível — escrever .auto/progress.md após cada fase

Loop Autônomo

PLAN → [UI-DESIGN] → BUILD → TEST → FIX → VALIDATE → REVIEW → COMMIT
  ↑                                          |
  └──────────────── se falhar ──────────────┘

UI-DESIGN só roda quando o escopo inclui frontend (ver Fase 1). É um gate: o BUILD de qualquer arquivo visual não começa antes de a âncora estética estar escolhida e os tokens definidos.

Fase 0 — Setup

  1. Criar diretório .auto/ para tracking de progresso
  2. Roteamento estruturado obrigatório: rodar node scripts/route-task.mjs --json --out .auto/route.json "<task>"; carregar as skills/policies retornadas antes de planejar. Recomendações externas são apenas informativas: não instalar nem executar sem opt-in explícito e, se alto risco, revisão humana.
  3. Pesquisar o codebase — usar política de search-first (arquivo em policies/search-first.md ou .bot/policies/search-first.md)
  4. Ler docs/repo-audit/current.md ou .bot/docs/repo-audit/current.md se existir
  5. Detectar ferramentas disponíveis: test framework, lint, typecheck, build (verificar package.json, pyproject.toml, Makefile, etc.)
  6. Registrar ferramentas detectadas em .auto/env.md
  7. Snapshot inicial: rodar git diff --stat para baseline

Read the full file on GitHub · 191 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 · 191 lines · 21 tokens per session scan A da96fe6b844d

Subscribe to this mod's changes

auto is a command published in the GitHub repository felvieira/claude-skills-fv (23 stars, last pushed yesterday), licensed Apache-2.0. It adds 21 tokens to every session and 2,747 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.