Runnable companions to Part 7 of the developer guide. Each subdirectory is a self-contained project — cd in, install, run.
| # | Directory | Blueprint | Stack | Run |
|---|---|---|---|---|
| A | saas-assistant/ |
SaaS assistant API | Python · FastAPI · SSE | uv run uvicorn app.main:app --reload |
| B | ide-plugin-ts/ |
IDE / editor plugin | TypeScript · VS Code | npm install && npm run compile |
| C | ticket-automation/ |
Support-ticket triage | Python · custom tool + skill | uv run python -m src.triage "ticket text" |
| D | data-workbench/ |
Data analysis workbench | Python · DuckDB · matplotlib | uv run python -m src.workbench |
| E | batch-scheduler/ |
Nightly scheduled job | Python · cron / CronJob | uv run python -m src.daily_digest |
pyproject.toml or package.json; nothing is shared. Install inside each directory.OPENAI_API_KEY..env.example — copy to .env and fill in your OPENAI_API_KEY before running.uv for the Python examplesnpm for the TypeScript exampleOPENAI_API_KEY (or a compatible provider — see each README)cronjob.yamlOpen an issue on the Agentao repo if a blueprint fails to run on a clean environment.