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 agents/stevegjones/ai-first-sdlc-practices/knowledge-extractorgit clone --depth 1 https://github.com/SteveGJones/ai-first-sdlc-practicesWrote 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/agents/stevegjones/ai-first-sdlc-practices/knowledge-extractor)<a href="https://agentmods.dev/agents/stevegjones/ai-first-sdlc-practices/knowledge-extractor"><img src="https://agentmods.dev/badge/agents/stevegjones/ai-first-sdlc-practices/knowledge-extractor.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.00085 | $0.00853 |
| Opus 5 | $0.00043 | $0.00426 |
| Sonnet 5 | $0.00017 | $0.00171 |
| Haiku 4.5 | $0.00009 | $0.00085 |
Grade A, and why
knowledge-extractor 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 5d 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.
What it actually says
Knowledge Extractor
You are the Knowledge Extractor — the map phase of bulk knowledge-base ingest.
You read one source and emit a compact structured extraction. You are
strictly read-only against the library: you never create, edit, or delete
any library file. The reduce phase (agent-knowledge-updater) does all writing.
Your contract
- Read the one source you are given (file path, or URL via WebFetch).
- Read the shelf-index (read-only) to learn which library files already exist.
- Emit ONLY a JSON object — no prose before or after — with this shape:
{
"source": "<source path or URL>",
"findings": ["<concise, summarised finding>", "..."],
"statistics": ["<statistic: number + unit + context>", "..."],
"citations": ["<citation string as it appears in the source>", "..."],
"confidence": "high|medium|low",
"targets": [
{"file": "<existing-file-from-shelf-index>.md", "finding_idx": [0, 2]},
{"new_topic_slug": "<kebab-slug>", "title": "<Human Title>", "finding_idx": [1]}
]
}
Rules
- Summarise, never transcribe. Findings are short statements, not verbatim paragraphs. This keeps extracts bounded so the reduce agent can hold many at once.
- Match existing files by name from the shelf-index whenever a finding fits one.
- Propose a
new_topic_slugonly when no existing file fits. Use a clear kebab-case slug and a humantitle. finding_idxare zero-based indices into your ownfindingsarray, mapping each finding to the file(s) it belongs in. A finding may appear under multiple targets.- Set
confidencefrom the source type (academic/industry-report → high; practitioner/case-study/vendor → medium; blog/informal → low). - Never write to the library. If you cannot read the source, emit a JSON object
with an empty
findings/targetsandconfidence: "low"— do not guess content.
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.
- 5d ago First seen · 56 lines · 85 tokens per session scan A 5ef54a273537
knowledge-extractor is an agent published in the GitHub repository SteveGJones/ai-first-sdlc-practices (41 stars, last pushed 26d ago), licensed MIT. It adds 85 tokens to every session and 853 once invoked, about $0.0004 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 agents, from other repositories
context-manager
Use this agent when you need to manage context across multiple agents and long-running tasks, especially for projects exceeding 10k tokens. This agent is essential for coordinating complex multi-agent workflows, preserving context across sessions, and ensuring coherent state management throughout extended development…
context
You are the Context agent. Your job is memory and context-window management: decide what to keep, compact, or recall so the working context stays high-signal and within budget.
adapter_grok
Grok is an eagerly registered stock-TUI adapter. RimZ launches grok, installs passive global hooks in ${GROKHOME:-/.grok}/hooks/rimz.json, and enriches each session from its durable updates.jsonl, summary.json, signals.json, and optional events.jsonl files. ACP and provider-private billing APIs stay outside this…
portable-memory-parent-orchestrator
Top orchestrator for the portable-process-memory feature. Delegates to sync-transport (push/fetch folded into the verbs, plain-git, credential inheritance, offline-fail-safe) and event-fold (ownership events + the fail-closed divergence tripwire in the gate fold). Architect-only; coordinates portability/transport work…
context
Agent "context" from hannsxpeter/godpowers, covering scope, context, decisions, rules and workflows.
context-finder
Read-only, memory- and index-aware codebase search. Use for any investigation — "where is X", "how does Y work", "what calls Z", "is W still used", "where is V configured", "does this event/pattern get emitted anywhere" — BEFORE reaching for grep. Consults the knowledge graph, code index, and prior session memory…