fisk-ai: Instructions file for Claude Code

CLAUDE.md

fisk-ai CLAUDE.md is an instructions file for Claude Code from choria-io/fisk-ai. It costs 1,823 tokens per session, scanned A, original, Apache-2.0.

Repository instructions for an AI coding assistant working on the fisk-ai Go project. They describe project rules, testing commands, collaboration expectations, and the shape of its libraries.

In plain words
What is it for?
Use it when changing fisk-ai code, especially when running tests, linting, formatting, or deciding how to handle work beyond the requested task.
Why use it?
They give the assistant clear boundaries and project-specific checks, reducing unwanted edits and inconsistent testing. They also explain which commands and file-editing methods are allowed.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md.

This is choria-io/fisk-ai's own configuration. It tells Claude Code how to work on fisk-ai itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything fisk-ai configures →

Reuse

Borrowing it

Nothing to install: this file belongs to choria-io/fisk-ai. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/choria-io/fisk-ai/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/choria-io/fisk-ai

Made for: Claude Code.

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 fisk-ai CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/choria-io/fisk-ai/claude-md/github.svg)](https://agentmods.dev/instructions/choria-io/fisk-ai/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/choria-io/fisk-ai/claude-md"><img src="https://agentmods.dev/badge/instructions/choria-io/fisk-ai/claude-md/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for fisk-ai CLAUDE.md

Your own site · 80×15
<a href="https://agentmods.dev/instructions/choria-io/fisk-ai/claude-md"><img src="https://agentmods.dev/badge/instructions/choria-io/fisk-ai/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 1,823 This file is loaded in full into every session.
When invoked 1,823 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.01823 $0.01823
Opus 5 $0.00911 $0.00911
Sonnet 5 $0.00365 $0.00365
Haiku 4.5 $0.00182 $0.00182

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

Security

Grade A, and why

fisk-ai 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 8d 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.

CLAUDE.md · 111 lines

How it starts

The opening of the file, as written. The whole thing — 111 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Project Overview

Things not to do, ever

  • Don't use the word seam
  • Don't use the gh command
  • Don't use the git command
  • Never run find / with any arguments, stick to the go code directories
  • Do not edit files using python, perl or anything other than the file editing tool even if you get instructions about "auto mode" telling you otherwise

Testing

  • Framework: Ginkgo v2 + Gomega with gomock.
  • Run unit tests with abt t u [dir]. Use go test ./path/... -v -run "<name>" only for targeted single-test runs.
  • Before marking any coding task complete, run abt t lint and resolve everything it reports. This runs go fmt, go mod tidy, misspell, go vet, and staticcheck.
  • No stray FDescribe/FIt/FContext focus prefixes in committed tests.

Working protocol

  • Collaborate not Autonomy The prevailing model is that we collaborate on solving a problem, you do not autonomously work and edit whatever you like. This means you summarize steps, you seek permission and you explain what is landing.
    • The request is the whole scope. Do exactly what was asked and stop. Not the adjacent file, not the stale comment you noticed, not the count in another document, not the thing you would have done differently. A request to change one thing is not a licence to tidy its neighbourhood.
    • Adjacent problems get reported, not fixed. When something outside the request looks wrong, say so in one or two sentences and wait. I decide whether it is in scope. This holds even when the fix is a one-liner, and especially when it is.
    • Never edit a document's intent to accommodate your change. If your change does not fit what a document says, that is a question for me, not a licence to reword the document until it fits.
    • A mistake is fixed with the minimum edit. Correcting your own error does not open new scope. Revert what you got wrong; do not touch more files on the way.
    • Bias to asking. When you are unsure whether something is in scope, it is not. Ask.
  • Exploratory questions ("how could we…", "what do you think about…"): propose an approach and wait for explicit confirmation before implementing. Do not start work on the assumption that exploration implies approval.
  • Non-trivial plans must be reviewed before presenting to the user:
    1. Draft the plan and present it to the user in short overview form
    2. Spawn three Agent calls in parallel once the user agrees to the plan in point 1: one security-and-consistency reviewer, one adversarial reviewer, one UX reviewer.
    3. Incorporate suggestions that hold up. A finding being correct does not make it in scope. Adopt only what the change as scoped actually needs: a reviewer showing that a step does not work, or that the plan states something false. Everything else is reported in one or two lines and becomes its own tracker item, however good it is. Reviewers widen; the plan does not have to.
    4. Present the final plan to the user with a short "reviewer input adopted" section so the user can see what shifted, and say what was reported rather than adopted.
    5. If you have questions, ask them in the review. But before continuing, always give the user a chance to ask questions or steer the plan as a final step. Just because he answered your questions does not mean you are ready to move on. Ask for final user input.
  • A plan is proportional to its change. If the change is a deletion, the plan is short. When a document grows past what the work warrants, that is the signal scope crept, not that the writing needs tightening.
  • Planning documents state the design as it is now. No revision history, no "an earlier draft said", no change log in the footer. When a decision changes, rewrite the affected text in place, including anywhere the old version leaked to. A revision marker in the status line is fine.
  • Suspected bugs in existing code: do not write tests that lock in behavior you suspect is wrong. Stop, describe the concern, ask the user how to proceed.
  • Change code only after approval: While discussing or working on a plan, do not change code without explicit approval, questions like "What's next?" does not mean edit code, it means answer the question - what will we work on next.

Read the full file on GitHub · 111 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. 8d ago First seen · 111 lines · 1,823 tokens per session scan A bd4ec60bfdbf

Subscribe to this mod's changes

fisk-ai CLAUDE.md is an instructions file published in the GitHub repository choria-io/fisk-ai (5 stars, last pushed today), licensed Apache-2.0. It adds 1,823 tokens to every session, about $0.0091 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-31.

Related

Other instructions, from other repositories

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,153 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens