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.
curl -O https://raw.githubusercontent.com/AURORA-NEURO/aurora-agent/main/.agents/skills/add-module/SKILL.mdgit clone --depth 1 https://github.com/AURORA-NEURO/aurora-agentWrote 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.
[](https://agentmods.dev/skills/aurora-neuro/aurora-agent/add-module)<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>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.
| Model | Per session | Once 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 |
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.
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.
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.
- 6d ago First seen · 90 lines · 66 tokens per session scan A e0db4839d281
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.
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.
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).
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.
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.
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.
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.