sgrep AGENTS.md

Instructions for sgrep, a semantic code-search tool that finds code by meaning rather than only exact words. It complements ripgrep for exact text and ast-grep for code structure.

In plain words
What is it for?
Building and testing sgrep, finding code by intent, switching to structural or exact searches, viewing concise or contextual results, and requesting JSON output.
Why use it?
They give coding agents a repeatable way to discover relevant code when they do not know the exact filenames or symbols.

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/xiaoconstantine/sgrep/agents-md
Clone the repo
git clone --depth 1 https://github.com/XiaoConstantine/sgrep

Made for: Codex, OpenCode.

Per session 524 This file is loaded in full into every session.
When invoked 524 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.00524 $0.00524
Opus 5 $0.00262 $0.00262
Sonnet 5 $0.00105 $0.00105
Haiku 4.5 $0.00052 $0.00052

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

Security

Grade A, and why

sgrep 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 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.

AGENTS.md · 91 lines

How it starts

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

sgrep - Agent Integration Guide

Build & Test

# Build
go build -o sgrep ./cmd/sgrep

# Test
go test ./...

# Lint (installs the pinned golangci-lint with this module's Go toolchain)
make lint

# Install
go install ./cmd/sgrep

Setup

# Install llama.cpp (macOS)
brew install llama.cpp

# Download embedding model and verify installation
sgrep setup

The embedding server auto-starts when needed. No manual server management required.

Usage for Coding Agents

sgrep is designed to complement ripgrep and ast-grep:

Tool Use Case Example
sgrep Find by intent sgrep "authentication logic"
ast-grep Structural patterns sg -p '$fn($ctx, $err)'
ripgrep Exact strings rg "JWT_SECRET"

Recommended Workflow

  1. Semantic discovery → Find relevant files/functions
  2. Structural search → Match patterns in those files
  3. Exact search → Find specific symbols

Output Modes

# Minimal (for token efficiency)
sgrep -q "error handling"
# → auth/handler.go:45-67

# With context
sgrep -c "error handling"
# → auth/handler.go:45-67
#     func handleError(err error) {
#       ...

# JSON (for programmatic use)
sgrep --json "error handling"
# → [{"file":"auth/handler.go","start":45,"end":67,"score":0.12}]

Server Management

The embedding server runs as a daemon (auto-started, stays running):

sgrep server status   # Check if running
sgrep server stop     # Stop daemon
sgrep server start    # Manually start

Configuration

SGREP_HOME=~/.sgrep                   # Data directory
SGREP_ENDPOINT=http://localhost:8080  # Override server URL
SGREP_PORT=8080                       # Server port
SGREP_DIMS=768                        # Embedding dimensions

Code Style

  • Single package per directory
  • No external LLM dependencies (local llama.cpp only)
  • Minimal output by default (token-efficient)
  • JSON output for agent parsing
  • Use _ = fn() for intentionally ignored errors

Read the full file on GitHub · 91 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 · 91 lines · 524 tokens per session scan A f9b125abe5ae

Subscribe to this mod's changes

sgrep AGENTS.md is an instructions file published in the GitHub repository XiaoConstantine/sgrep (15 stars, last pushed 10d ago), licensed Apache-2.0. It adds 524 tokens to every session, about $0.0026 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.