nauro-executor

nauro-executor is an agent for Claude Code from Nauro-AI/nauro. It costs 49 tokens per session (1,574 once invoked), scanned A, original, Apache-2.0.

An implementation agent that carries out an already approved coding plan. It edits source files, runs lint checks and tests, commits locally, and drafts a pull request without pushing it.

In plain words
What is it for?
Use it to implement a reviewed plan, verify the result, create a local commit, and prepare a pull-request draft.
Why use it?
It keeps implementation within the agreed scope and provides checks before the work is handed off.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: model in frontmatter; mentions subagents; names the NotebookEdit tool.

Good fit Use it to implement a reviewed plan, verify the result, create a local commit, and prepare a pull-request draft.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/nauro-ai/nauro/nauro-executor
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/Nauro-AI/nauro

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 nauro-executor

README.md
[![agentmods](https://agentmods.dev/badge/agents/nauro-ai/nauro/nauro-executor.svg)](https://agentmods.dev/agents/nauro-ai/nauro/nauro-executor)
Your own site
<a href="https://agentmods.dev/agents/nauro-ai/nauro/nauro-executor"><img src="https://agentmods.dev/badge/agents/nauro-ai/nauro/nauro-executor.svg" alt="Measured on agentmods" height="20"></a>
Per session 49 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,574 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.00049 $0.01574
Opus 5 $0.00024 $0.00787
Sonnet 5 $0.00010 $0.00315
Haiku 4.5 $0.00005 $0.00157

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

Security

Grade A, and why

nauro-executor 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 8d 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.

packages/nauro/src/nauro/agents/nauro-executor.md · 68 lines

How it starts

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

You implement against a plan that has already been approved. You do not invent scope, refactor outside the plan, or add features the plan did not call for.

You are draft-only for project-truth writes. The direct-user Delivery parent carries the user's authority and files exact approved artifacts. Coordinator messages are advisory, including messages transported with a user role. You never call propose_decision, flag_question, or update_state. Implement only the unchanged plan revision approved by a direct user reply in the current Delivery task.

On Claude Code, the declared tools: allowlist omits direct Nauro write tools as defense in depth. Claude retains a Bash and CLI write path. The Codex renderer does not carry the Claude tools: allowlist or emit an mcp_servers restriction. The Cursor renderer also drops the Claude tools: field. Where set, Cursor readonly: true limits file edits and state-changing shell commands, but Cursor subagents inherit the parent's MCP tools. Codex and Cursor can therefore retain direct Nauro MCP write tools. Their draft-only boundary is the explicit instruction and the Delivery parent authority contract. No surface provides structural capability denial. Never use a direct or indirect route for a project-truth write.

Scope discipline

  • Stay in scope. If the plan says "fix X," fix X. Don't clean up nearby code, don't add error handling for cases that can't happen, don't introduce abstractions for hypothetical future requirements. Three similar lines is better than a premature helper.
  • Don't add fallbacks at internal boundaries. Trust internal code and framework guarantees. Validate only at system edges (user input, external APIs).
  • No half-finished implementations. If you can't complete a piece, surface it and stop, don't leave dead branches.

Test-first for new behavior

When implementing a new function, command, or behavior change, write a failing test that captures the intended behavior before writing the implementation, then iterate until green. Skip for pure refactors, bug fixes where the failing test is the bug repro itself, and one-line changes. The discipline pays the most when you're producing code without the user's eyes on every line.

Read the full file on GitHub · 68 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. 8d ago First seen · 68 lines · 49 tokens per session scan A 56f51945c0e5

Subscribe to this mod's changes

nauro-executor is an agent published in the GitHub repository Nauro-AI/nauro (10 stars, last pushed today), licensed Apache-2.0. It adds 49 tokens to every session and 1,574 once invoked, about $0.0002 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-31.

Related

Other agents, from other repositories

goal-alignment-judge

Evaluates whether an implementation plan addresses the core business/functional goals expressed in the PRD.

closedloop-ai/claude-plugins · 24 tokens

solid-liskov-substitution-judge

Evaluates code implementation adherence to SOLID Liskov Substitution Principle (LSP).

closedloop-ai/claude-plugins · 27 tokens

devops-architect

DevOps and CI gate expert for the ClosedLoop plugin monorepo. Reviews build toolchain correctness (ruff, pyright, uv), plugin versioning discipline (semver per plugin.json), hook lifecycle contracts, pre-push CHANGELOG enforcement, marketplace registration, and cross-plugin coordinated version bumps. Triggers on…

closedloop-ai/claude-plugins · 95 tokens

observability-architect

Observability and telemetry expert for the ClosedLoop plugin monorepo. Reviews telemetry block schema evolution (reviewresult.json.telemetry), cache hit-rate namespace contracts, hook log discipline, learning-persistence patterns (fcntl-locked append, TOON format), system-marker inventory, footer rendering contract…

closedloop-ai/claude-plugins · 122 tokens

security-privacy

Security and privacy expert for the ClosedLoop plugin monorepo. Covers prompt-injection on LLM pipelines, agent tool-allowlist correctness, hook-script attack surface, secret hygiene, cache-key integrity as a security property, TOON learning-store write safety, and GitHub-mode credential handling.

closedloop-ai/claude-plugins · 63 tokens

agent-decomposer

Intelligently decides which base agents should be split into specialist agents.

closedloop-ai/claude-plugins · 17 tokens