From agent-knowledge
Orchestrates multi-tool patterns for BK knowledge retrieval and management, including progressive library exploration, indexing waits, detail strategies, and cross-library comparisons.
npx claudepluginhub chris-xperimntl/agent-knowledgeThis skill uses the workspace's default tool permissions.
Multi-tool patterns for efficient knowledge retrieval and management.
Searches indexed library sources using vector, FTS, or hybrid modes with options for stores, limits, thresholds, and detail levels to find code implementations.
Guides doc lookup and web search workflow for investigating libraries, APIs, or unfamiliar patterns before implementation.
Prevents silent decimal mismatch bugs in EVM ERC-20 tokens via runtime decimals lookup, chain-aware caching, bridged-token handling, and normalization. For DeFi bots, dashboards using Python/Web3, TypeScript/ethers, Solidity.
Share bugs, ideas, or general feedback.
Multi-tool patterns for efficient knowledge retrieval and management.
1. list_stores() → identify target store
2. search(query, detail='minimal', stores=[target]) → scan summaries
3. get_full_context(top_result_ids) → deep dive on best matches
1. create_store(url, name) → job_id
2. check_job_status(job_id) → poll every 15-30s
3. When completed: search(query, stores=[name]) → verify
1. search(query, detail='minimal', limit=20) → ~100 tokens/result
2. Filter by score (>0.7 = strong match)
3. get_full_context(top_3_ids) → saves ~80% context
4. If nothing relevant: refine query and retry
1. search(query, limit=10) → searches ALL stores
2. Review store distribution
3. Narrow: search(query, stores=['lib1', 'lib2'], limit=15)
Detailed examples and error recovery: references/examples.md