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/denoslab/starfish-fl/claude-mdgit clone --depth 1 https://github.com/denoslab/starfish-flWrote 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/denoslab/starfish-fl/claude-md)<a href="https://agentmods.dev/instructions/denoslab/starfish-fl/claude-md"><img src="https://agentmods.dev/badge/instructions/denoslab/starfish-fl/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.01838 | $0.01838 |
| Opus 5 | $0.00919 | $0.00919 |
| Sonnet 5 | $0.00368 | $0.00368 |
| Haiku 4.5 | $0.00184 | $0.00184 |
Grade A, and why
starfish-fl 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 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.
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.
How it starts
The opening of the file, as written. The whole thing — 174 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.
Repository Overview
Starfish-FL is an agentic federated learning (FL) framework organized as a mono repo with three components:
controller/— Django app installed on every site; handles local ML training, Celery task queuing, and a web UI (port 8001); includes optional LLM agent hooks (controller/starfish/controller/agent/) for per-round summaries, convergence detection, outlier flagging, and failure triagerouter/— Django REST Framework app acting as central coordination server; manages global state, message forwarding, and artifact storage (port 8000); includes an embedded LLM agent module (router/starfish/agent/) for adaptive aggregation, smart scheduling, and failure triagecli/— Typer-based CLI (starfishcommand) that replicates web portal functionality for human and AI agent use; includes an LLM agent module (cli/starfish_cli/agent/) for autonomous FL orchestration via Claude tool use, with an autonomous experiment mode that can analyze datasets, auto-select models, run experiments end-to-end, interpret results, and iteratively refineworkbench/— Docker Compose orchestration for running all components together in development
Commands
Development Setup (Full Stack)
cd workbench
make build # Build all Docker images
make up # Start all services (detached)
make stop # Stop services
make down # Stop and remove containers
First-time initialization after make up:
./init_db.sh # Create PostgreSQL database
docker-compose exec -it router bash
# Inside container:
poetry run python3 manage.py migrate
poetry run python3 manage.py createsuperuser
Running Tests
# Router (inside container or local venv)
cd router && python3 manage.py test
# Controller
cd controller && python3 manage.py test
# Via Docker
docker exec -it starfish-router poetry run python3 manage.py test
docker exec -it starfish-controller poetry run python3 manage.py test
# CLI Agent tests
cd cli && poetry install --extras agent && poetry run pytest tests/ -v
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.
- 5d ago First seen · 174 lines · 1,838 tokens per session scan A ca7b646e0679
starfish-fl CLAUDE.md is an instructions file published in the GitHub repository denoslab/starfish-fl (11 stars, last pushed 2d ago), licensed Apache-2.0. It adds 1,838 tokens to every session, about $0.0092 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.
Other instructions, from other repositories
agent-rules testing.instructions.md
Instructions for lirantal/agent-rules, covering testing guidelines for node.js applications, general testing principles, guiding principles, descriptive test naming (three-part structure) and structure tests by the aaa pattern.
turbo-flow CLAUDE.md
Claude Code instructions for marcuspat/turbo-flow, covering claude.md — turbo flow, what this repo is, key files and conventions.
agent-rules child-process.instructions.md
Instructions for lirantal/agent-rules, covering system processes secure coding guidelines, your mission and spawning system processes.
bdb-dev-optimized-agent-skills CLAUDE.md
Claude Code instructions for hybridlabor-api/bdb-dev-optimized-agent-skills, covering bdb agent skills — global instructions, docs & pipeline, how many agents, safety gate — mechanically enforced, not advisory and non-negotiable.
skill-bill CLAUDE.md
Claude Code instructions for oila-gmbh/skill-bill, a project described as: SkillBill packages your engineering judgment into governed skills, then uses a durable Kotlin runtime to ensure agents actually execute that process consistently, resumably, and with bounded context.
orc AGENTS.md
AGENTS.md instructions for spencermarx/orc, covering openspec instructions, landing the plane (session completion) and open code review instructions.