noricum-dev

noricum-dev is a skill for Claude Code from JuanMarchetto/agent-skills. It costs 47 tokens per session (1,179 once invoked), scanned A, original, MIT.

A set of coding and architecture conventions for Noricum, an agent orchestrator that coordinates software agents during a C-to-Rust migration.

In plain words
What is it for?
It is for Noricum development, including crate organization, architecture decisions, error handling, logging, asynchronous code, and tests.
Why use it?
It helps contributors understand the project's structure, dependencies, state changes, and Rust rules before editing code.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the noricum-dev plugin — 1 skill shipped together

Good fit It is for Noricum development, including crate organization, architecture decisions, error handling, logging, asynchronous code, and tests.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/juanmarchetto/agent-skills/noricum-dev
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.

Any agent
npx skills add JuanMarchetto/agent-skills --skill noricum-dev
Clone the repo
git clone --depth 1 https://github.com/JuanMarchetto/agent-skills

Made for: Claude Code.

Or install noricum-dev, the plugin that ships this one along with the rest of its 1 skill.

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 noricum-dev

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/juanmarchetto/agent-skills/noricum-dev"><img src="https://agentmods.dev/badge/skills/juanmarchetto/agent-skills/noricum-dev.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,179 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.00047 $0.01179
Opus 5 $0.00023 $0.00589
Sonnet 5 $0.00009 $0.00236
Haiku 4.5 $0.00005 $0.00118

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

Security

Grade A, and why

noricum-dev 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.

skills/noricum-dev/SKILL.md · 91 lines

How it starts

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

Noricum Development Conventions

Architecture

  • Noricum is an agent orchestrator, not a compiler
  • C2Rust is "step zero" (subprocess), not reinvented — but often skippable (P4: --skip-c2rust)
  • LLM agents are central from v0
  • Semantic Code Map (noricum-ir) tracks metadata, not compiler IR
  • rig-rs 0.31 for LLM integration (Rust-native, rustls)

Crate Dependencies (layered)

noricum-cli -> noricum-core -> noricum-agents -> noricum-tools -> noricum-ir
                            -> noricum-validation -> noricum-tools -> noricum-ir
noricum-mcp -> noricum-core

Coding Standards

  • Edition 2024, thiserror for lib errors, anyhow for CLI
  • tracing for logging, never println! in library code
  • No unwrap() in library code
  • Async with tokio
  • Tests in #[cfg(test)] mod tests within each file
  • C compiler: -std=gnu11 (not c11, needed for POSIX like strdup), -lm for math

State Machine

Pending -> Extracted -> Characterized -> C2RustDone -> Analyzed -> Refined -> Validated
                                                                    |
                                                            Repairing (max iterations)
                                                                    |
                                                            FallbackUnsafe

Model Router (Claude 4.6 era)

  • Easy: claude-haiku-4-5 (fast, cheap)
  • Medium: claude-sonnet-4-6 (also used for analysis)
  • Hard: claude-opus-4-6 (translation, complex repair)
  • Fallback: Ollama qwen2.5-coder:32b when no API key

Pipeline Improvements (P0-P5, learned from miniz + genann migrations)

  • P0: Quality floor — repair rejected if unsafe count exceeds translation baseline
  • P1: Best-version tracking — keeps highest-score version, uses it for fallback instead of c2rust
  • P2: Per-function C2Rust context — extracts only matching c2rust functions per chunk
  • P3: Incremental per-modulesplit_into_modules() groups C functions by prefix
  • P4: Skip C2Rust--skip-c2rust flag; LLM often translates better without c2rust noise
  • P5: Idiomatic improvement hints — when code compiles + diff passes but score < threshold, generates actionable refactoring hints (reduce as casts, use iterators) so repair agent improves style instead of returning unchanged

Read the full file on GitHub · 91 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 91 lines · 47 tokens per session scan A 70711fe202f3

Subscribe to this mod's changes

noricum-dev is a skill published in the GitHub repository JuanMarchetto/agent-skills (5 stars, last pushed 5mo ago), licensed MIT. It adds 47 tokens to every session and 1,179 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-09-03.