From autology
Traverses docs/ knowledge graph via search and wikilinks to answer project questions on decisions, architecture, conventions. Supports /autology:explore-knowledge overview, neighborhood, path.
npx claudepluginhub curt-park/autology --plugin autologyThis skill uses the workspace's default tool permissions.
Answer user questions about the project by traversing the autology knowledge graph.
Creates new Angular apps using Angular CLI with flags for routing, SSR, SCSS, prefixes, and AI config. Follows best practices for modern TypeScript/Angular development. Use when starting Angular projects.
Generates Angular code and provides architectural guidance for projects, components, services, reactivity with signals, forms, dependency injection, routing, SSR, ARIA accessibility, animations, Tailwind styling, testing, and CLI tooling.
Executes ctx7 CLI to fetch up-to-date library documentation, manage AI coding skills (install/search/generate/remove/suggest), and configure Context7 MCP. Useful for current API refs, skill handling, or agent setup.
Answer user questions about the project by traversing the autology knowledge graph. Search docs/ for relevant nodes, follow wikilinks to build context, and return rich answers grounded in documented decisions, conventions, and architecture.
Use explore instead of reading a doc directly when: the user asks a question (rather than requesting a specific doc), or when the topic may span multiple connected nodes.
When the user asks a question about the project (conventions, architecture, decisions, rationale):
docs/ for keywords from the questionThe <node> argument is a title-slug — the filename without the .md extension (e.g., redis-storage-decision for docs/redis-storage-decision.md).
/autology:explore-knowledge overview)Process:
docs/*.md, read each file's frontmatter and wikilinksOutput:
/autology:explore-knowledge <node>)Process:
[[slug]]docs/ for [[target-slug]] to find nodes that reference the targetOutput: node title, type, tags, and connections for each hop
/autology:explore-knowledge path A B)Process:
Output: A → [intermediate] → B with each hop labeled
/autology:explore-knowledge overview # graph overview
/autology:explore-knowledge <node> # neighborhood (2-hop BFS)
/autology:explore-knowledge path A B # shortest path
| Mistake | Fix |
|---|---|
| Answer from memory instead of docs | Always Read the actual doc nodes before answering |
| Stop at 1-hop neighbors | Follow wikilinks to 2-hop for richer context |
| Ignore node type and tags | Include type/tags in answers — they add classification context |
| Only follow outgoing links in neighborhood | Also grep docs/ for [[node-name]] to find nodes that link TO the target |
| Speculate when question has false premise | State what IS documented; never construct a rationale not found in docs |