- Overview
- Core Features
- Architecture Overview
- Authentication
- Dashboard Modules
- Tech Stack
- Example Use Case
- Installation & Setup
This project enables autonomous task execution through an AI-powered agent that can analyze a user’s task description, derive the required tools and toolkits, design an execution plan, and implement it automatically using Composio’s Tool Router.
It provides two major modes of interaction:
- Chat Interface – Interactively communicate with the agent to accomplish tasks.
- Scheduled Agent Runs (Cron) – Automate workflows to run at specified times.
All settings, authentications, and configurations are managed via a user-friendly dashboard.
- The user inputs a task description.
- The system analyzes the task to:
- Identify relevant tools and toolkits.
- Design a step-by-step plan for implementation.
- The project leverages Composio’s Tool Router to:
- Integrate and manage all required tools dynamically.
- Route execution through appropriate services.
- The agent automatically connects and executes using authenticated tools.
- Chat directly with your intelligent agent.
- Discuss, modify, and monitor tasks in real time.
- Great for debugging or performing one-off task executions.
- Set time-based workflows to automate task execution.
- Ideal for repetitive or recurring operations.
- Unified control panel for:
- Chat Interface
- Scheduled Agent Runs
- Tool Authentication & Access Management
- Provides seamless configuration and monitoring.
- Easily import agents from json format.
- Share your custom-built agents with others by exporting them.
flowchart TD
A[User Input: <br>Task Description ] --> B[Task Analyzer]
B --> C[Tool & Plan Derivation]
C --> D[Composio Tool Router]
D --> E[Agent Design & <br>Integration]
E --> F{Execution via}
F --> G[Chat Interface: Real-time Interaction]
F --> H[Scheduled Runs: <br>Automated Cron Jobs]
G --> I[Dashboard: <br>Authentication, <br>Monitoring]
H --> I
- Each integrated tool requires user authentication.
- Authentication is handled securely through the assistant dashboard.
- Once authorized, the agent gains controlled access to perform operations using that tool.
| Module | Description |
|---|---|
| Chat Interface | Converse with the agent to execute or test tasks in real-time. |
| Scheduled Runs | Configure cron-like schedules for periodic task execution. |
| Tool Authentication | Securely connect third-party tools. |
- LLM / AI Frameworks: OpenAI / Langgraph framework
- Tool Integration: Composio Python SDK
- Backend: Python / FastAPI
- Frontend: React / Next.js
- Scheduling: Cron
- Database: SQLite
“Fetch latest news of the given company and draft the summary in google docs”
- Use the
COMPOSIO_SEARCH_NEWStool to search for the most recent news articles related to the given company. Use a relevant time filter such as the past day or week to ensure up-to-date news. - Analyze and summarize the retrieved news articles to create a clear, informative summary.
- Use the
GOOGLEDOCS_CREATE_DOCUMENT_MARKDOWNtool to create a new Google Docs document titled as specified by the user, and populate it with the summary content in markdown format.
Instructions: Strictly follow the above plan. Use only the specified tools for searching news and creating the Google Docs document. Request user clarification only if completely blocked due to missing or unclear information.
Tools: ["COMPOSIO_SEARCH_NEWS", "GOOGLEDOCS_CREATE_DOCUMENT_MARKDOWN"]
git clone https://github.com/OSSML/Composio_Agent_Builder.git
cd Composio_Agent_BuilderCopy .env.example to .env and configure values:
cp .env.example .env
COMPOSIO_API_KEY= "YOUR_API_KEY"
OPENAI_API_KEY= "YOUR_API_KEY"
# ----- Optional ENV variables -----
## Optional Database file path (Must be empty for docker build)
## Saves the .db file in the project root directory if not specified.
## Format f"sqlite+aiosqlite:///{.db posix file path}"
# DATABASE_URL=...
### Logging configuration
## default "LOCAL". Anything other than "LOCAL" or "DEVELOPMENT" will output structured logging (suitable for filtering) instead of string logging
# ENV_MODE=...
## default "INFO"
# LOG_LEVEL=...
## Optional Langsmith tracing
# LANGSMITH_TRACING=true
# LANGSMITH_ENDPOINT=https://api.smith.langchain.com
# LANGSMITH_API_KEY=...
# LANGSMITH_PROJECT=composio-agent-builder
docker-compose up
cd backend
# Install dependencies
uv sync
# Run the Backend
uv run main.py# creating a virtual environment
python -m venv env
# Activation for linux
source env/Scripts/activate
# Activation for windows
env/Scripts/activate.ps1
# Install dependencies
pip install -r pyproject.toml
# Run the Backend
python main.py# In new terminal
cd frontend
npm install
npm run devThen open the dashboard at:
http://localhost:3000
The project comes with 3 default agents to experiment with.
Apache 2.0 License - see LICENSE file for details.