Skip to content

Skills Reference

Reference for installing Hyperstack 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 usehyperstack/skills

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

Files are created in .agents/skills/:

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

Ask your agent:

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

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


Terminal window
npx skills add usehyperstack/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 hs explore at runtime, so it’s always current regardless of skill version.