Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/curt-park/autology/explore-knowledgenpx skills add Curt-Park/autology --skill explore-knowledgegit clone --depth 1 https://github.com/Curt-Park/autologyWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/curt-park/autology/explore-knowledge)<a href="https://agentmods.dev/skills/curt-park/autology/explore-knowledge"><img src="https://agentmods.dev/badge/skills/curt-park/autology/explore-knowledge.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00121 | $0.00856 |
| Opus 5 | $0.00060 | $0.00428 |
| Sonnet 5 | $0.00024 | $0.00171 |
| Haiku 4.5 | $0.00012 | $0.00086 |
Grade A, and why
explore-knowledge scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 75 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Overview
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.
Question-Answering (primary mode)
When the user asks a question about the project (conventions, architecture, decisions, rationale):
- Search: Grep
docs/for keywords from the question - Read: Read matched nodes (frontmatter + body)
- Follow: For each wikilink in matched nodes, read the linked node (1-hop)
- Synthesize: Answer citing specific docs (e.g., "per [[redis-storage-decision]]")
- False premise check: If the search finds no doc that supports the question's premise, state this explicitly — give the actual documented state instead. Do not speculate or construct a rationale that isn't in docs.
Graph Operations
The <node> argument is a title-slug — the filename without the .md extension (e.g., redis-storage-decision for docs/redis-storage-decision.md).
Overview (/autology:explore-knowledge overview)
Process:
- Glob
docs/*.md, read each file's frontmatter and wikilinks - Count nodes, links, and disconnected components
Output:
- Total node count, link count, component count
- Node type breakdown (count per type, e.g. 5 concept / 4 decision / 2 convention / 1 component)
- Top 5 hub nodes (most wikilink connections)
- Orphan node list (no incoming or outgoing links)
Neighborhood (/autology:explore-knowledge <node>)
Process:
- Read the target node
- Find all nodes that link to or from the target (1-hop):
- Outgoing: wikilinks in the target node's body →
[[slug]] - Incoming: grep
docs/for[[target-slug]]to find nodes that reference the target
- Outgoing: wikilinks in the target node's body →
- Find their connections (2-hop BFS)
What ships with it
2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago First seen · 75 lines · 121 tokens per session scan A 324e49365f37
explore-knowledge is a skill published in the GitHub repository Curt-Park/autology (24 stars, last pushed 5mo ago), licensed MIT. It adds 121 tokens to every session and 856 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
mama-context
Always-on background context injection from MAMA memory. Automatically surfaces relevant decisions when you work on code, without explicit invocation.
open-zk-kb
This skill should be used when the user asks to "store a note", "save this to the knowledge base", "remember this", "search my notes", "what do I know about X", "review stale notes", "how many notes", "KB stats", "mine sessions", "ingest a URL", "open Obsidian", "what template for a decision", or mentions knowledge…
vault
Search, read, write, and manage files in the Kept conversation vault. Use when the user asks about past conversations, wants to save notes, needs to find specific content, or wants to organize their vault.
kb-session-review
Review this session's knowledge base usage. Use when the user asks whether the KB was updated, what was captured, if anything was missed, or wants a session retrospective on knowledge capture quality.
n8n-agents
Design n8n AI agents the right way. Use when building or editing any @n8n/n8n-nodes-langchain. AI node — an AI Agent, LLM chain, Text Classifier, or Information Extractor — and whenever the user mentions AI agents, LLM with tools, tool calling, $fromAI, system prompts, agent memory, sessionId, structured/JSON output…
wiki-retrieve
Build and query a vault-local contextual BM25 retrieval index with optional multilingual Nomic cosine reranking; use for retrieve, hybrid retrieval, BM25, rerank, contextual retrieval, chunk search, vault search, semantic search, find relevant passages, or retrieval diagnostics. Derived caches stay under .vault-meta…