tree-sitter-fsharp AGENTS.md

tree-sitter-fsharp AGENTS.md is an instructions file for Codex, OpenCode from ionide/tree-sitter-fsharp. It costs 2,464 tokens per session, scanned A, original, MIT.

Instructions for improving the F# Tree-sitter parser, a tool that turns F# source code into a structured syntax tree. The project has a main parser and a related signature-file parser generated from it.

In plain words
What is it for?
Use them when adding F# syntax, writing parser tests, running the command line, or regenerating parser files.
Why use it?
They warn that changing the main grammar also affects the signature parser and explain how to regenerate both correctly.

Instructions file for CodexOpenCode

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/ionide/tree-sitter-fsharp/agents-md
Clone the repo
git clone --depth 1 https://github.com/ionide/tree-sitter-fsharp

Made for: Codex, OpenCode.

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 tree-sitter-fsharp AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/ionide/tree-sitter-fsharp/agents-md.svg)](https://agentmods.dev/instructions/ionide/tree-sitter-fsharp/agents-md)
Your own site
<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>
Per session 2,464 This file is loaded in full into every session.
When invoked 2,464 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.02464 $0.02464
Opus 5 $0.01232 $0.01232
Sonnet 5 $0.00493 $0.00493
Haiku 4.5 $0.00246 $0.00246

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

Security

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.

AGENTS.md · 237 lines

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:

  1. fsharp/ - Parses .fs and .fsx files (F# source and script files)
  2. fsharp_signature/ - Parses .fsi files (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.js changes the derived signature grammar too, even if you never open fsharp_signature/grammar.js.
  • Both fsharp/src/parser.c and fsharp_signature/src/parser.c must be regenerated after any change to fsharp/grammar.js. Forgetting the second one will fail CI's "parser matches grammar" check.
  • Use npm run generate (regenerates both) rather than a single tree-sitter generate invocation — see the workflow section below.

Each parser directory contains:

  • grammar.js - The grammar definition (written in JavaScript)
  • src/grammar.json - Generated grammar in JSON format
  • src/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 ....

Read the full file on GitHub · 237 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. 3d ago First seen · 237 lines · 2,464 tokens per session scan A c342f79e5d8c

Subscribe to this mod's changes

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.