uv — the fast Python package manager.
Quick Start
Clone and Install
The
src/ directory now contains three sibling packages: praisonai-agents/ (SDK), praisonai-code/ (agentic terminal CLI — introduced in scaffold form at PR #2539 as step C0 of the migration in issue #2512), and praisonai/ (main user-facing wrapper). Install with pip install -e src/praisonai — this pulls in praisonai-code and praisonai-agents automatically via the workspace path deps. See praisonai-code Migration for the full picture.Available Extras
| Extra | What It Includes |
|---|---|
code | Code generation and analysis tools |
chat | Chainlit-based chat interface |
crewai | CrewAI framework integration |
autogen | AG2 (AutoGen) framework integration |
langgraph | LangGraph framework integration (probe + doctor recognition; also install praisonai-frameworks[langgraph] for the adapter) |
tools | All built-in tool packages |
bot | Discord/Telegram/Slack bot support |
os | Production-ready OS-level dependencies |
Bump and Release
Project Structure
praisonai-code Sibling Package
praisonai-code hosts the agentic terminal CLI (run, chat, code, warm runtime, CLI backends) as an internal sibling package. praisonai remains the user-facing install; praisonai-code is not published standalone to PyPI during migration.
Status: C0 scaffold merged in PraisonAI#2520. C1 moved runtime/ and cli_backends/ into praisonai_code in PraisonAI#2523; PEP 562 shims keep the old import paths working. See the praisonai-code migration guide for the full C0–C6 roadmap and shim behaviour.
Dependency Rules
Dev Install
Migration Plan (C0–C6)
Track upstream progress in the praisonai-code migration guide and PraisonAI#2512.| Step | Scope | Status |
|---|---|---|
| C0 | Scaffold (this) | ✅ Merged in #2520 |
| C1 | runtime/ + cli_backends/ | ✅ Merged in #2523 |
| C2 | interactive/, execution/, ui/, output/, state/ | Tracking |
| C3 | Agentic commands (80 files) | Tracking |
| C4 | Agentic features (158 files) | Tracking |
| C5 | main.py, app.py, config/session/utils + shims | Tracking |
| C6 | Integration gate | Tracking |
Users continue to
pip install praisonai and run praisonai [TASK]. From C1 onward, from praisonai.runtime import … and from praisonai.cli_backends import … forward to praisonai_code via PEP 562 shims; later C steps add shims for the rest of the agentic CLI. Details: praisonai-code migration guide.Related
Local development and testing
SDK reference documentation
praisonai-code migration (C0–C6)
praisonai-code extraction (upstream tracking issue)

