Orion CLAUDE.md

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

Repository instructions for Orion, a Rust program that runs business services and task pipelines through a REST API. It is organized as a Cargo workspace, meaning one repository contains several related Rust packages, and it includes an embedded SQLite database.

In plain words
What is it for?
Use it when building, configuring, or modifying Orion's server, command-line tool, API types, service endpoints, workflows, storage, and workspace packages.
Why use it?
It explains how the server, command-line tool, shared data types, and workflows fit together. This reduces the risk of making changes that break communication between packages or clients.

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/goplasmatic/orion/claude-md
Clone the repo
git clone --depth 1 https://github.com/GoPlasmatic/Orion

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/goplasmatic/orion/claude-md.svg)](https://agentmods.dev/instructions/goplasmatic/orion/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/goplasmatic/orion/claude-md"><img src="https://agentmods.dev/badge/instructions/goplasmatic/orion/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 8,115 This file is loaded in full into every session.
When invoked 8,115 The same file — it is already loaded in full.
Security scan A 1 finding. 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.08115 $0.08115
Opus 5 $0.04057 $0.04057
Sonnet 5 $0.01623 $0.01623
Haiku 4.5 $0.00812 $0.00812

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

Security

Grade A, and why

Orion CLAUDE.md scanned grade A 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 5d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

| A route, method or query parameter | the book's `curl` examples + `docs/openapi.json` (`docs_routes_drift_test`, `openapi_test`) |
CLAUDE.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.

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

Project Overview

Orion is a declarative services runtime written in Rust. It exposes business logic management through channels (service endpoints) and workflows (task pipelines powered by dataflow-rs) via a REST API. Ships as a single binary with an embedded SQLite database.

This repo is a cargo workspace (monorepo) with four crates: crates/orion-server (the runtime — everything below describes it), crates/orion-cli (the CLI, which has its own CLAUDE.md), and two shared library crates. crates/orion-api is the wire contract: response DTOs, domain enums, the error envelope + codes registry, and the bulk-import report — the server serializes these types, clients deserialize them; the server re-exports them under their pre-1.0 paths (e.g. crate::errors::FieldError, storage::models::EntityStatus). Its deserialization is tolerant by design (every field defaults, unknown fields ignored) so version skew between server and CLI keeps working; its utoipa feature (enabled only by the server) adds the ToSchema derives for the OpenAPI document. crates/orion-client is the one HTTP transport over that contract — OrionClient (auth, envelope unwrap, typed ClientError) plus the paths module every endpoint path is built from; both orion-cli and the server's package_cli drive it, and it is the only crate that owns reqwest for API calls. Neither library crate has a release cycle of its own — no tag names them; crates-publish.yml publishes them automatically as riders (skip-if-present, dependency order) right before orion-server, because crates.io refuses a crate whose dependency it doesn't host. All four crates share one version, workspace.package.version in the root Cargo.toml, inherited with version.workspace = true and repeated only in the two [workspace.dependencies] requirements (a path dependency needs a version to be publishable). That is what makes the riders safe: a release always moves the number, so skip-if-present can never fire on a rider whose contents changed. Bump it with cargo release, never by hand in a member manifest. Note that orion-server is the only binary crate on crates.io: the orion-cli name there belongs to an unrelated 2021 crate, so the CLI ships via the dist installers, the Homebrew tap, GHCR and cargo install --git instead (see RELEASING.md). default-members points bare cargo commands at the server; use --workspace or -p orion-cli to reach the CLI. Only the UI lives in a separate repo (Orion-ui).

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. 5d ago First seen · 251 lines · 8,115 tokens per session scan A d13598e94cfe

Subscribe to this mod's changes

Orion CLAUDE.md is an instructions file published in the GitHub repository GoPlasmatic/Orion (9 stars, last pushed 5d ago), licensed Apache-2.0. It adds 8,115 tokens to every session, about $0.0406 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.