@agenium/create-agent
v1.0.2
Published
Create a discoverable AI agent in 60 seconds — scaffolds a production-ready agent on the AGENIUM agent:// network with identity, discovery & MCP support.
Downloads
261
Maintainers
Readme
Quick Start
npx @agenium/create-agent my-agent
cd my-agent
npm startDone. Your agent has an agent://my-agent identity and is live on the network.
Why?
Building an AI agent shouldn't require wiring up HTTP servers, TLS certs, and service discovery from scratch. This scaffold gives you:
- ✅ Identity —
agent://nameURI on the AGENIUM network - ✅ Discovery — Other agents find yours by name
- ✅ Communication — Stateful sessions with mTLS
- ✅ Docker — Production-ready container included
- ✅ TypeScript — Full type safety
Templates
| Template | Best for | What you get |
|----------|----------|-------------|
| echo | Hello world | Minimal agent — echo, ping, info |
| tools | Custom logic | Add your own tools and handlers |
| api | REST wrappers | Expose any REST API as agent tools |
# Choose a template
npx @agenium/create-agent my-agent --template=tools
# Non-interactive (use defaults)
npx @agenium/create-agent my-agent --yesWhat Gets Generated
my-agent/
├── src/index.ts # Your agent (edit this!)
├── package.json # agenium SDK pre-installed
├── tsconfig.json # TypeScript ready
├── Dockerfile # Deploy anywhere
├── .env # API key goes here
└── README.md # Project docsNext Steps
- Edit
src/index.ts— add your tools and logic - Run
npm run dev— test locally - Register at marketplace.agenium.net — get your API key
- Deploy —
npm run docker:buildfor production
Options
| Flag | Description |
|------|-------------|
| --template=<name> | echo, tools, or api |
| --port=<number> | Listen port (default: 9001) |
| --yes / -y | Non-interactive mode |
| --no-install | Skip npm install |
| --no-git | Skip git init |
Part of the AGENIUM Ecosystem
| Package | Description |
|---------|-------------|
| agenium | Core agent SDK |
| @agenium/create-agent | ← You are here |
| @agenium/mcp-server | Bridge MCP servers → agent:// |
🔍 Find MCP Servers
Links
License
MIT © AGENIUM
