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/ionide/tree-sitter-fsharp/agents-mdgit clone --depth 1 https://github.com/ionide/tree-sitter-fsharpWrote 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/ionide/tree-sitter-fsharp/agents-md)<a href="https://agentmods.dev/instructions/ionide/tree-sitter-fsharp/agents-md"><img src="https://agentmods.dev/badge/instructions/ionide/tree-sitter-fsharp/agents-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.02464 | $0.02464 |
| Opus 5 | $0.01232 | $0.01232 |
| Sonnet 5 | $0.00493 | $0.00493 |
| Haiku 4.5 | $0.00246 | $0.00246 |
Grade A, and why
tree-sitter-fsharp AGENTS.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 3d 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 — 237 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Improving the F# Tree-sitter Parser
This document explains how to add new language features to the F# parser.
Project Structure
This project contains two parsers:
fsharp/- Parses.fsand.fsxfiles (F# source and script files)fsharp_signature/- Parses.fsifiles (F# signature files)
These are not independent. fsharp_signature/grammar.js starts with
grammar(require("../fsharp/grammar"), { ... }) — it extends the base
grammar and overrides/adds a small number of rules. Consequences you must
internalize:
- A change to
fsharp/grammar.jschanges the derived signature grammar too, even if you never openfsharp_signature/grammar.js. - Both
fsharp/src/parser.candfsharp_signature/src/parser.cmust be regenerated after any change tofsharp/grammar.js. Forgetting the second one will fail CI's "parser matches grammar" check. - Use
npm run generate(regenerates both) rather than a singletree-sitter generateinvocation — see the workflow section below.
Each parser directory contains:
grammar.js- The grammar definition (written in JavaScript)src/grammar.json- Generated grammar in JSON formatsrc/parser.c- Generated C parser code (never edit this file directly)src/scanner.c- Thin per-parser shim that#includes the shared scanner
The real external scanner logic lives in a single shared header at
common/scanner.h. Both fsharp/src/scanner.c and
fsharp_signature/src/scanner.c are just three-function shims that delegate
to functions defined in that header. If you need to change tokenization
behavior (indent/dedent, keyword handling, string interpolation, etc.),
edit common/scanner.h — never the per-parser scanner.c shim.
Running the CLI
The tree-sitter CLI is installed as a local devDependency
(node_modules/.bin/tree-sitter), not globally. Invoke it with
npx tree-sitter <command>, which resolves the local binary
automatically. All examples in this document use npx tree-sitter ....
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.
- 3d ago First seen · 237 lines · 2,464 tokens per session scan A c342f79e5d8c
tree-sitter-fsharp AGENTS.md is an instructions file published in the GitHub repository ionide/tree-sitter-fsharp (96 stars, last pushed 17d ago), licensed MIT. It adds 2,464 tokens to every session, about $0.0123 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
sqlglot AGENTS.md
Instructions for tobymao/sqlglot, covering contributing to sqlglot, about sqlglot, development commands, installation and basic installation.
vera AGENTS.md
Instructions for aallan/vera, covering agents.md — instructions for ai agents, for agents writing vera code, conformance programs as reference, workflow and commands.
ariadne AGENTS.md
Instructions for CRJFisher/ariadne, covering guidelines, project layout / intention tree, refactoring ethos, documentation style: canonical and self-contained and scope.
ariadne CLAUDE.md
Instructions for CRJFisher/ariadne, covering guidelines, goals, project layout / intention tree, refactoring ethos and processing pipeline.
oni-comb-rs CLAUDE.md
Claude Code instructions for j5ik2o/oni-comb-rs, a project described as: A parser-monad combinator library for Rust — named after Oni-Kombu (鬼昆布).
oni-comb-rs GEMINI.md
Gemini CLI instructions for j5ik2o/oni-comb-rs, a project described as: A parser-monad combinator library for Rust — named after Oni-Kombu (鬼昆布).