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.
npx agentmods add instructions/allfro/traefikr/claude-mdgit clone --depth 1 https://github.com/allfro/traefikrWrote 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/instructions/allfro/traefikr/claude-md)<a href="https://agentmods.dev/instructions/allfro/traefikr/claude-md"><img src="https://agentmods.dev/badge/instructions/allfro/traefikr/claude-md.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 | $0.02649 | $0.02649 |
| Opus 5 | $0.01324 | $0.01324 |
| Sonnet 5 | $0.00530 | $0.00530 |
| Haiku 4.5 | $0.00265 | $0.00265 |
Grade A, and why
traefikr 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 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -H "Authorization: Bearer $JWT" http://localhost:8000/api/http/routers How it starts
The opening of the file, as written. The whole thing — 282 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
Traefikr is a Traefik configuration management API that provides a REST API for managing Traefik v3.6 resources (routers, services, middlewares, etc.) with comprehensive JSON schema validation. The backend is written in Go and uses SQLite for persistence.
Build and Development Commands
Docker Development
# Build and start all services (Traefik + Backend)
docker-compose up --build
# Rebuild backend only
docker-compose build backend
# Stop and remove containers
docker-compose down
# Remove backend data volume
docker volume rm traefikr_backend-data
Backend Development
cd backend
# Install dependencies
go mod download
# Build binary
go build -o traefikr .
# Build static binary for production (used in Dockerfile)
CGO_ENABLED=1 GOOS=linux go build \
-a \
-ldflags '-linkmode external -extldflags "-static" -s -w' \
-o main .
# Run locally
TRAEFIKR_DB_PATH=./traefikr.db TRAEFIKR_PORT=8080 TRAEFIK_API_URL=http://localhost:8080 ./traefikr
Testing
# Test authentication flows
./tests/test_auth.sh
# Create test resources
./tests/create_fixed_resources.sh
# Create all middleware types
./tests/create_middlewares.sh
# Delete all resources
./tests/delete_all_resources.sh
Architecture
Dual Authentication System
Traefikr implements two separate authentication mechanisms - this is critical to understand:
-
JWT Authentication (User/Admin access)
- Used for all CRUD operations on resources
- Login at
/api/auth/loginwith username/password returns JWT token - Token must be passed as
Authorization: Bearer <token>header - Tokens expire after 24 hours
- Implemented in
middleware/jwt.go
-
API Key Authentication (Traefik polling)
- ONLY used for
/api/configendpoint (Traefik HTTP provider polling) - API keys are standalone, not linked to users
- Created via
/api/http/providerendpoint (requires JWT) - Passed as
x-traefikr-keyheader - Implements conditional authentication: public if no API keys exist (bootstrap mode), requires auth once keys are created
- Implemented in
middleware/auth.go
- ONLY used for
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.
- 4d ago First seen · 282 lines · 2,649 tokens per session scan A 5e26b2965c25
traefikr CLAUDE.md is an instructions file published in the GitHub repository allfro/traefikr (111 stars, last pushed 7mo ago), licensed MIT. It adds 2,649 tokens to every session, about $0.0132 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-30.
Other instructions, from other repositories
appwrite AGENTS.md
AGENTS.md instructions for appwrite/appwrite, covering appwrite, commands, stack, layout and libraries.
openlakeforge AGENTS.md
Instructions for malon64/openlakeforge, covering agent and contributor guide, what this project is, orientation — read in this order, repository map and architectural rules.
docker-zoneminder CLAUDE.md
Instructions for jantman/docker-zoneminder, covering claude.md, project overview, build and test, ci/cd and architecture.
mitos CLAUDE.md
Instructions for mitos-run/mitos, covering claude.md, project overview, operating principles, commands and architecture.
observability-mcp CLAUDE.md
Instructions for ThoTischner/observability-mcp, covering observability-mcp development guide, docker-first development, quick start, rebuild a single service and view logs.
workshop copilot-instructions.md
Copilot instructions for canonical/workshop, covering github copilot instructions, project overview, tech stack, repository structure and core directories.