Skip to content

/agent-wiki-ingest

Ingest one or more agent trajectories (raw bob/claude traces or normalized JSON) into an agent-wiki end-to-end — convert, summarize, extract guidelines, synthesize skills, consolidate into clusters, and catalog. Use when you have a batch of traces to turn into a wiki in one pass.

shell
$ npx -y skills add AgentToolkit/altk-evolve --skill agent-wiki-ingest --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/agent-wiki-ingest
How auto-invocation works

Context preview

The summary Claude sees to decide when to auto-load this skill.

Ingest one or more agent trajectories (raw bob/claude traces or normalized JSON) into an agent-wiki end-to-end — convert, summarize, extract guidelines, synthesize skills, consolidate into clusters, and catalog. Use when you have a batch of traces to turn into a wiki in one pass.

SKILL.md

agent-wiki-ingest.SKILL.md
name: agent-wiki-ingest
description: Ingest one or more agent trajectories (raw bob/claude traces or normalized JSON) into an agent-wiki end-to-end — convert, summarize, extract guidelines, synthesize skills, consolidate into clusters, and catalog. Use when you have a batch of traces to turn into a wiki in one pass.

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

**Why parallel vs sequential.** Summarize writes one independent file per trace (`summaries/<sid>.md`) → safe to parallelize. Extract and synthesize both mutate shared state (`guidelines/_id_index.json`, `skills/_id_index.json`, `_config.yaml`, and the `_archived/` moves) → run them **one trace at a time** to avoid lost-update races.

Input

One of:

  • a list of trace file paths
  • a directory of traces (the skill globs it)
  • already-normalized analysis JSON files

…plus a target `--wiki-root` (e.g. `wiki-twobatch-skills`).

Detecting trace shape (Step 0 dispatch)

Read the top-level JSON keys of each input to classify it:

| Shape | Signature | Conversion | |---|---|---| | **bob session JSON** | top-level `sessionId` + `messages` | `bob-trace-converter` | | **claude stream-json** | JSONL lines with `{"type":"system"/"assistant"/"result"}` | `normalize_stream_json_transcripts.py` | | **normalized analysis JSON** | top-level `model` + `messages` + `metadata.id` | pass through (no conversion) |

Step 0 — Convert

Write converted output under a stable corpus dir: `trajectories/normalized/<label>/items/`.

**bob session JSON:**

NODE_OPTIONS='' node ~/.claude/skills/bob-trace-converter/scripts/convert_bob_trace.mjs \
  <trace.json> --out-dir trajectories/normalized/<label>/items --format both

> The `NODE_OPTIONS=''` prefix is required — some shells inject a `--require` > preload that breaks a bare `node` invocation. Strip it for this call.

The converter writes three files per trace; the ingest pipeline consumes the `*-openai-chat-completions.analysis.json` one.

**claude stream-json:**

uv run python explorations/agent-wiki/experiments/harness/normalize_stream_json_transcripts.py \
  --in <transcripts-dir> --out trajectories/normalized \
  --label <label> --user-prompt "<the task prompt>"

**Already normalized:** skip — use the path as-is.

Collect the resulting list of analysis-JSON paths; this is the trace set the rest of the pipeline iterates.

Step 1 — Bootstrap the wiki

If `<wiki-root>/_index.jsonl` does **not** exist:

mkdir -p <wiki-root>/{summaries,guidelines,tasks,skills}
uv run python explorations/agent-wiki/skills/scripts/build_agent_wiki.py \
  --wiki-root <wiki-root> catalog

The first `catalog` seeds `AGENTS.md` and `_config.yaml` from the bundled defaults and writes empty indexes. Skip this whole step if the wiki already exists — you're appending to it.

Piping JSON to the helper — avoid `echo`

Every `render-*` subcommand reads JSON on stdin. The `echo '<json>' | …` form in the per-pass skills **breaks when the payload has multi-line `content`/`narrative` fields** (literal newlines become invalid control characters in the shell-quoted string). Tell every subagent to write its payload to a temp file and `cat` it instead:

cat /tmp/ingest-payload.json | uv run python explorations/agent-wiki/skills/scripts/build_agent_wiki.py --wiki-root <wiki-root> render-guidelines

Step 1.5 — Skip already-processed traces (pre-flight)

This is what makes re-running the skill on the same source dir cheap. The helper's `render-*` subcommands skip-if-exists, but only *after* a subagent has already read the trace and synthesized its output — so the LLM cost is already spent. Filter **before** spawning any subagent.

For each normalized trace

Read more
Read it on GitHub ↗

Showing the first part of this file.

Ships withaltk-evolve

Blog posts: IBM announcement | Hugging Face blog Coding agents repeat the same mistakes because they start fresh every session. Evolve gives agents memory — they learn from what worked and what didn't, so each session is better than the last.

Get the whole plugin, auto-invoked

Other skills on altk-evolve.