Agent skill recommender. Input a user need, task description, or existing skill list; output best matching skills, install rationale, duplicate/merge candida...
Coding
Agent Experience Graph
Try itUse when an agent should learn from prior task-solving traces, recommend tools or skills for a new decomposed task, record reusable execution experience, or...
What it does
Use when an agent should learn from prior task-solving traces, recommend tools or skills for a new decomposed task, record reusable execution experience, or...
The skill document
Agent Experience Graph
This is a portable agent capability, not a runtime-specific plugin. It should work in any agent environment that can read markdown instructions and run Python 3 scripts. Runtime-specific metadata lives outside this file:
capability.json: neutral capability manifest for launchers, registries, and importersagents/openai.yaml: Codex UI metadataadapters/README.md: install notes for Codex, Claude Code, OpenClaw, Hermes, and generic agents
Use this skill to turn prior agent runs into reusable guidance for new tasks. The core loop is:
- Describe the current task and likely subtasks.
- Retrieve similar solved traces.
- Recommend skills, tools, workflow patterns, and warnings.
- Apply only the recommendations that fit the current constraints.
- After the task, record a sanitized trace so future agents can learn from it.
Quick Workflow
Create a query with a task and optional subtasks:
{
"task": "Build an ingestion pipeline for markdown API docs",
"subtasks": [
{"description": "Parse markdown into structured sections"},
{"description": "Chunk content for coding-agent retrieval"},
{"description": "Evaluate extracted endpoint metadata"}
]
}
Run the bundled recommender against a trace file:
python3 scripts/recommend_traces.py \
--traces assets/example_traces.json \
--query query.json
Use the output as evidence, not as an order. Prefer recommendations with:
- successful or partially successful outcomes
- matched subtasks, not only matched task titles
- clear lessons or failure notes
- skills/tools that are available in the current environment
Recording A Trace
After finishing a task, create a compact trace with no secrets, credentials, private user data, or proprietary snippets. Keep enough detail to support future retrieval:
{
"id": "trace-2026-05-18-doc-ingestion",
"task": "Build a structured ingestion demo for API documentation",
"outcome": "success",
"subtasks": [
{
"description": "Normalize markdown into sections",
"skills": ["structured-ingestion"],
"tools": ["python"],
"outcome": "success",
"lessons": ["Preserve headings and code blocks before chunking."]
}
],
"skills": ["structured-ingestion"],
"tools": ["python", "ripgrep"],
"lessons": ["Chunk metadata improves downstream retrieval."]
}
Append it to an existing trace library:
python3 scripts/recommend_traces.py \
--traces traces.json \
--append-trace new_trace.json
Interpretation Rules
- Similarity is a hint. Always check whether the prior environment, constraints, and outcome match the current task.
- A tool appearing in a trace does not prove it caused success. Prefer tools attached to matched successful subtasks.
- Preserve negative evidence. Failed traces are useful when their lessons explain what to avoid.
- When traces disagree, choose the recommendation with the closest subtask match and the best outcome evidence.
- Do not expose raw traces from private workspaces. Share redacted summaries or derived recommendations.
Trace Schema
For field definitions and an example trace library, read references/trace_schema.md when creating new datasets, validators, or import/export adapters.
Related skills
Design and compose multi-agent graphs for correctness, coverage, or creativity. Use when a task benefits from isolated proposals, explicit arbitration, adversarial verification, committees, recursive review, cross-modal checks, or saturation loops. Applies across agent runtimes; the included JavaScript workflow is one adapter.
Use when asked to review, edit, tighten, shorten, deduplicate, clean up, or remove slop from an existing agent skill while preserving behavior. Use for skill...
Route ambiguous agent work to the right skill, command style, and effort level. Use when a task mentions skills, agents, workflows, lifecycle commands, revie...
Get your AI agent productive in 5 minutes. Automated environment scan, smart skill recommendations, and exact install commands. No more trial and error.
Govern and actively monitor collaborative agent work