AgentHub

Installation

No global install needed. Use npx agent-hub-harness (or the equivalent for your package manager) to scaffold any agent directly into your project in seconds.


Find an agent

Browse the Agents page or list available agents from the CLI:

pnpm dlx agent-hub-harness list

Scaffold it

Run the add command with your chosen agent and framework:

pnpm dlx agent-hub-harness add customer-support --framework langchain

The agent source files are copied into ./customer-support/ and the required install commands are printed.

Set environment variables

Add the required API keys to a .env file in your project root. The exact keys are printed after scaffolding and listed on each agent's page.

OPENAI_API_KEY=sk-...
# or use Anthropic:
ANTHROPIC_API_KEY=sk-ant-...

Never commit .env to version control. Add it to .gitignore.

All set!

Your agent is scaffolded and ready. Browse the registry to discover more agents you can add to your project.

Browse agents