agent-wiki-ingest

agent-wiki-ingest is a skill for Claude Code, Codex from AgentToolkit/altk-evolve. It costs 68 tokens per session (3,495 once invoked), scanned A, original, Apache-2.0.

An end-to-end process for turning agent work traces into an agent wiki: a searchable collection of summaries, guidelines, skills, and comparisons.

In plain words
What is it for?
Use it to convert raw or normalized traces, summarize sessions, extract guidance, create skills, group related findings, and build a catalogue.
Why use it?
It removes the need to run many separate analysis steps and remember how to combine their outputs.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/agenttoolkit/altk-evolve/agent-wiki-ingest
Any agent
npx skills add AgentToolkit/altk-evolve --skill agent-wiki-ingest
Clone the repo
git clone --depth 1 https://github.com/AgentToolkit/altk-evolve

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for agent-wiki-ingest

README.md
[![agentmods](https://agentmods.dev/badge/skills/agenttoolkit/altk-evolve/agent-wiki-ingest.svg)](https://agentmods.dev/skills/agenttoolkit/altk-evolve/agent-wiki-ingest)
Your own site
<a href="https://agentmods.dev/skills/agenttoolkit/altk-evolve/agent-wiki-ingest"><img src="https://agentmods.dev/badge/skills/agenttoolkit/altk-evolve/agent-wiki-ingest.svg" alt="Measured on agentmods" height="20"></a>
Per session 68 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,495 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00068 $0.03495
Opus 5 $0.00034 $0.01747
Sonnet 5 $0.00014 $0.00699
Haiku 4.5 $0.00007 $0.00349

Measured 4d ago against content hash 5eff2f932eb6, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

agent-wiki-ingest 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.

explorations/agent-wiki/skills/agent-wiki-ingest/SKILL.md · 299 lines

How it starts

The opening of the file, as written. The whole thing — 299 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Agent Wiki — Ingest (end-to-end orchestrator)

Overview

This is the one-pass entry point for turning a batch of raw trajectories into a fully-built wiki. It orchestrates the rest of the agent-wiki family in the right order so no pass is skipped — in particular the cross-trajectory consolidation pass, which is easy to forget when each skill is invoked by hand.

You — the driving agent — run this by spawning one subagent per (trace × pass), not by doing the work inline. That keeps your own context small (you never load every trace's full JSON) and lets independent passes run in parallel. Each subagent acts as the corresponding single-purpose skill (agent-wiki-summarize, -extract-guidelines, -synthesize-skill, -consolidate-guidelines); this skill only sequences them and passes the per-trace adapter notes.

The pipeline:

0.  Convert    raw bob / claude traces → normalized analysis JSON   (skip if already normalized)
1.  Bootstrap  create wiki scaffold + seed catalog                  (skip if wiki exists)
1.5 Skip       drop traces whose summaries/<sid>.md already exists   [pre-flight — idempotency]
2.  Summarize  1 subagent / new-trace → summaries/<sid>.md          [PARALLEL]
3.  Extract    1 subagent / new-trace → guidelines/*.md (+tags)     [SEQUENTIAL]
4.  Synthesize 1 subagent / new-trace → skills/<slug>/ --archive-covered  [SEQUENTIAL]
5.  Consolidate 1 subagent over the whole corpus → cluster pages    [SINGLE — MANDATORY]
6.  Catalog    final bookkeeping → indexes, used-by, priority       [you run this directly]

Idempotent by default. Re-running on the same source dir reprocesses nothing: Step 1.5 filters out every trace that already has a summary page, so Steps 2–4 only touch genuinely new traces. The consolidate + catalog tail always runs (it's cheap and self-idempotent). To force a redo of an already- ingested trace, keep it in the list and pass --rewrite to its render-* calls.

Why this order. synthesize-skill runs before consolidate-guidelines so skills claim recipe-level territory first (and archive the atomics they cover via --archive-covered); consolidation then clusters only the surviving atomics. This matches the consolidate skill's own rule — "don't propose clusters that overlap a skill's territory."

Read the full file on GitHub · 299 lines

Changes

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.

  1. 4d ago First seen · 299 lines · 68 tokens per session scan A 5eff2f932eb6

Subscribe to this mod's changes

agent-wiki-ingest is a skill published in the GitHub repository AgentToolkit/altk-evolve (105 stars, last pushed yesterday), licensed Apache-2.0. It adds 68 tokens to every session and 3,495 once invoked, about $0.0003 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.

Related

Other skills, from other repositories

memory-to-skill

Turn workflows from your MemSearch memory into reusable skills. Use when the user asks to make/create/extract/distill a skill from what they just did or from past work, review skill candidates, install a distilled skill, or 'turn this into a skill'. Manages MemSearch procedural-memory candidates under…

zilliztech/memsearch · 82 tokens

project-model

When working in a codebase you've touched before, consult and update the persistent project model maintained by presence. The model lives at /.claude/presence/projects/ /model.md and contains terse notes about architecture, conventions, and verified facts. Use it BEFORE re-deriving things you've already learned, and…

sara-star-quant/presence · 86 tokens

done

End-of-session wrap-up — saves a session note to the hub, updates CONTEXT.md, and commits hub changes. Use this skill whenever the user types /done, /wrap, says "wrap up the session" / "save the session", or signals the conversation is ending and they want it documented. Also use when the user is closing a…

ManceRayder42/jarvis-os · 111 tokens

media-gen

Photoreal image + video generation and upscaling via fal.ai (pay-per-use, one API key, always-current models: Kling, Seedance, FLUX, nano-banana Pro, Topaz). Use for image-to-video ("animate this image", "turn this photo into a video"), photoreal video clips for websites/demos, hero video loops, upscaling…

ManceRayder42/jarvis-os · 216 tokens

research-notebook

Deep research on any topic via the NotebookLM CLI. Use whenever the user requests research on a topic, in any project, in any language. Triggers on phrases like "research this", "deep dive on", "do research on", "dig into", "find out about", "investigate", "look into", "research X for me". Creates or reuses a…

ManceRayder42/jarvis-os · 130 tokens

wiki-article

Write a wiki article capturing structure you learned about an active project in the user's hub. Use when you grepped or spawned Explore agents to understand a project and must record that knowledge before /done, or when the user asks to "write a wiki article", "document this in the wiki", or "add this to the wiki".

ManceRayder42/jarvis-os · 70 tokens