kmp-lsp AGENTS.md

kmp-lsp AGENTS.md is an instructions file for Codex, OpenCode from Hessesian/kmp-lsp. It costs 1,131 tokens per session, scanned A, original, MIT.

AGENTS.md instructions for Hessesian/kmp-lsp, covering agents.md — kmp-lsp project instructions, workflow, code quality, rust-specific and key files.

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/hessesian/kmp-lsp/agents-md
Clone the repo
git clone --depth 1 https://github.com/Hessesian/kmp-lsp

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 kmp-lsp AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/hessesian/kmp-lsp/agents-md.svg)](https://agentmods.dev/instructions/hessesian/kmp-lsp/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/hessesian/kmp-lsp/agents-md"><img src="https://agentmods.dev/badge/instructions/hessesian/kmp-lsp/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,131 This file is loaded in full into every session.
When invoked 1,131 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.01131 $0.01131
Opus 5 $0.00566 $0.00566
Sonnet 5 $0.00226 $0.00226
Haiku 4.5 $0.00113 $0.00113

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

Security

Grade A, and why

kmp-lsp 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 today.

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 · 56 lines

How it starts

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

AGENTS.md — kmp-lsp Project Instructions

kmp-lsp is a Kotlin Language Server Protocol implementation in Rust. The binary is kmp-lsp.

Deep reference material (source layout, architecture patterns, coding guidelines with examples, test conventions, Serena MCP workflow — ~800 lines) lives in docs/agent-reference.md. Load that on-demand when you need it. This file stays lean: behavioral rules only.

Workflow

  • Never commit directly to main. Always create a feature branch, push, and open a PR.
  • PR merge workflow: commit → push → resolve ALL review threads via gh api graphql resolveReviewThread → re-request review → gh pr merge --squash --delete-branch.
  • Stacked PRs: merge base first, rebase dependent, then cargo build && cargo test on main after.
  • After merging, install the binary: cargo install --path . --force.
  • Run tests after every change: cargo test. All tests must pass.
  • Run clippy after every change: cargo clippy -- -D warnings. Must be clean.
  • Use the Serena LSP tools (mcp__serena__*) for symbol navigation, reference tracing (find_referencing_symbols is the zero-references check before any deletion), and surgical edits (replace_content/replace_symbol_body) — not grep/sed. Working in a git worktree? Call mcp__serena__activate_project with the worktree path FIRST — Serena's active project defaults to the main checkout, so unactivated symbolic edits land in the wrong tree. One active project at a time: parallel agents in different worktrees must not both use Serena. rust-analyzer diagnostics can lag mid-refactor; cargo test/clippy are the only authority.

Code Quality

  • Rust types model behaviour — code should be obvious in retrospect.
  • Reach for a type before reaching for a comment. When you feel the need to explain control flow — why a fallback exists, what a None/empty result means, which order branches run, whether a string is still a placeholder — first ask whether an enum, newtype, or struct would encode that meaning so the compiler carries it and the signature tells the story. Prefer enum Outcome { Resolved(T), KeepWalking } over Option<T> + a comment; prefer a ResolvedType that distinguishes concrete vs. generic over an is_generic(&str) sniff. Keep comments for irreducible domain knowledge (e.g. why apply means this = receiver), not for scaffolding the types should hold.
  • No abbreviated names. Never use single-letter or short variable names like s, c, ty, rt, sym, loc, p, diags. Use full words: string, char, type, receiver, symbol, location, package, diagnostics.
  • Explicit over clever. Split compound boolean expressions into named variables. Avoid chained combinators when a simple conditional is clearer.
  • Every fix must include a test. If a bug slips through, the test should have caught it.
  • Write tests that prove correctness, not just verify happy-path. Include competing/misleading definitions to catch regressions.
  • and in a function name means it's doing two things. Split into two functions.
  • Section comments inside a function body signal a split. Each phase becomes a named helper.

Read the full file on GitHub · 56 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. today First seen · 56 lines · 1,131 tokens per session scan A d0b29ee73bcb

Subscribe to this mod's changes

kmp-lsp AGENTS.md is an instructions file published in the GitHub repository Hessesian/kmp-lsp (180 stars, last pushed today), licensed MIT. It adds 1,131 tokens to every session, about $0.0057 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-04.