Find an agent
Browse the Agents page or list available agents from the CLI:
pnpm dlx agent-hub-harness listScaffold it
Run the add command with your chosen agent and framework:
pnpm dlx agent-hub-harness add customer-support --framework langchainThe 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.