snyk-ls AGENTS.md

snyk-ls AGENTS.md is an instructions file for Codex, OpenCode from snyk/snyk-ls. It costs 1,338 tokens per session, scanned A, original, Apache-2.0.

Project instructions for Snyk's language server, a program that lets code editors communicate with tools that scan software for security problems. They cover its Go codebase, architecture, commands, and development process.

In plain words
What is it for?
Use them when developing or testing snyk-ls, its editor integrations, its security scanning features, or its related extension components.
Why use it?
They give an agent the project-specific context needed to build, run, test, and modify the language server 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/snyk/snyk-ls/agents-md
Clone the repo
git clone --depth 1 https://github.com/snyk/snyk-ls

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 snyk-ls AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/snyk/snyk-ls/agents-md.svg)](https://agentmods.dev/instructions/snyk/snyk-ls/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/snyk/snyk-ls/agents-md"><img src="https://agentmods.dev/badge/instructions/snyk/snyk-ls/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,338 This file is loaded in full into every session.
When invoked 1,338 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.1 $0.01338 $0.01338
Opus 5 $0.00669 $0.00669
Sonnet 5 $0.00268 $0.00268
Haiku 4.5 $0.00134 $0.00134

Measured 5d ago against content hash ee6d8d83c25f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

snyk-ls 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 5d 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 · 55 lines

How it starts

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

Project Overview

snyk-ls (snyk/snyk-ls) is the Snyk Language Server, a Go implementation of the Language Server Protocol (LSP) that IDE plugins (vscode-extension, snyk-intellij-plugin, snyk-eclipse-plugin, snyk-visual-studio-plugin) embed via stdio/JSON-RPC to run Snyk scans. It integrates Snyk Open Source (SCA), Snyk Code (SAST), Snyk Infrastructure as Code (IaC), and Snyk Secrets. OSS and IaC use the Snyk CLI as a data provider; Code uses the Snyk Code API. It also exposes an MCP server (mcp_extension/) and a go-application-framework workflow (ls_extension/) that lets the Snyk CLI invoke the language server as an extension.

Build & Development Commands

make tools               # install golangci-lint, go-licenses, pact, and git hooks
make build                # go build -> build/snyk-ls.<GOOS>.<GOARCH>
make run                  # go run main.go --reportErrors
make test                 # go test -timeout=90m -failfast ./... (+ make test-js)
make test-integ           # alias for INTEG_TESTS=1 make test
make test-smoke           # SMOKE_TESTS=1, all 4 shards
make test-all             # INTEG_TESTS=1 SMOKE_TESTS=1 + all smoke shards
make test-coverage        # adds -cover -coverprofile=build/coverage.out
make test-live PKG=./application/server/ ARGS="-race"   # stream failures as they happen
make lint                 # golangci-lint run ./...
make lint-fix             # go fmt + golangci-lint run --fix
make generate             # go generate ./... (regenerates gomock mocks)
make verify-generate      # fails if `make generate` produces a diff

Tests use testify with a table-driven style (tests := []struct{...}). INTEG_TESTS=1/SMOKE_TESTS=1 (plus SMOKE_SHARD_1..4) gate integration/smoke stages inside make test.

Architecture

  • main.go is the entry point: it parses flags, initializes the go-application-framework engine/config, and calls server.Start(engine, ts).
  • application/ handles process wiring: application/server (LSP/JSON-RPC handlers), application/di (dependency injection), application/config, application/codeaction, application/watcher, application/entrypoint.
  • domain/ holds core business logic: domain/ide (workspace, hover, codelens, treeview, initialize, all LSP-facing) and domain/snyk (scanner, persistence, remediation, delta, for scan orchestration).
  • infrastructure/ contains product/backend integrations: code, oss, iac, secrets, cli (Snyk CLI executor), authentication, learn, analytics, snyk_api, featureflag, filesystem, sentry.
  • internal/ holds shared utilities: types (core interfaces/mocks), product (product enum), uri, progress, notification, logging, mcp, storage, vcs, fflags, testsupport/testutil.
  • ast/ does lightweight source parsing (e.g. ast/maven/parser.go) used for range/dependency resolution.
  • ls_extension/ is a go-application-framework workflow letting the Snyk CLI invoke the LS as an extension (WORKFLOWID_LS).
  • mcp_extension/ is an MCP server extension exposing Snyk scanning to MCP clients.

Read the full file on GitHub · 55 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. 5d ago First seen · 55 lines · 1,338 tokens per session scan A ee6d8d83c25f

Subscribe to this mod's changes

snyk-ls AGENTS.md is an instructions file published in the GitHub repository snyk/snyk-ls (83 stars, last pushed today), licensed Apache-2.0. It adds 1,338 tokens to every session, about $0.0067 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.