configure-axis
Installation
SKILL.md
Configure AXIS
AXIS (Agent Experience Index Score) is a synthetic testing framework for AI agents. This skill teaches you to author the two files an AXIS user maintains:
- Scenarios under
scenarios/(or any path the config points at): one JSON file per task the agent will be asked to perform. axis.config.jsonat the project root: which agents to run, where scenarios live, and what is shared across them.
When to use this skill
Trigger phrases include "set up AXIS", "add an AXIS scenario", "write an axis.config.json", "evaluate my agent with AXIS", "score my agent on X".
Before authoring, do this:
- Look for an existing
axis.config.json(oraxis.config.{js,ts}) at the project root. If one exists, read it; do not overwrite without confirmation. - List the existing scenarios directory if present. Match its naming and style.
- If no config exists, suggest running
npx @netlify/axis initfirst, or scaffold one yourself using the patterns below.