From agentboard
Always-on semantic search over the current project. Use it before editing unfamiliar code, when looking for callers/callees, when checking how a similar feature is already implemented, or when you need to know what depends on a file before changing it.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agentboard:codebase-ragThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Semantic search over whatever project you're currently working in. The
Semantic search over whatever project you're currently working in. The server detects the project root, keeps an index in a per-machine cache, and watches the filesystem so the index stays current as files change.
rag_search(query, num_results=5, source_type="all")Semantic search across constraints, patterns, and code. Returns ranked results with file paths and relevance scores.
source_type is one of "all" (default), "docs" (constraints +
patterns), "code" (source only), or "constraints" (rules only).
rag_query_impact(file_path, num_similar=5)Show what depends on a file: its exports, the files that import it, and semantically similar files that may need coordinated changes. Pass the path relative to the project root, with forward slashes.
rag_search("what you're about to do") — read the top hits.rag_query_impact("path/to/file").The very first query in a project that's never been indexed takes a few seconds while the index builds. After that, queries are sub-second and the index stays fresh on its own.
npx claudepluginhub maxcogar/agent-armory --plugin agentboardCreates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.