aeman CLAUDE.md

aeman CLAUDE.md is an instructions file for coding agents from aenix-io/aeman. It costs 1,929 tokens per session, scanned A, original, Apache-2.0.

Repository instructions for aeman, a planning system for engineering teams whose boards are stored as YAML and Markdown files in Git repositories. It also describes its Go backend, React web interface, REST API, WebSocket stream, and MCP server.

In plain words
What is it for?
Use them to build, test, format, lint, run, or modify aeman's frontend, backend, board service, or agent interface.
Why use it?
They explain the project structure, required test-driven development (writing tests as part of the change), build commands, and contribution expectations before an agent edits code.

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/aenix-io/aeman/claude-md
Clone the repo
git clone --depth 1 https://github.com/aenix-io/aeman

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/aenix-io/aeman/claude-md.svg)](https://agentmods.dev/instructions/aenix-io/aeman/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/aenix-io/aeman/claude-md"><img src="https://agentmods.dev/badge/instructions/aenix-io/aeman/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,929 This file is loaded in full into every session.
When invoked 1,929 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.01929 $0.01929
Opus 5 $0.00964 $0.00964
Sonnet 5 $0.00386 $0.00386
Haiku 4.5 $0.00193 $0.00193

Measured today against content hash 79376f9cacf9, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

aeman 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 today.

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 · 58 lines

How it starts

The opening of the file, as written. The whole thing — 58 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.

What this is

aeman — a short-term planning system for engineering teams. Git repositories are the only storage — a board is one or more repositories (domains) of YAML/Markdown files, every action a commit; the whole thing ships as one self-contained Go binary: an embedded React SPA (go:embed via web/embed.go), a JSON REST API under /api/v1, a WebSocket watch stream, and an MCP server for AI agents — all driving the same board service, with the repositories as the single source of truth. GitHub (or another forge) is only the identity provider and the remote the repositories live on.

Commands

make build          # SPA (npm ci + vite build) then the single Go binary
make backend        # Go binary only (expects web/dist to exist)
make frontend       # SPA once into web/dist
make run            # go run ./cmd/aeman serve (frontend must be built once)
make lint           # golangci-lint run (CI pins golangci-lint v2, .golangci.yaml)
make fmt            # golangci-lint fmt
make test           # go test ./...
  • Single Go test: go test ./pkg/board -run TestMeView (any package/regexp).
  • Frontend (from web/): npm run typecheck, npm test (vitest), single test file: npx vitest run src/theme.test.ts.
  • CI (.github/workflows/ci.yml) runs golangci-lint, the frontend build + vitest, make backend, and go test ./... — all of it must pass locally before pushing.

Architecture

The server holds an in-memory cache of the board (internal/server/boardstore.go) over shallow clones of the board's repositories under --data; every write path (UI, REST, MCP) goes through one board service, is answered from the cache at once, and lands as one commit per request (gitstore.WithScope) that a background sync pushes; a fetch tick brings other replicas' commits in, a rejected push is re-applied by replaying the unpushed commits field by field (gitstore.Repo.Rebase). A change reloads only the touched cards and fans out to every open board via the watch stream, filtered by what each visitor may read. Design: docs/design/git-backend.md; rules G1–G26 in docs/design/behavior-matrix.md.

Read the full file on GitHub · 58 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. today Changed · +1 lines · +242 tokens per session 79376f9cacf9
  2. 5d ago First seen · 57 lines · 1,687 tokens per session scan A fd419cbcfa08

Subscribe to this mod's changes

aeman CLAUDE.md is an instructions file published in the GitHub repository aenix-io/aeman (31 stars, last pushed yesterday), licensed Apache-2.0. It adds 1,929 tokens to every session, about $0.0096 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.