@dreamweav/cli
v0.4.1
Published
CLI for DreamWeav workflow orchestration
Maintainers
Readme
@dreamweav/cli
⚠️ Alpha Software: This package is in active development. APIs may change between versions.
Command-line interface for DreamWeav — Initialize projects, run workflows, view traces, and manage your AI agent orchestration from the terminal.
DreamWeav is the Kubernetes of multi-agent AI systems. This CLI helps you scaffold projects, execute workflows with automatic observability, and debug agent behavior with built-in tracing.
📚 Full Documentation | 📦 TypeScript SDK
Installation
npm install -g @dreamweav/cliCommands
dreamweav init
Initialize a new DreamWeav project.
dreamweav initdreamweav dev
Start the local development server.
dreamweav devdreamweav run <workflow>
Execute a workflow.
dreamweav run myWorkflow --input '{"url":"https://example.com"}'dreamweav trace <runId>
View traces for a workflow run.
dreamweav trace abc-123-defdreamweav validate
Validate workflow definitions.
dreamweav validateConfiguration
Create dreamweav.config.ts in your project root:
export default {
projectName: "my-project",
budgetUSD: 1.0,
serverUrl: "http://127.0.0.1:3001",
};