A complete full-stack implementation of a 3-agent system built using the OpenAI ADK that automates general business operations.
taskflowr/
βββ backend/ # FastAPI backend with REST API
βββ frontend/ # Next.js React frontend
βββ docs/ # Full-stack documentation
βββ standalone/ # Original ADK-only version
βββ docker-compose.yml
# Start all services with Docker
docker-compose up -d
# Access the application
# Frontend: http://localhost:3000
# Backend API: http://localhost:8000/api/v1
# API Docs: http://localhost:8000/api/v1/docsSee standalone/README.md for instructions on running the original ADK-only version.
- REST API with JWT authentication
- React Dashboard for managing tasks and workflows
- External Connectors: Slack, Gmail, Teams, Webhooks
- PostgreSQL Database for persistence
- Multi-agent coordination (Coordinator, Automation, Communication)
- Workflow automation
- Structured data processing
MIT License - see standalone/LICENSE