← back to Designer Wallcoverings

DW-Agents/dw-agents/QUICK-COMMAND-REFERENCE.md

89 lines

# Quick Command Reference

## Most Used Commands

| Command | Agent | Port | Purpose |
|---------|-------|------|---------|
| `/dw` | All agents | - | Work with entire DW-Agents codebase |
| `/task_orchestrator` | Task Orchestrator | 9900 | Master task coordination system |
| `/ui_manager` | UI Manager | 7240 | Central UI/UX management |
| `/legal` | Legal Team | 9878 | Legal document processing & compliance |
| `/accounting` | Accounting | 9882 | Financial tracking & reporting |
| `/marketing` | Marketing | 9881 | Marketing campaigns & analytics |
| `/purchasing_office` | Purchasing Office | 9880 | Vendor & inventory management |
| `/server_uptime` | Server Uptime | - | Server health monitoring |
| `/log_monitor` | Log Monitor | 7239 | System log analysis |
| `/needs_attention` | Needs Attention | - | Priority items dashboard |

## By Category

### 🏢 Executive
- `/executive_ceo` - CEO agent
- `/executive_cfo` - CFO agent
- `/executive_coo` - COO agent
- `/executive_vp_ops` - VP Operations agent

### 📊 Operations
- `/accounting` - Financial management
- `/marketing` - Marketing operations
- `/purchasing_office` - Procurement
- `/legal` - Legal & compliance
- `/security` - Security monitoring

### ✅ Tasks
- `/task_orchestrator` - Central task hub
- `/completed_tasks` - Task history
- `/needs_attention` - Priority items
- `/in_parallel` - Parallel task execution
- `/parallel_processes` - Process management

### 🔧 Monitoring
- `/server_uptime` - Server health
- `/log_monitor` - Log analysis
- `/crash_loop_resolver` - Crash detection
- `/dashboard_monitor` - Dashboard health
- `/restart_analyzer` - Restart patterns

### 👥 Customer
- `/zendesk_chat` - Customer support
- `/new_client_signup` - Onboarding
- `/shopify_store` - E-commerce
- `/digital_samples` - Sample management
- `/omega_watches` - Watch products

### 📈 Analytics
- `/trend_research` - Market trends
- `/todays_highlights` - Daily insights
- `/ai_expenses` - AI cost tracking

### 🎨 Infrastructure
- `/ui_manager` - Design system
- `/skills_manager` - Skill management
- `/all_agents` - Agent overview
- `/bigquery_gov` - Data governance

## Quick Tips

1. **Start broad, go specific**: Use `/dw` for overview, then switch to specific agent commands
2. **Port numbers**: Most agents with web UIs run on ports 7000-9999
3. **Base URL**: All agents accessible at `http://45.61.58.125:PORT`
4. **Documentation**: Each agent has a README.md in its directory
5. **Logs**: Check `/root/claude/agents/dw-agents/logs/` for agent logs

## Command Pattern

All commands follow this pattern:
- Underscore for multi-word names (e.g., `/task_orchestrator`)
- Short names remove "-team" and "-agent" suffixes
- Examples: `agent-legal-team` → `/legal`, `agent-task-orchestrator` → `/task_orchestrator`

## Regenerating Commands

If you add new agents or update existing ones:

```bash
cd /root/claude/agents/dw-agents
./generate-agent-commands.sh
./rename-commands.sh
```