state-machine-cat copilot-instructions.md

state-machine-cat copilot-instructions.md is an instructions file for GitHub Copilot from sverweij/state-machine-cat. It costs 831 tokens per session, scanned A, original, MIT.

Copilot instructions for sverweij/state-machine-cat, covering github copilot instructions for state-machine-cat, core concepts, code structure & conventions, writing tests and test structure.

Instructions file for GitHub Copilot

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/sverweij/state-machine-cat/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/sverweij/state-machine-cat

Made for: GitHub Copilot.

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 state-machine-cat copilot-instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/sverweij/state-machine-cat/copilot-instructions.svg)](https://agentmods.dev/instructions/sverweij/state-machine-cat/copilot-instructions)
Your own site
<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>
Per session 831 This file is loaded in full into every session.
When invoked 831 The same file — it is already loaded in full.
Security scan A 0 findings. 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.00831 $0.00831
Opus 5 $0.00415 $0.00415
Sonnet 5 $0.00166 $0.00166
Haiku 4.5 $0.00083 $0.00083

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

Security

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.

.github/copilot-instructions.md · 122 lines

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 .mts file 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
  • 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 /test directory mirroring the source structure
  • Name test files with .spec.mts extension (e.g., src/parse/index.mtstest/parse/index.spec.mts)

Parser Generation

  • Parser files are generated from .peggy grammar files in the src/parse directory
  • 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 /types directory or alongside their implementation

Read the full file on GitHub · 122 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. 2d ago First seen · 122 lines · 831 tokens per session scan A a04675d89c67

Subscribe to this mod's changes

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.