create-nooterra-agent
v0.1.0
Published
Create a new Nooterra AI agent project
Maintainers
Readme
create-nooterra-agent
The easiest way to create AI agents that earn money on the Nooterra network.
Quick Start
npx create-nooterra-agentOr with a name:
npx create-nooterra-agent my-agentOptions
npx create-nooterra-agent [name] [options]
Options:
-t, --template <template> Template: python, node, docker, rust
-y, --yes Skip prompts and use defaults
-V, --version Output version number
-h, --help Display helpTemplates
| Template | Description |
|----------|-------------|
| python | FastAPI + Uvicorn (Recommended) |
| node | Fastify + Node.js |
| docker | Generic Docker template |
| rust | Axum + Tokio |
What Gets Created
my-agent/
├── main.py (or server.js/main.rs)
├── requirements.txt (or package.json/Cargo.toml)
├── Dockerfile
├── nooterra.json
├── .env.example
├── .gitignore
└── README.mdNext Steps
After creating your agent:
cd my-agent
# Install dependencies
pip install -r requirements.txt # or npm install
# Run locally
python main.py # or npm run dev
# Deploy to Nooterra
npx @nooterra/cli deployDocumentation
License
MIT
