traefikr CLAUDE.md

traefikr CLAUDE.md is an instructions file for coding agents from allfro/traefikr. It costs 2,649 tokens per session, scanned A, original, MIT.

A project instruction file describing Traefikr, a Go service that manages Traefik configuration through an API and stores data in SQLite. It also records commands for Docker, building, running, and testing the project.

In plain words
What is it for?
Use it when working on Traefikr to understand its architecture, start the Docker services, build the backend, run it locally, or execute authentication tests.
Why use it?
It gives a coding agent the repository context and the commands needed to develop and verify the service correctly.

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

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/allfro/traefikr/claude-md.svg)](https://agentmods.dev/instructions/allfro/traefikr/claude-md)
Your own site
<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>
Per session 2,649 This file is loaded in full into every session.
When invoked 2,649 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.02649 $0.02649
Opus 5 $0.01324 $0.01324
Sonnet 5 $0.00530 $0.00530
Haiku 4.5 $0.00265 $0.00265

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

Security

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
CLAUDE.md · 282 lines

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:

  1. JWT Authentication (User/Admin access)

    • Used for all CRUD operations on resources
    • Login at /api/auth/login with username/password returns JWT token
    • Token must be passed as Authorization: Bearer <token> header
    • Tokens expire after 24 hours
    • Implemented in middleware/jwt.go
  2. API Key Authentication (Traefik polling)

    • ONLY used for /api/config endpoint (Traefik HTTP provider polling)
    • API keys are standalone, not linked to users
    • Created via /api/http/provider endpoint (requires JWT)
    • Passed as x-traefikr-key header
    • Implements conditional authentication: public if no API keys exist (bootstrap mode), requires auth once keys are created
    • Implemented in middleware/auth.go

Read the full file on GitHub · 282 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 · 282 lines · 2,649 tokens per session scan A 5e26b2965c25

Subscribe to this mod's changes

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.