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/sverweij/state-machine-cat/copilot-instructionsgit clone --depth 1 https://github.com/sverweij/state-machine-catWrote 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/sverweij/state-machine-cat/copilot-instructions)<a href="https://agentmods.dev/instructions/sverweij/state-machine-cat/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/sverweij/state-machine-cat/copilot-instructions.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.00831 | $0.00831 |
| Opus 5 | $0.00415 | $0.00415 |
| Sonnet 5 | $0.00166 | $0.00166 |
| Haiku 4.5 | $0.00083 | $0.00083 |
Grade A, and why
state-machine-cat copilot-instructions.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 2d 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 — 122 lines — stays where its author put it; the contents beside it link to each section on GitHub.
GitHub Copilot Instructions for state-machine-cat
These instructions guide GitHub Copilot on how to generate and modify code for the state-machine-cat project.
Core Concepts
State Machine Cat is a tool for visualizing state charts. It parses state machine descriptions and renders them as diagrams.
Code Structure & Conventions
-
TypeScript/ESM Module System: Use
.mtsfile extension for TypeScript files -
Import Style:
- Use
import { x } from "node:module";for Node.js built-ins - Use
import x from "#subfolder/module.mjs";for internal imports (using the#prefix) - Use
import type { IType } from "#types/file.mjs";for types
- Use
-
Formatting:
- Use double quotes for strings
- Use semicolons at statement ends
- Use trailing commas in multi-line expressions
-
TypeScript: Use strict typing with TypeScript interfaces prefixed with
I(e.g.,IStateMachine)
Writing Tests
Tests must be created for all new functionality using Mocha and Node's assert module.
Test Structure
import { deepEqual, equal, throws } from "node:assert/strict";
import myFunction from "#my-module.mjs";
describe("my feature", () => {
it("should do something specific", () => {
equal(myFunction("input"), "expected output");
});
it("should throw on invalid input", () => {
throws(() => myFunction(null), /Error message pattern/);
});
});
Test File Naming
- Place tests in the
/testdirectory mirroring the source structure - Name test files with
.spec.mtsextension (e.g.,src/parse/index.mts→test/parse/index.spec.mts)
Parser Generation
- Parser files are generated from
.peggygrammar files in thesrc/parsedirectory - The build process (
node --run=build) handles parser generation using the Peggy parser generator
Type Declarations
- Use interfaces for complex types
- Prefix interfaces with
I(e.g.,IStateMachine,IRenderOptions) - Place type definitions in the
/typesdirectory or alongside their implementation
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.
- 2d ago First seen · 122 lines · 831 tokens per session scan A a04675d89c67
state-machine-cat copilot-instructions.md is an instructions file published in the GitHub repository sverweij/state-machine-cat (867 stars, last pushed 23d ago), licensed MIT. It adds 831 tokens to every session, about $0.0042 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-09-01.
Other instructions, from other repositories
uml-mcp AGENTS.md
AGENTS.md instructions for antoinebou12/uml-mcp, covering learned user preferences and learned workspace facts.
sdlc-graph-engineering CLAUDE.md
Instructions for RonMizrahi/sdlc-graph-engineering, covering sdlc-graph-engineering — repository guide, sources of truth, changing the skill — required, authoring rules and the skill's own standard, applied to itself.
roboco CLAUDE.md
Claude Code instructions for rennf93/roboco, covering claude.md, licensing, project overview, core architecture and hardware infrastructure.
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).
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.
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.