Skip to main content
The hai-agents skill teaches your coding assistant H’s APIs, so instead of guessing at endpoints it scaffolds working sessions, agents, and environments from a plain-language prompt. The same SKILL.md works in Claude Code, Cursor, and Hermes; only the install step differs. It ships from the hcompai/computer-use-agents-demos repo, which also publishes it as a Claude Code plugin (marketplace hai-skills).

hcompai/computer-use-agents-demos/skills/hai-agents

The skill’s source on GitHub: SKILL.md plus the reference docs Claude loads. Start here.

What your assistant learns

Once active, hai-agents gives your assistant grounded knowledge of: The skill triggers automatically when your conversation matches its description: asking about H sessions or hk-... keys pulls it in without you naming it.

Install

Register the marketplace, then install the skill in any Claude Code session:
/plugin is a built-in Claude Code command that opens an interactive menu. Type it directly in your prompt. The marketplace must be added first, otherwise hai-skills is unknown.

Build a use case

With the skill installed, describe the workflow you want in plain language and let your assistant scaffold it against the live APIs. In Claude Code you can invoke the plugin’s slash command directly (in Cursor or Hermes, a plain prompt triggers the skill the same way):
❯ /hai-agents:hai-agents “Add one iPhone 17 Pro to my Amazon.com cart”
Because the skill knows the session lifecycle, region defaults, and SDK surface, the code it produces uses the right endpoints and helpers instead of hand-rolled HTTP. It scaffolds TypeScript or Python. The video at the top of this page shows it building a TypeScript availability check from a single prompt:
❯ /hai-agents:hai-agents “Generate TypeScript code that navigates to jacquemus.com, finds the France × Nike football jersey, and checks its availability in sizes S and XXL.”
Generated code: examples/product_availability/src/index.ts

Next steps

Quickstart

Run your first session end to end in under 5 minutes.

SDKs

The typed Python and TypeScript clients and CLI the skill builds on.

Skills

Reusable instruction fragments you attach to a running agent.

Demos repo

More recipes: QA via CLI, schema-driven extraction, counterfeit detection.