Add one-line installer and pip extras

- install.sh: One-line installer with options
- Pip extras: [server], [storage], [all]
- Updated README with install instructions
This commit is contained in:
2026-03-13 03:58:53 +00:00
parent 25bf417e20
commit fbecbdda19
3 changed files with 284 additions and 4 deletions
+37 -4
View File
@@ -2,16 +2,49 @@
> Full-flow AI book generation system using **LangGraph**, **CrewAI**, **AutoGen**, and **PydanticAI**
A comprehensive, production-ready system for generating publication-ready manuscripts from raw content.
A comprehensive, production-ready system for generating publication-ready manuscripts.
---
## ⚡ Quick Start
## ⚡ Quick Install
### One-Line Installer (Recommended)
```bash
# Install
pip install opus-orchestrator-ai
# Install and start web UI
curl -sSL https://raw.githubusercontent.com/mrhavens/opus-orchestrator-ai/main/install.sh | bash -s -- --api-key YOUR_OPENAI_KEY --start
```
With options:
```bash
curl -sSL https://raw.githubusercontent.com/mrhavens/opus-orchestrator-ai/main/install.sh | bash -s -- \
--api-key YOUR_KEY \
--github-token YOUR_GH_TOKEN \
--port 8080 \
--start
```
### Or Pip Install
```bash
pip install opus-orchestrator-ai
pip install opus-orchestrator-ai[all] # With server + storage
```
### Or Clone
```bash
git clone https://github.com/mrhavens/opus-orchestrator-ai.git
cd opus-orchestrator-ai
pip install -e .
pip install fastapi uvicorn
```
---
## ⚡ Quick Start (After Install)
```bash
# Generate a manuscript (local mode)
opus generate --concept "A robot dreams of electric sheep" --words 5000