Install any skill in seconds. Free to start, no credit card required.
Get Started Free →This skill helps an LLM pick the right AxAgent context tool for a job - contextMap for recurring corpora, contextPolicy presets for within-run trajectory compaction, agent.optimize for offline GEPA instruction/demo tuning, agent.playbook for an evolving context playbook (offline evolve + online update), and recall/memories + skills for per-turn retrieval. Use when the user asks "which context feature should I use", confuses contextMap with contextPolicy or memory, or wants a decision guide for l
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | -42% | 0% |
| case-02 | ✗→✓ | ▲ Improved | -19% | 0% |
| case-03 | ✗→✓ | ▲ Improved | -40% | 0% |
| case-04 | ✗→✓ | ▲ Improved | -54% | 0% |
| case-05 | ✗→✓ | ▲ Improved | -30% | 0% |
Use this skill to route a context-management need to the right AxAgent tool, then open the matching codegen skill. AxAgent manages four distinct context objects; choosing the wrong one is the usual mistake. Do not write tutorial prose; pick the tool and hand off.
| Need | Object | Scope | Use | Next skill | | --- | --- | --- | --- | --- | | Many tasks over the same large corpus (repo, doc set, dataset) | Context map | recurring corpus, persists across runs | contextMap | ax-agent-rlm | | One long run whose own history must stay under control | Trajectory compaction | this run only | contextPolicy: { preset, budget } | ax-agent-rlm | | Evolve task strategy from examples or live feedback | Context playbook | a stage, offline + online | agent.playbook(...) | ax-agent-optimize | | Tune the prompt/instructions/demos offline | Instruction text | a program, offline | agent.optimize(...) (GEPA) | ax-agent-optimize | | Pull task-relevant facts or guides for a turn | Retrieval | one turn | recall(...) / skills | ax-agent-memory-skills |
contextMap (persistent orientation cache).contextPolicy: { preset: 'checkpointed', budget: 'balanced' }; move to lean for very long runs with strong models, full for short tasks or weak models.agent.playbook(...) (offline from examples, or online from live feedback).agent.optimize(...) (GEPA).recall(...) for memories, discover({ skills }) for skill guides.autoUpgrade (ON by default) keeps it runtime-only with a prompt preview. Reach for contextFields only when you want a specific inline policy or the value is a large required non-string field. See ax-agent-rlm.contextMap to compress a single run's history. That is contextPolicy.contextPolicy to carry knowledge across runs. That is contextMap.agent.playbook(...).recall(...).discover({ skills }) guides) with these installable codegen skills.ax-agent-rlm - contextPolicy presets, context maps, and runtime sessions.ax-agent-memory-skills - recall, memories, and dynamic skill loading.ax-agent-optimize - GEPA via agent.optimize(...) and the context playbook via agent.playbook(...).ax-agent - core agent shape and the final/clarification protocol.Other measured skills in the registry, with their headline benchmark lift.