Documentation

Resources and references for working with agentsHQ.

Quick Start

  1. 1.

    Install the CLI globally (optional)

    $ npm install -g agentshq
  2. 2.

    Add agents from a repository to your project

    $ npx agentshq add owner/repo
  3. 3.

    Open your IDE and start coding with your new agents

Installing Agents

Use npx agentshq add to install agent definitions into your project. Agents are copied into your IDE's agent directory (e.g. .claude/agents/, .cursor/agents/, etc.) so your AI coding assistant can use them immediately.

Install all agents from a repo

$ npx agentshq add ulpi-io/agents

Install a specific agent

$ npx agentshq add ulpi-io/agents --agent go-senior-engineer

Install from a full GitHub URL

$ npx agentshq add https://github.com/ulpi-io/agents

Updating Agents

To update agents to their latest version, run the same add command again. It will overwrite existing agent files with the latest version from the source repository.

Update all agents from a repo

$ npx agentshq add ulpi-io/agents

List installed agents

$ npx agentshq list

Remove an agent

$ npx agentshq remove agent-name