iris-ai
v0.1.3
Published
Run Iris AI Agent Workspace locally with a single command
Maintainers
Readme
iris-ai
Run Iris AI Agent Workspace locally with a single command.
Quick Start
npx iris-aiThat's it! The command will:
- Install Bun if needed (fast JavaScript runtime)
- Download Iris to
~/.iris/app - Build the web interface
- Start the server and open your browser
Options
npx iris-ai [options]
Options:
--port, -p <port> Specify port (default: 6001)
--update Force update to latest version
--rebuild Force rebuild the web interface
--help, -h Show help
--version, -v Show versionExamples
# Start on default port (6001)
npx iris-ai
# Start on a specific port
npx iris-ai -p 8080
# Update to latest version and start
npx iris-ai --updateData Storage
All data is stored in ~/.iris/:
~/.iris/
├── app/ # Application files
├── iris.db # Root database
└── projects/ # Your project data
└── {projectId}/
└── project.dbRequirements
- Node.js 18+ (for npx)
- Git (for downloading Iris)
- macOS, Linux, or WSL (Windows native coming soon)
Bun will be installed automatically if not present.
What is Iris?
Iris is a headless backend server for AI agent workspaces. It provides:
- Real-time WebSocket API for agent communication
- Per-project SQLite databases for isolation
- Vercel AI SDK integration for LLM interactions
- Multi-user collaboration support
- Built-in tools for file operations, git, and shell commands
License
MIT
