Claude Code and Cursor skills
Use Hyperstruck reasoning and learning directly from Claude Code and Cursor through lightweight skills.
In one line
Hyperstruck skills let you invoke reasoning, search learnings, and review past plans directly from your IDE without writing integration code.
Hyperstruck can be used through the REST API, through framework integrations with LangGraph, OpenAI Agents SDK, and CrewAI, or through skills for Claude Code and Cursor. Skills are the lowest-friction option: install them, set an API key, and start using Hyperstruck where you already work.
Available skills
| Skill | What it does |
|---|---|
hyper-reasoning | Dispatches a goal to the hosted reasoning engine and returns the result. Handles polling, human-in-the-loop gates, and structured output. |
hyper-learning | Search, store, and reinforce learnings. Supports evidence-backed manual learnings and feedback-based reinforcement. |
hyper-plans | Search similar past plans and review candidate learnings for reuse. |
Getting started
Install the skills from the public integrations repository and configure your environment:
HYPER_API_KEY- Your Hyperstruck API keyHYPER_AGENT_ID- The agent to use (or the skill will prompt you to select one)HYPER_BASE_URL- Defaults tohttps://api.hyperstruck.com
Example commands
/hyper-reasoning Map out a migration plan with milestones and risks
/hyper-learning search retry strategy
/hyper-learning store
/hyper-plans search database migrationHow skills connect to the platform
Skills call the same hosted APIs as the REST endpoints and framework integrations. Reasoning runs generate learnings automatically. Learnings stored through skills are available to future reasoning runs and API calls. There is no separate data path.
When to use skills vs other integration options
| Integration | Best for |
|---|---|
| Skills | Trying Hyperstruck in real workflows with zero integration effort. Day-to-day developer use. |
| REST API | Building Hyperstruck into your own applications and services. |
| Framework integrations | Adding reasoning and learning to agents built with LangGraph, OpenAI Agents SDK, or CrewAI. |
Related pages
- Agents API for the underlying reasoning API
- Learnings API for the underlying learning API
- Framework integrations for LangGraph, OpenAI Agents SDK, and CrewAI