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/xiaoconstantine/sgrep/agents-mdgit clone --depth 1 https://github.com/XiaoConstantine/sgrepWhat 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.00524 | $0.00524 |
| Opus 5 | $0.00262 | $0.00262 |
| Sonnet 5 | $0.00105 | $0.00105 |
| Haiku 4.5 | $0.00052 | $0.00052 |
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.
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
- Semantic discovery → Find relevant files/functions
- Structural search → Match patterns in those files
- 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
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.
- 2d ago First seen · 91 lines · 524 tokens per session scan A f9b125abe5ae
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.
Other instructions, from other repositories
subagent-mcp AGENTS.md
Instructions for Heretyc/subagent-mcp, covering repository agent instructions, project board law - binding, no exceptions, definitions, directives and fallback rule.
subagent-mcp CLAUDE.md
Instructions for Heretyc/subagent-mcp: Upserted by subagent-mcp init at user request; re-running init keeps it in sync.
subagent-mcp copilot-instructions.md
Instructions for Heretyc/subagent-mcp, covering copilot repository instructions, fallback rule, orchestration, read ladder and status and repair.
subagent-mcp GEMINI.md
Instructions for Heretyc/subagent-mcp: Upserted by subagent-mcp init at user request; re-running init keeps it in sync.
framework AGENTS.md
Instructions for ai-driven-dev/framework, covering agents.md, behavior, communication, action and memory management.
codemark GEMINI.md
Instructions for DanielCardonaRojas/codemark, covering development workflow and debugging with the tui logging system.