| name | context_library_lookup |
| description | Locate and extract authoritative documentation from this repository's local context/vendor materials when they exist.
|
SKILL: Local Context Lookup for pyagent
Purpose
Use repository-local docs and vendored materials first, and avoid relying on stale memory.
Current repo status
- This repo currently does not include a
.context/ directory.
- If
.context/ is later added, treat it as the highest-priority source.
Workflow
- Search local docs first (
README.md, docs/, .scratch/projects/).
- If
.context/ exists, prioritize it over external sources.
- Use
rg -n to locate symbols and behavior quickly.
- Answer with exact file paths and line references.
Search patterns
rg -n "<symbol-or-topic>" README.md docs .scratch .context 2>/dev/null
rg --files | rg "README|docs|context|design|concept"