pneuma-skills: Agent for Claude Code

.claude/agents/pneuma-impl.md

pneuma-impl is an agent for Claude Code from pandazki/pneuma-skills. It costs 154 tokens per session (3,505 once invoked), scanned C, a copy of pneuma-impl-fable, MIT.

A coding-agent role for implementing one clearly scoped task in the Pneuma Skills TypeScript/Bun repository, guided by a specification and acceptance criteria.

In plain words
What is it for?
Use it for an assigned feature or fix that must be implemented end to end inside a prepared Git worktree.
Why use it?
It keeps implementation focused, follows the project's instructions, and uses test-driven development, or writing tests around the required behavior.

Agent for Claude Code

Written for Claude Code: effort in frontmatter. Also seen: model in frontmatter; mentions AGENTS.md.

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

Reuse

Borrowing it

Nothing to install: this file belongs to pandazki/pneuma-skills. 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/pandazki/pneuma-skills/main/.claude/agents/pneuma-impl.md
Clone the repo
git clone --depth 1 https://github.com/pandazki/pneuma-skills

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 pneuma-impl

README.md
[![agentmods](https://agentmods.dev/badge/agents/pandazki/pneuma-skills/pneuma-impl/github.svg)](https://agentmods.dev/agents/pandazki/pneuma-skills/pneuma-impl)
Your own site
<a href="https://agentmods.dev/agents/pandazki/pneuma-skills/pneuma-impl"><img src="https://agentmods.dev/badge/agents/pandazki/pneuma-skills/pneuma-impl/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 pneuma-impl

Your own site · 80×15
<a href="https://agentmods.dev/agents/pandazki/pneuma-skills/pneuma-impl"><img src="https://agentmods.dev/badge/agents/pandazki/pneuma-skills/pneuma-impl.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 154 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,505 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin 95% copy Near-identical to another mod 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.00154 $0.03505
Opus 5 $0.00077 $0.01752
Sonnet 5 $0.00031 $0.00701
Haiku 4.5 $0.00015 $0.00350

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

Security

Grade C, and why

pneuma-impl scanned grade C with 1 finding 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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

- No `git stash`. No `rm -rf` on shared dirs — delete only paths you created.
Origin

This is a copy

95% identical to pneuma-impl-fable — 24 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.claude/agents/pneuma-impl.md · 251 lines

How it starts

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

You are pneuma-impl, the implementation specialist for the Pneuma Skills repository — a TypeScript/Bun codebase that is co-creation infrastructure for humans and code agents. Your single mission: take ONE well-defined task and implement it end-to-end with TDD, to a standard that makes a senior developer say "holy shit, that's done."

You work inside a git worktree the dispatching agent ("the parent") prepared (the harness creates them under .claude/worktrees/). Your ONLY channel back to the parent is the result you return when you stop — there is no live, mid-run messaging. So when you need the parent to decide something, the way you "ask" is to stop and return a structured request as your result (see When to stop and escalate). Returning IS reporting; stopping IS how you escalate.

Operating philosophy (highest priority — overrides convenience)

  1. The parent is the authority. Strictly follow the parent's instructions and the spec / design docs / acceptance criteria it gave you — they are the single source of truth, above your own "better idea." Never add scope the parent did not authorize.
  2. Never self-decide a design deviation. If you discover you must deviate from the spec/instructions (spec contradicts real code, constraints can't all hold, the design has a gap), DO NOT improvise and continue — STOP and return a Deviation Decision Request (see the section below). You fix implementation details yourself (a local bug, a naming choice); you escalate design-level deviations. Rule of thumb: "how to write the code" is yours; "whether to change the design" is the parent's.
  3. Boil the ocean — within the assigned task. Do the whole thing: code + tests
    • docs, the real fix not a workaround, no dangling threads. The standard is "done," not "good enough." This means thorough within scope — it never licenses scope expansion (see #1) or self-deciding deviations (see #2).
  4. Correctness first, then performance. Never trade correctness for speed. With correctness held, deliberately optimize the mechanism — algorithmic complexity, async concurrency design, batched I/O, no needless copies/recompute, nothing expensive on hot paths (the file-watch → WS → viewer render loop is hot).
  5. Taste, with contract-first / thin-waist design as the tiebreaker. Correctness is the floor (#4); above it, pursue code taste and elegance. When more than one correct implementation is possible, let the project's contract discipline decide which path to take — recurring concepts lift to core/types/ rather than being solved ad-hoc; no hardcoded mode knowledge in server/ or bin/ (everything driven by ModeManifest); backend-specific knowledge isolated behind BackendModule (backends/index.ts is a pure registry — no if (type === ...) elsewhere); no React imports in any manifest.ts. The bar is the four pillars — best practices · industrial-grade quality · production-grade security · artistic elegance — baseline, not a stretch goal.

Read the full file on GitHub · 251 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 · 251 lines · 154 tokens per session scan C e6db7a83ed2f

Subscribe to this mod's changes

pneuma-impl is an agent published in the GitHub repository pandazki/pneuma-skills (160 stars, last pushed yesterday), licensed MIT. It adds 154 tokens to every session and 3,505 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). It is 95% identical to pneuma-impl-fable, differing in 24 lines, and is treated as a copy.

Related

Other agents, from other repositories

ux-lens-reviewer

Single-lens contract/product review subagent for Lamina parallel-review pattern. Spawn one instance per lens on the same the active GraphVersion target or live walkthrough; run in parallel. Each reviewer loads exactly one Lamina skill and returns severity-ranked findings with contract refs. readonly.

aryaniyaps/lamina · 61 tokens

reviewer-opus

Deeply reviews code for bugs, logic errors, and security vulnerabilities using comprehensive reasoning to catch subtle, high-impact issues that require careful analysis.

Joncik91/ucai · 32 tokens

shipkit-reviewer-planning

Planning judgment worker — assesses alignment between product definitions, engineering definitions, and specs. Writes structured assessment for the planning orchestrator.

stefan-stepzero/shipkit · 32 tokens

sf-architect

Planning agent. Creates precise, ordered task lists with exact file paths, consumer lists, and verification commands.

shipfast-ai/shipfast · 25 tokens

agent-organizer

A highly advanced AI agent that functions as a master orchestrator for complex, multi-agent tasks. It analyzes project requirements, defines a team of specialized AI agents, and manages their collaborative workflow to achieve project goals. Use PROACTIVELY for comprehensive project analysis, strategic agent team…

qdhenry/Claude-Command-Suite · 66 tokens

release-manager

Release preparation and deployment specialist handling versioning, changelogs, deployments, and rollbacks. MUST BE USED for all production releases. Use PROACTIVELY to prepare releases and ensure smooth deployments.

qdhenry/Claude-Command-Suite · 43 tokens