Skip to content
For the complete documentation index optimized for AI agents, see llms.txt or llms-full.txt. A markdown version of this page is available by appending .md to the URL or sending Accept: text/markdown.

Skills Reference

For AI agents: the documentation index is at llms.txt (full corpus: llms-full.txt). A markdown source for this page is /agent-skills/setup.md.

Reference for installing Arete agent skills manually. For an overview of how skills, the CLI, and agent.md fit together, see Agent Skills.

The universal install command (auto-detects your editor):

Terminal window
npx skills add AreteA4/skills

Terminal window
npx skills add AreteA4/skills --agent cursor

Files are created in .agents/skills/:

.agents/skills/
├── arete/SKILL.md
├── arete-consume/SKILL.md
└── arete-build/SKILL.md

Ask your agent:

What stacks are available on Arete? Show me the entities and fields for the ore stack.

The agent should run a4 explore --json, then a4 explore ore --json, and present the entity names, field paths, and types. If it doesn’t recognise Arete commands, check that the skill files are in the correct directory for your editor.


Terminal window
npx skills add AreteA4/skills

This overwrites existing skill files with the latest versions. The static patterns (SDK syntax, DSL macros) change rarely — dynamic data (entity schemas, field types) always comes from a4 explore at runtime, so it’s always current regardless of skill version.