aurora-agent: Skill for Claude Code

.agents/skills/add-module/SKILL.md

add-module is a skill for Claude Code, Codex from AURORA-NEURO/aurora-agent. It costs 66 tokens per session (948 once invoked), scanned A, original, Apache-2.0.

A guide for adding a new Rust crate, which is a reusable unit of Rust code, to the bioprism workspace. It covers registration, allowed dependencies, dependency direction, and project conventions.

In plain words
What is it for?
Use it when starting a crate, implementing a new blueprint section, or preparing work for another developer or coding agent.
Why use it?
It helps new modules build correctly without dependency cycles or unavailable packages, while keeping the workspace’s design rules intact.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents; installed under .agents/ (shared by several agents); mentions AGENTS.md.

This is AURORA-NEURO/aurora-agent's own configuration. It tells Claude Code and Codex how to work on aurora-agent 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 aurora-agent configures →

Reuse

Borrowing it

Nothing to install: this file belongs to AURORA-NEURO/aurora-agent. 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/AURORA-NEURO/aurora-agent/main/.agents/skills/add-module/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/AURORA-NEURO/aurora-agent

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 add-module

README.md
[![agentmods](https://agentmods.dev/badge/skills/aurora-neuro/aurora-agent/add-module.svg)](https://agentmods.dev/skills/aurora-neuro/aurora-agent/add-module)
Your own site
<a href="https://agentmods.dev/skills/aurora-neuro/aurora-agent/add-module"><img src="https://agentmods.dev/badge/skills/aurora-neuro/aurora-agent/add-module.svg" alt="Measured on agentmods" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 948 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.00066 $0.00948
Opus 5 $0.00033 $0.00474
Sonnet 5 $0.00013 $0.00190
Haiku 4.5 $0.00007 $0.00095

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

Security

Grade A, and why

add-module 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 6d 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.

.agents/skills/add-module/SKILL.md · 90 lines

How it starts

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

Add a module

A module is a crate implementing one blueprint section. The blueprint lives outside the repo; the path is recorded in docs/ARCHITECTURE.md.

1. Register before writing

Create the skeleton and register it first, so the workspace stays buildable and so a subagent never has to touch the shared root manifest:

mkdir -p crates/<name>/src && printf '//! Placeholder.\n' > crates/<name>/src/lib.rs

Add crates/<name> to members and bioprism-<name> = { path = "crates/<name>" } to [workspace.dependencies] in the root Cargo.toml, then confirm:

cargo build -p bioprism-<name> --offline

Only ever add dependencies already in [workspace.dependencies], as { workspace = true }. Builds are offline against pinned versions; a new external crate will not resolve. Several things are hand-rolled for exactly this reason — the CSV reader, the arg parser, JSON-RPC, log-gamma, RFC 3339, the PRNG. Prefer writing the ~100 lines to reaching for a dependency.

2. Respect the dependency direction

ids depends on nothing. scope depends on ids. section depends on neither world nor fiber, deliberately — a consumer must be able to verify a compiled context without linking the engine that produced it. Do not break that to save an import.

If two crates would need each other, the fix is a trait in the lower one implemented by the higher one, as WorldSource does for the compiler and the store.

3. Read the spec module, then cite it

Open the blueprint modules the crate claims and cite their ids in the doc comments ("Blueprint 43.13 requires…"). Much of the spec is status Planned rather than build-ready — prose design, not a frozen contract. Where it under-specifies, say so in a doc comment instead of inventing a detail and presenting it as spec. Whole sections are near-identical boilerplate; §08, §31 and §33 each carry roughly 15 lines of distinguishing content per module. That is worth reporting, not working around silently.

Read the full file on GitHub · 90 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. 6d ago First seen · 90 lines · 66 tokens per session scan A e0db4839d281

Subscribe to this mod's changes

add-module is a skill published in the GitHub repository AURORA-NEURO/aurora-agent (1 stars, last pushed 3d ago), licensed Apache-2.0. It adds 66 tokens to every session and 948 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-31.

Related

Other skills, from other repositories

klever-dev

End-to-end Klever blockchain development — smart contracts (Rust/WASM), transaction building (@klever/connect, klever-go-sdk), deployment via ksc + koperator, and on-chain interaction via MCP tools. Use when the task involves KLV, KDA tokens, klv1 addresses, Klever smart contracts, or Klever node/API interaction.

klever-io/mcp-klever-vm · 76 tokens

add-export

Add a new subpath export to the @cyanheads/mcp-ts-core package. Use when creating a new public API surface that consumers import from a dedicated subpath (e.g., @cyanheads/mcp-ts-core/newutil).

cyanheads/mcp-ts-core · 50 tokens

typescript-lsp

Search TypeScript SYMBOLS (functions, types, classes) - NOT text. Use Glob to find files, Grep for text search, LSP for symbol search. Provides type-aware results that understand imports, exports, and relationships.

youdotcom-oss/dx-toolkit · 51 tokens

lock-project-stack

Detect a project's manifest (pyproject.toml / package.json / go.mod / Cargo.toml), pin its library set into wet-mcp's Cabinets projectcontext, then route subsequent docs queries to the locked versions automatically.

n24q02m/wet-mcp · 48 tokens

go-rust-reverse

Use for reverse engineering stripped Go and Rust binaries including runtime recognition, pclntab/moduel data recovery, panic strings, and idiomatic decompilation recovery.

xAmirHamza77/ReverseOps-Skill · 38 tokens

api-errors

McpError constructor, JsonRpcErrorCode reference, and error handling patterns for @cyanheads/mcp-ts-core. Use when looking up error codes, understanding where errors should be thrown vs. caught, or using ErrorHandler.tryCatch in services.

cyanheads/pubmed-mcp-server · 54 tokens