create-agentbase
v0.3.0
Published
Agentbase AI Agent Scaffolding
Downloads
25
Maintainers
Readme
create-agentbase
Create AI agent projects with Agentbase - a serverless agent platform where you can call agents via API. Framework-free with all dependencies and integrations managed for you.
Usage
Create a new AI agent project:
npm create agentbase@latestThe CLI will guide you through:
- ✔ Project name - What to call your agent project
- ✔ API key - Paste your API key or press Enter to skip
Get your API key at: https://base.agentbase.sh/sign-up
What it creates
index.ts- TypeScript agent using agentbase-sdk.env- Environment file with your AGENTBASE_API_KEYpackage.json- Project configuration with TypeScript and agentbase-sdktsconfig.json- TypeScript configuration
Getting Started
After creation, the CLI automatically installs dependencies. Just run:
cd your-project-name
npm run devYour agent is now ready! Deploy to Agentbase to call it via API from anywhere.
Features
- 🚀 One command setup (
npm create agentbase@latest) - 🔑 Optional API key integration
- 🤖 Ready-to-run TypeScript agent with agentbase-sdk
- 🔗 Pre-configured Agentbase integration
- 📝 Full TypeScript support with modern tooling
- 🚫 Anti-framework - no complex setups
Example Output
$ npm create agentbase@latest
✔ Project name (my-agent): my-cool-agent
Get your API key at: https://base.agentbase.sh/sign-up
✔ Paste your API key (or press Enter to skip):
Setting up...
✔ Added the latest Agentbase templates to the project.
✔ Done.
Run the following commands to start the project:
cd my-cool-agent
npm run dev