docs: add find_path and get_file_signatures to CLAUDE.md query patterns

This commit is contained in:
Jarvis Prime
2026-03-05 04:23:40 +00:00
parent 3256e4e7c3
commit 4e98a09cff

View File

@@ -13,6 +13,8 @@ This project contains a knowledge graph of LLM-generated documentation for a Go
- "What's this project about?" → `get_repo_overview()` - "What's this project about?" → `get_repo_overview()`
- "What depends on X?" → `get_dependents("path/to/file.go")` - "What depends on X?" → `get_dependents("path/to/file.go")`
- "What does X depend on?" → `get_dependencies("path/to/file.go")` - "What does X depend on?" → `get_dependencies("path/to/file.go")`
- "How does X connect to Y?" → `find_path("file_a.go", "file_b.go")`
- "What functions does X export?" → `get_file_signatures("path/to/file.go")`
- "Find anything about routing" → `search_docs("routing")` - "Find anything about routing" → `search_docs("routing")`
- "What's outdated?" → `get_stale_docs()` - "What's outdated?" → `get_stale_docs()`
- "How big is the graph?" → `get_graph_stats()` - "How big is the graph?" → `get_graph_stats()`