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/probelabs/probe/claude-mdgit clone --depth 1 https://github.com/probelabs/probeWhat 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.09231 | $0.09231 |
| Opus 5 | $0.04616 | $0.04616 |
| Sonnet 5 | $0.01846 | $0.01846 |
| Haiku 4.5 | $0.00923 | $0.00923 |
Grade D, and why
probe CLAUDE.md scanned grade D with 2 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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
chmod 700 ~/Library/Caches/probe/lsp/workspaces/ Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf ~/Library/Caches/probe/lsp/workspaces/*/cache.db How it starts
The opening of the file, as written. The whole thing — 1,120 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with the probe codebase.
IMPORTANT: ALWAYS use code-search-agent to navigate the codebase and ask questions about it.
Project Overview
Probe is an AI-friendly, fully local, semantic code search tool built in Rust that combines ripgrep's speed with tree-sitter's AST parsing. It's designed to power AI coding assistants with precise, context-aware code search and extraction capabilities.
Development Guidelines
1. Testing Requirements
EVERY feature, bug fix, or change MUST include tests:
- Unit tests for new functions/modules (in same file using
#[cfg(test)]) - Integration tests for cross-module functionality (in
tests/directory) - CLI tests for command-line interface changes
- Property-based tests with
proptestfor complex logic - Test coverage for edge cases and error conditions
Before committing:
make test # Run all tests
make test-unit # Run unit tests only
make test-cli # Run CLI tests
make test-property # Run property-based tests
LSP Integration Testing:
# Run specific LSP tests with mock servers
cargo test -p lsp-daemon mock_lsp_server_test --lib -- --nocapture
cargo test -p lsp-daemon core_lsp_operation_tests --lib -- --nocapture
cargo test -p lsp-daemon lsp_symbol_resolution_tests --lib -- --nocapture
# Run all LSP-related integration tests
cargo test -p lsp-daemon --test "*lsp*" -- --nocapture
LSP Mock Server Infrastructure:
The project includes comprehensive mock LSP servers for testing (lsp-daemon/tests/mock_lsp/):
- 4 Language Servers: rust-analyzer, pylsp, gopls, TypeScript server
- Realistic Scenarios: Success, empty arrays, null responses, errors, timeouts, sequences
- Full LSP Protocol: Call hierarchy, references, definitions, symbols, hover
- Edge Case Testing: Validates proper handling of empty vs null responses
- Database Integration: Tests actual persistence and caching of LSP data
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.
- 3d ago First seen · 1,120 lines · 9,231 tokens per session scan D d65f84fd974d
probe CLAUDE.md is an instructions file published in the GitHub repository probelabs/probe (695 stars, last pushed 3d ago), licensed Apache-2.0. It adds 9,231 tokens to every session, about $0.0462 per session on Opus 5. A static security scan graded it D with 2 findings (asks for root, recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
graphify AGENTS.md
AGENTS.md instructions for Graphify-Labs/graphify: This project has a graphify knowledge graph at graphify-out/.
coldstart CLAUDE.md
Instructions for AkashGoenka/coldstart: Lightweight navigation layer for AI agents. Answers one question: which files are relevant to this task? Fast static index over file paths, symbol names, and exports — queried via two operations, find (ranked file paths matched against declared names: filenames, path segments…
repolayer CLAUDE.md
Instructions for zhousiyao03-cyber/repolayer, covering claude.md, project, common commands, build / test and end-to-end usage.
astra copilot-instructions.md
Copilot instructions for nimelkot/astra: Astra uses the official MCP Python SDK and targets Python 3.10+. The MCP server is stdio-based and exposes the same core services as the CLI.
weaviate CLAUDE.md
Claude Code instructions for weaviate/weaviate, covering claude.md, no bug is ever out of scope, build & run, build the binary (cgoenabled=0, static linking) and build debug binary (with delve support).
repobrain copilot-instructions.md
Copilot instructions for study8677/repobrain, covering github copilot bootstrap instructions and hard rule — query the repobrain hub first.