Content Strategy
Status: MVP draft
Owner: JJ
Version: 0.2.0 · Phase MVP
Category: Marketing & Sales
Quick start
When an SMB owner asks "what should I post this month?" or "what's my content plan?", this skill:
- Pulls sales data from QuickBooks or PayPal (transaction history, product/service revenue by date)
- Identifies patterns — top-selling products, slow movers, seasonal trends
- Layers in context — seasonality (user-provided or industry benchmarks), past performance
- Produces a 30-day brief — ranked recommendations of what to push, what to hold, what offers to consider
- Gets owner approval before the brief feeds into
canva-creator for asset generation
The output is strategic only — no calendar scheduling, no creative assets.
Workflow
Step 1: Pre-flight check (QuickBooks only)
If using QuickBooks, verify the business profile is set up:
- Call
company-info to check if Industry is populated
- If missing or "Unknown":
- Ask: "I need your business category to pull the right seasonality benchmarks. What industry are you in?" (e.g., retail, services, SaaS)
- Call
quickbooks-profile-info-update with the user's industry
- Confirm: "Profile updated. Ready to pull your sales data."
- If profile is set, proceed to Step 2
Note: PayPal and Square do not require profile setup.
Step 2: Clarify priorities & metrics
When triggered, ask the user:
Step 3: Pull and analyze sales data
Fetch data from the authenticated connector (QuickBooks, PayPal, or Square, user's choice):
- Date range: Last 90 days (or full history if <90 days available)
- Extract: Product/service name, date sold, revenue, quantity
Connector-specific notes:
- QuickBooks: Fetch invoice line items via
profit-loss-quickbooks-account (pre-flight sets industry context)
- PayPal: Fetch merchant transactions via
list_transactions. Rate-limiting: If you hit rate limits, pause 30 seconds and retry once. If still blocked, gracefully offer: "PayPal is rate-limited. Would you like to switch to QuickBooks or Square instead, or I can continue with historical data I already pulled?"
- Square: Requires location ID first. Call
make_api_request(service="locations", method="list") to discover available locations, then fetch orders for each location. Future enhancement: Square integration is stubbed; full path documented in reference/square-integration.md.
Fallback: If <3 months of data, use industry seasonality benchmarks for the SMB's category (e.g., retail, services, e-commerce)
Identify:
- Top 3–5 performers (by user's chosen metric)
- Bottom 3–5 slow movers (consider holding or repositioning)
- Trending up (gaining momentum in last 30 days)
- Trending down (losing momentum)
Step 4: Layer in seasonality
- User-provided: If they shared seasonal patterns, weight recommendations against them
- Industry benchmarks: For categories without strong user data (e.g., "Q1 is strong for tax services")
- Timing: Flag products that should ramp up/down in the next 30 days based on seasonal patterns
Step 5: Build the 30-day brief
Structure:
- Executive summary (1–2 sentences: "Your best sellers are X and Y. Seasonal shift to Z is starting.")
- Push hard (Top 2–3 products + recommended content angle, e.g., "Case study on ROI", "How-to video")
- Hold steady (Middle performers; maintain visibility but no heavy lift)
- Reposition or pause (Slow movers; consider discounting, bundling, or pausing)
- Seasonal opportunities (What's coming next month that you should position for now)
- Recommended offers (Bundle, discount, or free-trial strategy based on data)
Example length: 200–400 words (brief and actionable, not essay-length).
Step 6: Owner approval & iteration
Present the brief to the owner. Ask:
- "Does this match your gut?"
- "Anything to adjust?"
- "Ready to feed this to canva-creator for asset generation?"
Iterate if needed; once approved, return the final brief as structured JSON (ready for downstream tools).
Gotchas & edge cases
See reference/gotchas.md for common pitfalls.
Examples
See reference/examples/ for worked examples (SaaS, retail, services).
1---2name: content-strategy3description: Analyzes sales data from PayPal and QuickBooks to find top performers and slow movers, layers in seasonality, and produces a prioritized 30-day content brief: what to push, what offers to run, what to hold. Strategic output only — no calendars or assets. Use when the user asks what to post, wants a content plan, asks what's selling, or what to promote this month.4---56# Content Strategy78> **Status:** MVP draft9> **Owner:** JJ10> **Version:** 0.2.0 · Phase MVP11> **Category:** Marketing & Sales1213## Quick start1415When an SMB owner asks "what should I post this month?" or "what's my content plan?", this skill:16171. **Pulls sales data** from QuickBooks or PayPal (transaction history, product/service revenue by date)182. **Identifies patterns** — top-selling products, slow movers, seasonal trends193. **Layers in context** — seasonality (user-provided or industry benchmarks), past performance204. **Produces a 30-day brief** — ranked recommendations of what to push, what to hold, what offers to consider215. **Gets owner approval** before the brief feeds into `canva-creator` for asset generation2223The output is strategic only — no calendar scheduling, no creative assets.2425---2627## Workflow2829### Step 1: Pre-flight check (QuickBooks only)3031If using QuickBooks, verify the business profile is set up:32331. Call `company-info` to check if `Industry` is populated342. If missing or "Unknown":35 - Ask: "I need your business category to pull the right seasonality benchmarks. What industry are you in?" (e.g., retail, services, SaaS)36 - Call `quickbooks-profile-info-update` with the user's industry37 - Confirm: "Profile updated. Ready to pull your sales data."383. If profile is set, proceed to Step 23940**Note:** PayPal and Square do not require profile setup.4142### Step 2: Clarify priorities & metrics4344When triggered, ask the user:4546- **"How do you want me to measure 'top performers'?"**47 - By total revenue?48 - By profit margin?49 - By sales velocity (how fast they're selling)?50 - Combination of the above?5152- **"Do you have seasonality patterns in mind?"**53 - If yes: "Tell me about them" (capture user's known seasonality)54 - If no: "I'll use industry benchmarks for your category"5556### Step 3: Pull and analyze sales data5758Fetch data from the authenticated connector (QuickBooks, PayPal, or Square, user's choice):5960- **Date range:** Last 90 days (or full history if <90 days available)61- **Extract:** Product/service name, date sold, revenue, quantity6263**Connector-specific notes:**6465- **QuickBooks:** Fetch invoice line items via `profit-loss-quickbooks-account` (pre-flight sets industry context)66- **PayPal:** Fetch merchant transactions via `list_transactions`. *Rate-limiting:* If you hit rate limits, pause 30 seconds and retry once. If still blocked, gracefully offer: "PayPal is rate-limited. Would you like to switch to QuickBooks or Square instead, or I can continue with historical data I already pulled?"67- **Square:** Requires location ID first. Call `make_api_request(service="locations", method="list")` to discover available locations, then fetch orders for each location. *Future enhancement:* Square integration is stubbed; full path documented in `reference/square-integration.md`.6869**Fallback:** If <3 months of data, use industry seasonality benchmarks for the SMB's category (e.g., retail, services, e-commerce)7071Identify:72- **Top 3–5 performers** (by user's chosen metric)73- **Bottom 3–5 slow movers** (consider holding or repositioning)74- **Trending up** (gaining momentum in last 30 days)75- **Trending down** (losing momentum)7677### Step 4: Layer in seasonality7879- **User-provided:** If they shared seasonal patterns, weight recommendations against them80- **Industry benchmarks:** For categories without strong user data (e.g., "Q1 is strong for tax services")81- **Timing:** Flag products that should ramp up/down in the next 30 days based on seasonal patterns8283### Step 5: Build the 30-day brief8485Structure:86- **Executive summary** (1–2 sentences: "Your best sellers are X and Y. Seasonal shift to Z is starting.")87- **Push hard** (Top 2–3 products + recommended content angle, e.g., "Case study on ROI", "How-to video")88- **Hold steady** (Middle performers; maintain visibility but no heavy lift)89- **Reposition or pause** (Slow movers; consider discounting, bundling, or pausing)90- **Seasonal opportunities** (What's coming next month that you should position for now)91- **Recommended offers** (Bundle, discount, or free-trial strategy based on data)9293Example length: **200–400 words** (brief and actionable, not essay-length).9495### Step 6: Owner approval & iteration9697Present the brief to the owner. Ask:98- "Does this match your gut?"99- "Anything to adjust?"100- "Ready to feed this to canva-creator for asset generation?"101102Iterate if needed; once approved, return the final brief as structured JSON (ready for downstream tools).103104---105106## Gotchas & edge cases107108See [`reference/gotchas.md`](reference/gotchas.md) for common pitfalls.109110---111112## Examples113114See [`reference/examples/`](reference/examples/) for worked examples (SaaS, retail, services).