|
| 1 | +# Gemini Workflow System - Quick Start Guide |
| 2 | + |
| 3 | +## ✅ What's Been Created |
| 4 | + |
| 5 | +You now have a complete Gemini-compatible workflow system that mirrors your Claude agents! |
| 6 | + |
| 7 | +### 📂 New Directory Structure |
| 8 | + |
| 9 | +``` |
| 10 | +.gemini/ |
| 11 | +└── workflows/ |
| 12 | + ├── README.md # Complete workflow documentation |
| 13 | + ├── business-owner-analysis.md # Strategic business analysis |
| 14 | + ├── market-researcher.md # Competitive intelligence |
| 15 | + └── session-starter.md # Session preparation |
| 16 | +``` |
| 17 | + |
| 18 | +### 🎯 Available Workflows |
| 19 | + |
| 20 | +#### 1. **Business Owner Analysis** |
| 21 | +- **Purpose**: CEO-level strategic oversight and business analysis |
| 22 | +- **Trigger**: "Run business owner analysis" |
| 23 | +- **Use For**: Weekly reports, feature decisions, launch decisions, competitive analysis |
| 24 | +- **Output**: `/docs/business-intelligence/[subdirectory]/` |
| 25 | + |
| 26 | +#### 2. **Market Researcher** |
| 27 | +- **Purpose**: Competitive intelligence and market monitoring |
| 28 | +- **Trigger**: "Run market researcher" |
| 29 | +- **Use For**: Pricing analysis, sentiment tracking, competitor research |
| 30 | +- **Output**: `/docs/market-research/[subdirectory]/` |
| 31 | + |
| 32 | +#### 3. **Session Starter** |
| 33 | +- **Purpose**: Quick session preparation and environment setup |
| 34 | +- **Trigger**: "Start session" |
| 35 | +- **Use For**: Beginning every development session |
| 36 | +- **Output**: Console with status and commands |
| 37 | + |
| 38 | +## 🚀 How to Use (Simple!) |
| 39 | + |
| 40 | +### Example 1: Start Your Session |
| 41 | +``` |
| 42 | +You: "Start session" |
| 43 | +
|
| 44 | +AI will: |
| 45 | +✅ Read QUICK_START_NEXT_SESSION.md |
| 46 | +✅ Check Redis, build, dependencies |
| 47 | +✅ Show active bugs and priorities |
| 48 | +✅ Provide quick commands |
| 49 | +✅ Tell you where to continue |
| 50 | +``` |
| 51 | + |
| 52 | +### Example 2: Get Strategic Analysis |
| 53 | +``` |
| 54 | +You: "Run business owner analysis for weekly status" |
| 55 | +
|
| 56 | +AI will: |
| 57 | +✅ Read all planning docs |
| 58 | +✅ Check bug status |
| 59 | +✅ Review marketing plans |
| 60 | +✅ Trigger market researcher (if needed) |
| 61 | +✅ Generate comprehensive report |
| 62 | +✅ Save to /docs/business-intelligence/weekly-reports/ |
| 63 | +``` |
| 64 | + |
| 65 | +### Example 3: Research Competitors |
| 66 | +``` |
| 67 | +You: "Run market researcher to analyze GitHub Copilot pricing" |
| 68 | +
|
| 69 | +AI will: |
| 70 | +✅ Research GitHub Copilot pricing |
| 71 | +✅ Compare with our pricing |
| 72 | +✅ Analyze competitive position |
| 73 | +✅ Provide recommendations |
| 74 | +✅ Save to /docs/market-research/ |
| 75 | +``` |
| 76 | + |
| 77 | +## 🔄 Workflow Orchestration |
| 78 | + |
| 79 | +Workflows can trigger each other automatically! |
| 80 | + |
| 81 | +**Example: Business Owner triggers Market Researcher** |
| 82 | +``` |
| 83 | +You: "Run business owner analysis" |
| 84 | +
|
| 85 | +Behind the scenes: |
| 86 | +1. Business Owner reads internal status |
| 87 | +2. Identifies need for market intelligence |
| 88 | +3. Automatically triggers Market Researcher |
| 89 | +4. Market Researcher gathers competitive data |
| 90 | +5. Business Owner synthesizes final report |
| 91 | +
|
| 92 | +You get: Complete analysis with internal + external intelligence |
| 93 | +``` |
| 94 | + |
| 95 | +## 📋 Comparison: Claude vs Gemini |
| 96 | + |
| 97 | +| Feature | Claude Agents | Gemini Workflows | |
| 98 | +|---------|---------------|------------------| |
| 99 | +| **Location** | `.claude/agents/` | `.gemini/workflows/` | |
| 100 | +| **Invocation** | Automatic | Manual trigger phrase | |
| 101 | +| **Execution** | Autonomous | Step-by-step guided | |
| 102 | +| **Best For** | VS Code | Antigravity | |
| 103 | +| **Functionality** | ✅ Full | ✅ Full (same) | |
| 104 | + |
| 105 | +## 🎯 Recommended Usage |
| 106 | + |
| 107 | +### Daily |
| 108 | +``` |
| 109 | +"Start session" |
| 110 | +``` |
| 111 | + |
| 112 | +### Weekly |
| 113 | +``` |
| 114 | +"Run business owner analysis for weekly status" |
| 115 | +``` |
| 116 | + |
| 117 | +### As Needed |
| 118 | +``` |
| 119 | +"Run market researcher for [specific competitor/topic]" |
| 120 | +``` |
| 121 | + |
| 122 | +## 📚 Full Documentation |
| 123 | + |
| 124 | +- **Workflow Details**: `.gemini/workflows/README.md` |
| 125 | +- **Usage Guide**: `AI_ASSISTANT_GUIDE.md` (section: "Using Gemini Workflows") |
| 126 | +- **Claude Agents Reference**: `.claude/agents/` (for comparison) |
| 127 | + |
| 128 | +## ✨ Key Benefits |
| 129 | + |
| 130 | +1. **Same Functionality**: All Claude agent capabilities available in Gemini |
| 131 | +2. **Simple Triggers**: Just say "Run business owner analysis" |
| 132 | +3. **Automatic Orchestration**: Workflows trigger each other when needed |
| 133 | +4. **Consistent Output**: Same report locations and formats |
| 134 | +5. **Easy to Extend**: Create new workflows following the template |
| 135 | + |
| 136 | +## 🔧 Next Steps |
| 137 | + |
| 138 | +1. **Try it now**: Say "Start session" to test session-starter workflow |
| 139 | +2. **Review workflows**: Check `.gemini/workflows/README.md` for details |
| 140 | +3. **Create custom workflows**: Follow the template to add your own |
| 141 | + |
| 142 | +--- |
| 143 | + |
| 144 | +**You're all set!** Your Gemini workflows are ready to use in Antigravity. 🎉 |
0 commit comments