umbral CLAUDE.md

umbral CLAUDE.md is an instructions file for coding agents from dalmasonto/umbral. It costs 8,001 tokens per session, scanned A, original, Apache-2.0.

Development instructions for Umbral, a planned declarative web framework in Rust that aims to provide database features, administration, and optional web APIs from data definitions.

In plain words
What is it for?
Use them when scaffolding or designing Umbral, especially its Rust crates, plugin system, database features, migrations, CRUD operations, admin tools, or optional REST API.
Why use it?
They explain the project’s design direction and dependency boundaries before code exists, helping contributors make decisions consistent with the architecture.

Instructions file

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.

agentmods
npx agentmods add instructions/dalmasonto/umbral/claude-md
Clone the repo
git clone --depth 1 https://github.com/dalmasonto/umbral

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 umbral CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/dalmasonto/umbral/claude-md.svg)](https://agentmods.dev/instructions/dalmasonto/umbral/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/dalmasonto/umbral/claude-md"><img src="https://agentmods.dev/badge/instructions/dalmasonto/umbral/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 8,001 This file is loaded in full into every session.
When invoked 8,001 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.08001 $0.08001
Opus 5 $0.04000 $0.04000
Sonnet 5 $0.01600 $0.01600
Haiku 4.5 $0.00800 $0.00800

Measured 4d ago against content hash 41cbd7987ddc, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

umbral CLAUDE.md 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 4d 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.

CLAUDE.md · 413 lines

How it starts

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

CLAUDE.md

Guidance for Claude Code (claude.ai/code) when working in this repository.

Project status

Greenfield. No Cargo workspace or source yet. Before scaffolding anything, read arch.md; that's the authoritative design spec.

umbral is a declarative web framework in Rust (umbral means 'of the shadow', from Latin umbra). The goal is to recreate that declare-your-data-and-get-everything feeling: declare data and you get migrations, CRUD, an admin, and an optional REST API almost for free, with Rust's compile-time guarantees. The name is a placeholder; the whole tree can be renamed later with sed 's/umbral/yourname/g'.

The one idea that matters most

Thin core, plugin-heavy. The framework dogfoods its own plugin system. Auth, sessions, admin, tasks, and REST are all plugins. Structurally they're identical to a third-party one. A REST-free app has to compile and run with zero serializer code. If a built-in can't be expressed as a plugin, the plugin contract is wrong.

Crate layout = the architecture

The Cargo workspace boundaries encode the core-vs-plugin split:

crates/
  umbral-core     # ORM, migrations, routing, DB backends, the Plugin TRAIT. No plugin deps.
  umbral-macros   # #[derive(Model)], #[task], etc.
  umbral          # FACADE: re-exports core + macros as one stable surface (umbral::prelude::*)
  umbral-cli      # the umbral command-line tool binary
plugins/         # built-in plugins, each its own crate (from M9 onward)
  umbral-auth      # built-in: users, permissions, password hashing (argon2)
  umbral-sessions  # built-in: session store + middleware (tower-sessions)
  umbral-admin     # built-in: auto CRUD UI
  umbral-tasks     # built-in: DB-backed background task queue
  umbral-rest      # OPTIONAL: serializers, viewsets, routers (the REST layer)
  umbral-openapi   # OPTIONAL: Swagger UI / schema gen; depends on umbral-rest

Dependency inversion is the whole game

  • Dependencies point inward toward core. Control flows outward through the trait.
  • Every plugin depends on the umbral facade, never the reverse. umbral-core defines the Plugin trait but never names a concrete plugin; it touches plugins only as Box<dyn Plugin>. That trait object is the dynamic seam that holds the registry of installed plugins.
  • The user's binary crate depends on core plus every chosen plugin and wires them via an explicit builder: App::builder().plugin(...).build().
  • umbral-core depends on neither umbral-rest nor umbral-openapi. That's the structural proof that "serializers are a plugin." Cargo's ban on circular deps enforces it for us.
  • Plugins import only the facade (use umbral::prelude::*), never umbral-core internals. The internal crate split can then be refactored without breaking any plugin.

Read the full file on GitHub · 413 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. 4d ago First seen · 413 lines · 8,001 tokens per session scan A 41cbd7987ddc

Subscribe to this mod's changes

umbral CLAUDE.md is an instructions file published in the GitHub repository dalmasonto/umbral (11 stars, last pushed yesterday), licensed Apache-2.0. It adds 8,001 tokens to every session, about $0.0400 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-30.