skill — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited skill (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Query any code repository using natural language. Built on vectorless RAG - uses LLM reasoning instead of vector similarity.
cd /path/to/Oh-Code-Rag
pip install -e . export OPENAI_API_KEY="sk-..."
# or ANTHROPIC_API_KEYBefore querying, you need to index the repository:
./scripts/codetree.sh index /path/to/repoThis creates a .codetree/index.json in the repo.
Ask questions about the codebase:
./scripts/codetree.sh query /path/to/repo "How does authentication work?"Display the structure of the codebase:
./scripts/codetree.sh tree /path/to/repoFind all references to a function, class, or variable:
./scripts/codetree.sh find /path/to/repo "UserService"Show repository statistics:
./scripts/codetree.sh stats /path/to/repo# First, index the project
./scripts/codetree.sh index ~/projects/my-app
# Ask about architecture
./scripts/codetree.sh query ~/projects/my-app "What's the overall architecture?"
# Ask about specific functionality
./scripts/codetree.sh query ~/projects/my-app "How does the payment system work?"# Find all usages of a function
./scripts/codetree.sh find ~/projects/my-app "processOrder"
# Trace the code flow
./scripts/codetree.sh query ~/projects/my-app "What happens when a user clicks checkout?"# Show the project structure
./scripts/codetree.sh tree ~/projects/my-app
# Get statistics
./scripts/codetree.sh stats ~/projects/my-app
# Ask where to add new features
./scripts/codetree.sh query ~/projects/my-app "Where should I add a new API endpoint?".codetree/index.json inside each repoindex after significant code changes~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.