A multi-agent AI system for creating team logos, powered by collaborative AI agents communicating via Slack.
The Agent Team Logo Creator is a collaborative multi-agent system designed to transform the creative process of logo development into an orchestrated, intelligent workflow. The system comprises four specialized AI agents, each embodying a distinct role within a traditional design team: Nova serves as the Project Manager, coordinating tasks and ensuring alignment with client requirements; Pixel brings creative vision as the UX Designer, crafting visual concepts and iterating on aesthetic direction; Bolt operates as the Developer, translating designs into technical implementations and managing the codebase; and Scout functions as the Quality Assurance specialist, rigorously testing outputs and validating that deliverables meet established standards. These agents communicate through a shared Slack workspace, mimicking the natural collaboration patterns of human teams while leveraging the speed and consistency of AI-driven execution.
| Agent | Role | Responsibilities |
|---|---|---|
| Nova 🌟 | Product Manager | PRD interviews with Babak/Arash, GitHub issues/PRs, task coordination, code reviews |
| Pixel 🎨 | UX Designer | High-level UX designs as images, wireframes, visual mockups |
| Bolt ⚡ | Full-Stack Developer | Frontend & backend implementation, code commits |
| Scout 🔍 | QA Engineer | Testing, bug reports, quality assurance |
Babak and Arash - Product Owners
- Provide product vision and requirements
- Participate in PRD interviews with Nova
- Review and approve key decisions
- Available in #logo-creator Slack channel
- All agents take orders from Babak or Arash
┌─────────────────────────────────────────────────────────────────────┐
│ ORCHESTRATOR │
│ (orchestrator.py) │
│ │
│ Runs Claude Code 4 times per sync cycle, once per agent │
│ Each agent's prompt is built from their spec MD file │
└─────────────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────────────┐
│ TOOLS │
│ │
│ ┌─────────────────┐ ┌─────────────┐ ┌─────────────┐ │
│ │slack_interface │ │ Image Gen │ │ Internet │ │
│ │ (all agents) │ │(Pixel only) │ │ Search │ │
│ └─────────────────┘ └─────────────┘ └─────────────┘ │
└─────────────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────────────┐
│ AGENT SPECS (Prompts) │
│ agent-docs/*.md │
│ │
│ NOVA_SPEC.md → PIXEL_SPEC.md → BOLT_SPEC.md → SCOUT_SPEC.md │
└─────────────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────────────┐
│ SLACK CHANNEL │
│ #logo-creator │
│ │
│ All agents + Babak/Arash communicate here │
└─────────────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────────────┐
│ MEMORY FILES │
│ memory/*.md │
│ │
│ Each agent persists context between sessions │
└─────────────────────────────────────────────────────────────────────┘
Agents have access to these tools:
| Tool | Available To | Purpose |
|---|---|---|
| slack_interface.py | All agents | Communication in #logo-creator |
| Image Generation | Pixel | Create UI mockups, wireframes, designs |
| Internet Search | All agents | Research, documentation, best practices |
| GitHub CLI | All agents | Code commits, issues, PRs |
All agent communication uses the slack_interface.py CLI tool:
# First-time setup (required)
python slack_interface.py config --set-channel "#logo-creator"
python slack_interface.py config --set-agent nova
# Send messages as configured agent
python slack_interface.py say "Sprint planning at 2pm!"
# Read messages from the channel
python slack_interface.py read # Last 50 messages
python slack_interface.py read -l 100 # Last 100 messages
# Upload files
python slack_interface.py upload design.png --title "New Design"
# Show configuration
python slack_interface.py configSee agent-docs/SLACK_INTERFACE.md for complete documentation.
The orchestrator runs Claude Code 4 times per sync cycle:
- Nova (PM) - Reads spec from
NOVA_SPEC.md, checks Slack, manages project - Pixel (UX) - Reads spec from
PIXEL_SPEC.md, creates designs - Bolt (Dev) - Reads spec from
BOLT_SPEC.md, writes code - Scout (QA) - Reads spec from
SCOUT_SPEC.md, tests and reports bugs
Each agent:
- Gets their behavior/personality from their spec MD file
- Reads their memory file for previous context
- Communicates via Slack #logo-creator channel using
slack_interface.py - Updates their memory file after work
- Commits work to GitHub
Before development begins:
- Nova interviews Babak/Arash - Gathers requirements through structured questions in Slack
- Nova drafts PRD - Documents vision, features, and acceptance criteria
- Babak/Arash review & approve - PRD finalized before development begins
- Wake Up - Orchestrator triggers all agents
- Sync Meeting - Agents post status updates to #logo-creator
- Work Phase - Agents execute their tasks
- Commit & Document - Agents update memory and push to GitHub
agent-team-logo-creator/
├── README.md
├── requirements.txt
├── slack_interface.py # Slack communication CLI tool
│
├── agent-docs/ # Agent specifications (prompts)
│ ├── ARCHITECTURE.md
│ ├── AGENT_PROTOCOL.md
│ ├── ONBOARDING.md # Agent onboarding guide
│ ├── SLACK_INTERFACE.md # Slack tool documentation
│ ├── NOVA_SPEC.md # Nova's behavior & personality
│ ├── PIXEL_SPEC.md # Pixel's behavior & personality
│ ├── BOLT_SPEC.md # Bolt's behavior & personality
│ ├── SCOUT_SPEC.md # Scout's behavior & personality
│ └── PRD.md # Product Requirements (created by Nova)
│
├── memory/ # Agent memory files
│ ├── nova_memory.md
│ ├── pixel_memory.md
│ ├── bolt_memory.md
│ └── scout_memory.md
│
├── avatars/ # Agent avatar images
│ ├── nova.png
│ ├── pixel.png
│ ├── bolt.png
│ └── scout.png
│
├── orchestrator.py # Main orchestrator
- Python 3.11+
- Claude Code CLI
- GitHub CLI (
gh) - Slack workspace with #logo-creator channel
- Bot token with required scopes (channels:history, chat:write, etc.)
When an agent wakes up for the first time, follow the Onboarding Guide:
- Read your agent specification - Understand your role and responsibilities
- Configure Slack - Set default channel and agent identity
- Test capabilities - Verify all tools work
- Check memory - Read context from previous sessions
ask tool to request clarification from the user.
See agent-docs/ONBOARDING.md for complete documentation.
# Install dependencies
pip install -r requirements.txt
# Configure Slack (required before use)
python slack_interface.py config --set-channel "#logo-creator"
python slack_interface.py config --set-agent nova
# Test Slack connection
python slack_interface.py scopes
python slack_interface.py read# Run all agents (Nova → Pixel → Bolt → Scout)
python orchestrator.py
# Run a specific agent
python orchestrator.py --agent Nova
python orchestrator.py --agent Pixel --task "Create homepage wireframe"
# List available agents
python orchestrator.py --listMIT License - NinjaTech AI
