Documentation
Resources and references for working with agentsHQ.
Quick Start
- 1.
Install the CLI globally (optional)
$ npm install -g agentshq - 2.
Add agents from a repository to your project
$ npx agentshq add owner/repo - 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/agentsInstall a specific agent
$ npx agentshq add ulpi-io/agents --agent go-senior-engineerInstall from a full GitHub URL
$ npx agentshq add https://github.com/ulpi-io/agentsUpdating 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/agentsList installed agents
$ npx agentshq listRemove an agent
$ npx agentshq remove agent-name