An autonomous multi-agent AI system built on Coral Protocol, integrating:
- Shadow Agent (code generation / task handler)
- Reviewer Agent (evaluation and feedback)
- Whisper Agent (voice-to-text)
- Notion Agent (journaling and log sync)
- Slack Agent (team notifications)
- Visual wiring via Coral Studio's scenario builder
git clone https://github.com/sahiixx/Coral-BlackboxAI-Agent.git shadow-agent
cd shadow-agent
cp ../agents-template.env .env # Use your actual credentials heredocker-compose -f docker-compose-shadow.yml up --buildStudio: http://localhost:3000
Server: http://localhost:8080
| Agent | Role | Model |
|---|---|---|
shadow_agent |
Task/code generator | GPT-4.1-mini |
reviewer_agent |
Validates and gives feedback | GPT-3.5 |
whisper_agent |
Converts audio to text | Whisper / OpenAI |
notion_agent |
Logs to Notion DB | Notion API |
slack_agent |
Sends messages to Slack channel | Slack Bot API |
SHADOW_API_KEY=...
WHISPER_API_KEY=...
NOTION_API_KEY=...
SLACK_BOT_TOKEN=...Use shadow-scenario.json in Coral Studio to visualize:
graph TD
A[Whisper ποΈ] --> B[Shadow π§ ]
B --> C[Reviewer β
]
C --> D[Notion π]
C --> E[Slack π©]
- Create
.github/workflows/deploy.yml - Add build-and-push steps
- Connect secrets:
DOCKERHUB_USERNAME,DOCKERHUB_TOKEN
.
βββ Dockerfile
βββ docker-compose-shadow.yml
βββ application-shadow.yaml
βββ shadow-scenario.json
βββ agents-template.env
βββ sample-agent-transcript.json
Built with β€οΈ by @sahiix
Based on Coral Protocol