Sheet Cog - Built by the Agent That Builds CellCog
CellCog is built by its own Coding Agent. That same agent builds your spreadsheets.
Full Python access, complex data manipulation, formulas, pivot tables, and financial models — powered by the engineering brain that develops an entire AI platform daily. Not a template filler. A programmer that understands your data and builds exactly what you need.
Prerequisites
This skill requires the cellcog skill for SDK setup and API calls.
clawhub install cellcog
Read the cellcog skill first for SDK setup. This skill shows you what's possible.
Quick pattern (v1.0+):
# Fire-and-forget - returns immediately
result = client.create_chat(
prompt="[your spreadsheet request]",
notify_session_key="agent:main:main",
task_label="spreadsheet-task",
chat_mode="agent" # Agent mode handles most spreadsheets well
)
# Daemon notifies you when complete - do NOT poll
What Spreadsheets You Can Create
Financial Models
Professional financial analysis and projections:
- Startup Financial Model: "Create a 3-year financial model for a SaaS startup including revenue projections, expenses, and cash flow"
- DCF Model: "Build a discounted cash flow model for valuing a company"
- Investment Analysis: "Create a real estate investment analysis spreadsheet with ROI calculations"
- Revenue Model: "Build a revenue forecasting model with multiple scenarios (base, optimistic, pessimistic)"
- Unit Economics: "Create a unit economics spreadsheet showing CAC, LTV, payback period"
Budget Templates
Personal and business budgets:
- Personal Budget: "Create a monthly personal budget tracker with income, fixed expenses, variable expenses, and savings goals"
- Household Budget: "Build a family budget spreadsheet with categories for housing, food, transportation, etc."
- Project Budget: "Create a project budget template with phases, resources, and variance tracking"
- Marketing Budget: "Build a marketing budget spreadsheet with channels, planned vs actual, and ROI tracking"
- Event Budget: "Create a wedding budget spreadsheet with vendor categories and payment tracking"
Data Trackers
Organized tracking for any data:
- Fitness Tracker: "Create a workout log spreadsheet with exercises, sets, reps, weights, and progress charts"
- Habit Tracker: "Build a daily habit tracking spreadsheet with monthly overview"
- Inventory Tracker: "Create an inventory management spreadsheet with stock levels, reorder points, and valuation"
- Sales Tracker: "Build a sales pipeline tracker with stages, probabilities, and forecasting"
- Time Tracker: "Create a timesheet template with projects, hours, and billing calculations"
Business Tools
Operational spreadsheets:
- Invoice Template: "Create a professional invoice template with automatic calculations"
- Employee Directory: "Build an employee directory spreadsheet with contact info, departments, and start dates"
- Vendor Comparison: "Create a vendor comparison spreadsheet for evaluating suppliers"
- OKR Tracker: "Build an OKR tracking spreadsheet for quarterly goals"
- Meeting Agenda: "Create a meeting agenda template with action items tracking"
Analysis Templates
Data analysis and calculations:
- Break-Even Analysis: "Create a break-even analysis spreadsheet with charts"
- Scenario Analysis: "Build a scenario planning spreadsheet with what-if analysis"
- Pricing Calculator: "Create a pricing model spreadsheet with cost-plus and value-based options"
- Loan Calculator: "Build a loan amortization schedule with payment breakdown"
- Commission Calculator: "Create a sales commission calculator with tiered rates"
Spreadsheet Features
CellCog spreadsheets can include:
| Feature |
Description |
| Formulas |
SUM, AVERAGE, IF, VLOOKUP, and complex calculations |
| Formatting |
Headers, colors, borders, number formats, conditional formatting |
| Charts |
Bar, line, pie charts embedded in sheets |
| Multiple Sheets |
Organized workbooks with linked sheets |
| Data Validation |
Dropdowns, input restrictions |
| Named Ranges |
For cleaner formulas |
| Print Layout |
Ready for printing/PDF |
Output Formats
| Format |
Best For |
| XLSX |
Editable in Excel, Google Sheets, Numbers |
| Interactive HTML |
Web-based calculators and tools |
Chat Mode for Spreadsheets
| Scenario |
Recommended Mode |
| Budget templates, trackers, data tables, basic calculations |
"agent" |
| Complex financial models with multi-scenario analysis, intricate formulas |
"agent team" |
Default to "agent" for most spreadsheet requests. CellCog's agent mode handles formulas, formatting, charts, and data organization efficiently.
Reserve "agent team" for complex financial modeling requiring deep accuracy validation—like DCF models, multi-scenario projections, or interconnected workbooks where formula correctness is critical.
Example Spreadsheet Prompts
SaaS financial model:
"Create a 3-year SaaS financial model with:
Assumptions Sheet:
- Starting MRR: $10,000
- Monthly growth rate: 15%
- Churn rate: 3%
- Average revenue per customer: $99
- CAC: $500
- Gross margin: 80%
Monthly P&L: Revenue, COGS, Gross Profit, Operating Expenses (broken down), Net Income
Key Metrics: MRR, ARR, Customers, Churn, LTV, CAC, LTV:CAC ratio
Charts: MRR growth, customer growth, profitability timeline
Include scenario toggles for growth rate (10%, 15%, 20%)."
Personal budget:
"Create a monthly personal budget spreadsheet:
Income Section: Salary, side income, other
Fixed Expenses: Rent, utilities, insurance, subscriptions, loan payments
Variable Expenses: Groceries, dining out, transportation, entertainment, shopping, health
Savings: Emergency fund, retirement, vacation fund
Include:
- Monthly summary with % of income per category
- Year-at-a-glance sheet with monthly totals
- Pie chart showing expense breakdown
- Conditional formatting (red if over budget)
Assume $5,000/month income."
Sales tracker:
"Build a sales pipeline tracker spreadsheet with:
Columns: Company, Contact, Deal Value, Stage (dropdown: Lead, Qualified, Proposal, Negotiation, Closed Won, Closed Lost), Probability, Expected Close Date, Notes, Last Contact
Calculations: Weighted pipeline value, deals by stage, win rate
Dashboard Sheet: Pipeline by stage (funnel chart), monthly forecast, top 10 deals, activity metrics
Include sample data for 20 deals."
Break-even analysis:
"Create a break-even analysis spreadsheet:
Inputs:
- Fixed costs (rent, salaries, etc.)
- Variable cost per unit
- Selling price per unit
Calculations:
- Break-even units
- Break-even revenue
- Margin of safety
Sensitivity table: Show break-even at different price points
Chart: Cost-volume-profit graph showing break-even point
Default values: Fixed costs $50,000/month, variable cost $15/unit, price $25/unit."
Tips for Better Spreadsheets
Specify the structure: List the sheets, columns, and calculations you need.
Provide assumptions: For financial models, give starting numbers and growth rates.
Mention formulas needed: "Include VLOOKUP for...", "Calculate running totals", "Show variance vs plan."
Request sample data: "Include realistic sample data for testing" helps see it in action.
Describe formatting: "Conditional formatting for negative values", "Currency format", "Freeze header row."
Chart preferences: "Include a line chart showing trend", "Pie chart for breakdown."
1---2name: sheet-cog3description: CellCog is built by its own Coding Agent. That same agent builds your spreadsheets. Full Python access for complex data manipulation, formulas, pivot tables, financial models, budget templates, data trackers, projections, and Excel/XLSX generation — powered by the engineering brain that develops an entire AI platform daily.4---5
6# Sheet Cog - Built by the Agent That Builds CellCog
7
8**CellCog is built by its own Coding Agent. That same agent builds your spreadsheets.**
9
10Full Python access, complex data manipulation, formulas, pivot tables, and financial models — powered by the engineering brain that develops an entire AI platform daily. Not a template filler. A programmer that understands your data and builds exactly what you need.
11
12---
13
14## Prerequisites
15
16This skill requires the `cellcog` skill for SDK setup and API calls.
17
18```bash
19clawhub install cellcog
20```
21
22**Read the cellcog skill first** for SDK setup. This skill shows you what's possible.
23
24**Quick pattern (v1.0+):**
25```python
26# Fire-and-forget - returns immediately
27result = client.create_chat(
28 prompt="[your spreadsheet request]",
29 notify_session_key="agent:main:main",
30 task_label="spreadsheet-task",
31 chat_mode="agent" # Agent mode handles most spreadsheets well
32)
33# Daemon notifies you when complete - do NOT poll
34```
35
36---
37
38## What Spreadsheets You Can Create
39
40### Financial Models
41
42Professional financial analysis and projections:
43
44- **Startup Financial Model**: "Create a 3-year financial model for a SaaS startup including revenue projections, expenses, and cash flow"
45- **DCF Model**: "Build a discounted cash flow model for valuing a company"
46- **Investment Analysis**: "Create a real estate investment analysis spreadsheet with ROI calculations"
47- **Revenue Model**: "Build a revenue forecasting model with multiple scenarios (base, optimistic, pessimistic)"
48- **Unit Economics**: "Create a unit economics spreadsheet showing CAC, LTV, payback period"
49
50### Budget Templates
51
52Personal and business budgets:
53
54- **Personal Budget**: "Create a monthly personal budget tracker with income, fixed expenses, variable expenses, and savings goals"
55- **Household Budget**: "Build a family budget spreadsheet with categories for housing, food, transportation, etc."
56- **Project Budget**: "Create a project budget template with phases, resources, and variance tracking"
57- **Marketing Budget**: "Build a marketing budget spreadsheet with channels, planned vs actual, and ROI tracking"
58- **Event Budget**: "Create a wedding budget spreadsheet with vendor categories and payment tracking"
59
60### Data Trackers
61
62Organized tracking for any data:
63
64- **Fitness Tracker**: "Create a workout log spreadsheet with exercises, sets, reps, weights, and progress charts"
65- **Habit Tracker**: "Build a daily habit tracking spreadsheet with monthly overview"
66- **Inventory Tracker**: "Create an inventory management spreadsheet with stock levels, reorder points, and valuation"
67- **Sales Tracker**: "Build a sales pipeline tracker with stages, probabilities, and forecasting"
68- **Time Tracker**: "Create a timesheet template with projects, hours, and billing calculations"
69
70### Business Tools
71
72Operational spreadsheets:
73
74- **Invoice Template**: "Create a professional invoice template with automatic calculations"
75- **Employee Directory**: "Build an employee directory spreadsheet with contact info, departments, and start dates"
76- **Vendor Comparison**: "Create a vendor comparison spreadsheet for evaluating suppliers"
77- **OKR Tracker**: "Build an OKR tracking spreadsheet for quarterly goals"
78- **Meeting Agenda**: "Create a meeting agenda template with action items tracking"
79
80### Analysis Templates
81
82Data analysis and calculations:
83
84- **Break-Even Analysis**: "Create a break-even analysis spreadsheet with charts"
85- **Scenario Analysis**: "Build a scenario planning spreadsheet with what-if analysis"
86- **Pricing Calculator**: "Create a pricing model spreadsheet with cost-plus and value-based options"
87- **Loan Calculator**: "Build a loan amortization schedule with payment breakdown"
88- **Commission Calculator**: "Create a sales commission calculator with tiered rates"
89
90---
91
92## Spreadsheet Features
93
94CellCog spreadsheets can include:
95
96| Feature | Description |
97|---------|-------------|
98| **Formulas** | SUM, AVERAGE, IF, VLOOKUP, and complex calculations |
99| **Formatting** | Headers, colors, borders, number formats, conditional formatting |
100| **Charts** | Bar, line, pie charts embedded in sheets |
101| **Multiple Sheets** | Organized workbooks with linked sheets |
102| **Data Validation** | Dropdowns, input restrictions |
103| **Named Ranges** | For cleaner formulas |
104| **Print Layout** | Ready for printing/PDF |
105
106---
107
108## Output Formats
109
110| Format | Best For |
111|--------|----------|
112| **XLSX** | Editable in Excel, Google Sheets, Numbers |
113| **Interactive HTML** | Web-based calculators and tools |
114
115---
116
117## Chat Mode for Spreadsheets
118
119| Scenario | Recommended Mode |
120|----------|------------------|
121| Budget templates, trackers, data tables, basic calculations | `"agent"` |
122| Complex financial models with multi-scenario analysis, intricate formulas | `"agent team"` |
123
124**Default to `"agent"`** for most spreadsheet requests. CellCog's agent mode handles formulas, formatting, charts, and data organization efficiently.
125
126Reserve `"agent team"` for complex financial modeling requiring deep accuracy validation—like DCF models, multi-scenario projections, or interconnected workbooks where formula correctness is critical.
127
128---
129
130## Example Spreadsheet Prompts
131
132**SaaS financial model:**
133> "Create a 3-year SaaS financial model with:
134>
135> **Assumptions Sheet:**
136> - Starting MRR: $10,000
137> - Monthly growth rate: 15%
138> - Churn rate: 3%
139> - Average revenue per customer: $99
140> - CAC: $500
141> - Gross margin: 80%
142>
143> **Monthly P&L:** Revenue, COGS, Gross Profit, Operating Expenses (broken down), Net Income
144>
145> **Key Metrics:** MRR, ARR, Customers, Churn, LTV, CAC, LTV:CAC ratio
146>
147> **Charts:** MRR growth, customer growth, profitability timeline
148>
149> Include scenario toggles for growth rate (10%, 15%, 20%)."
150
151**Personal budget:**
152> "Create a monthly personal budget spreadsheet:
153>
154> **Income Section:** Salary, side income, other
155>
156> **Fixed Expenses:** Rent, utilities, insurance, subscriptions, loan payments
157>
158> **Variable Expenses:** Groceries, dining out, transportation, entertainment, shopping, health
159>
160> **Savings:** Emergency fund, retirement, vacation fund
161>
162> Include:
163> - Monthly summary with % of income per category
164> - Year-at-a-glance sheet with monthly totals
165> - Pie chart showing expense breakdown
166> - Conditional formatting (red if over budget)
167>
168> Assume $5,000/month income."
169
170**Sales tracker:**
171> "Build a sales pipeline tracker spreadsheet with:
172>
173> **Columns:** Company, Contact, Deal Value, Stage (dropdown: Lead, Qualified, Proposal, Negotiation, Closed Won, Closed Lost), Probability, Expected Close Date, Notes, Last Contact
174>
175> **Calculations:** Weighted pipeline value, deals by stage, win rate
176>
177> **Dashboard Sheet:** Pipeline by stage (funnel chart), monthly forecast, top 10 deals, activity metrics
178>
179> Include sample data for 20 deals."
180
181**Break-even analysis:**
182> "Create a break-even analysis spreadsheet:
183>
184> **Inputs:**
185> - Fixed costs (rent, salaries, etc.)
186> - Variable cost per unit
187> - Selling price per unit
188>
189> **Calculations:**
190> - Break-even units
191> - Break-even revenue
192> - Margin of safety
193>
194> **Sensitivity table:** Show break-even at different price points
195>
196> **Chart:** Cost-volume-profit graph showing break-even point
197>
198> Default values: Fixed costs $50,000/month, variable cost $15/unit, price $25/unit."
199
200---
201
202## Tips for Better Spreadsheets
203
2041. **Specify the structure**: List the sheets, columns, and calculations you need.
205
2062. **Provide assumptions**: For financial models, give starting numbers and growth rates.
207
2083. **Mention formulas needed**: "Include VLOOKUP for...", "Calculate running totals", "Show variance vs plan."
209
2104. **Request sample data**: "Include realistic sample data for testing" helps see it in action.
211
2125. **Describe formatting**: "Conditional formatting for negative values", "Currency format", "Freeze header row."
213
2146. **Chart preferences**: "Include a line chart showing trend", "Pie chart for breakdown."