Daily Operations Β· Adianice Correa
Jane's Command Center
Loading...
πŸ”₯ β€” day streak
πŸš€ Notion Template Launch Tracker
Loading...
Week 1
Build Notion template from battle cards + scripts
β—‹
Week 2
Record 5 training videos + write landing page copy
β—‹
Week 3
Launch on Gumroad β€” email network, first sales
β—‹
Week 4
Add focus packages (BioFace, BioHair, Ortho, IV)
β—‹
⚑ Today's 3 Priorities
🧬 Regen Med Quick Hit AI · REFRESHES DAILY
Loading today's insight...
🌍 Micro News AI · REFRESHES DAILY
Loading today's news...
🏨 Hotel Power Check β€” Selva Boutique
β€”
Today Occ.
β€”
Tomorrow
β€”
Weekend
30-Min Morning Check:
✦ Check Twilio SMS logs β€” any failed deliveries or unanswered guest texts
✦ Compare Expedia rate vs. your direct $185 rate β€” if they're undercutting, flag it
✦ Review new standby bookings β€” confirm immediately to stabilize weekend
✦ If Saturday below 12 rooms β†’ trigger "Luquillo Local" 24-hr flash sale

Holiday Marketing Prompt:
Loading upcoming holidays...
πŸ€– AI / Automation Build
n8n Pipeline Fix β€” Today's Step
Pipeline status unknown β€” check logs
Your pipeline goal: Google Sheets β†’ Claude β†’ ElevenLabs β†’ HeyGen β†’ Shotstack β†’ Buffer

Known issue: Break in the middle β€” likely between Claude output and ElevenLabs input. The webhook URL or JSON mapping is probably mismatched.

Today's single action: Open n8n β†’ run the workflow manually β†’ screenshot the exact node that shows red/error β†’ paste it here and I'll fix it with you.

Once fixed: All 5 channels (Substack, Mermaid, Hotel, Regen Med, Gothic Pink) auto-populate from one Google Sheet trigger.
🧠 Daily Learning AI · REFRESHES DAILY
Loading today's learning...
πŸ“Ή Regen Med YouTube Channel β€” Daily Build Task
Becoming the Go-To Voice in Regenerative Medicine
Today's task: Write the title + first 3 sentences for your channel trailer video.

Suggested title: "What Your Doctor Won't Tell You About Stem Cells (Yet)"

Channel positioning: Bilingual (EN/ES), clinically credible, accessible. You translate complex science into language patients and practitioners can act on. Nobody in this space sounds like you β€” use that.

Content pillars: Exosomes explained Β· Stem cells vs. PRP Β· Real patient cases Β· Physician interviews (Dr. Ripley!) Β· Regulatory clarity Β· Cost & access

Avatar strategy: Use HeyGen for intros only (5–10 sec hook). Record yourself for the credibility moments β€” physicians need to see a real face.
πŸ’ͺ Fitness Tracker
Today's Movement
πŸ‹οΈ
Weights
β—‹
πŸƒ
Cardio
β—‹
🧘
Activity
β—‹
Nothing logged today
THIS WEEK
πŸ““ Daily Log β€” Wins, Blockers, Notes
Not saved yet
// ── STATE ───────────────────────────────────────────────────────── let state = { tasks: {}, milestones: { 1: false, 2: false, 3: false, 4: false }, fitness: false, log: '', streak: 0, n8nFixed: false }; // ── INIT ───────────────────────────────────────────────────────── window.addEventListener('DOMContentLoaded', async () => { renderDate(); renderHoliday(); renderFitness(); await loadFromServer(); renderAll(); }); function renderDate() { const opts = { weekday:'long', year:'numeric', month:'long', day:'numeric' }; document.getElementById('dateDisplay').textContent = TODAY.toLocaleDateString('en-US', opts); } // ── HOLIDAYS ───────────────────────────────────────────────────── const HOLIDAYS = [ { month:5, day:26, name:"Memorial Day Weekend", prompt:"Create a 'Memorial Day Weekend Escape' promo for Selva β€” oceanfront, adults-only, 2-night minimum. Offer a complimentary welcome drink on arrival. Use copy that speaks to rest, reset, and coastal luxury." }, { month:6, day:19, name:"Juneteenth", prompt:"Create a 'Culture & Coast' Juneteenth weekend package β€” celebrate history, art, and Caribbean culture at Selva. Partner with a local cultural event if possible." }, { month:7, day:4, name:"4th of July", prompt:"Create a '4th of July at Selva' promo β€” oceanfront fireworks views, patriotic cocktails, 3-night deal. Emphasize the unique experience of celebrating in Puerto Rico." }, { month:9, day:1, name:"Labor Day Weekend", prompt:"Create a 'Last Summer Escape' Labor Day package β€” 2-night minimum, include a beach bonfire experience. Target last-minute bookers." }, { month:11, day:27, name:"Thanksgiving Weekend", prompt:"Create a 'Grateful & Beachside' Thanksgiving at Selva promo β€” intimate, adults-only, oceanfront. Target couples escaping family chaos for something peaceful." }, { month:12, day:25, name:"Christmas & New Year", prompt:"Create a 'Selva Holiday Season' campaign β€” Christmas Eve dinner, New Year's Eve ocean party. Premium pricing, sell the exclusivity." }, { month:2, day:14, name:"Valentine's Day", prompt:"Create a 'SelValentΓ­n' Valentine's Weekend package β€” romantic oceanfront escape, couples only, signature cocktails. Use the Selva brand voice: sensual, earthy, intimate." }, { month:3, day:17, name:"Spring Break", prompt:"Create a Spring Break promo targeting adults 25+ who want upscale beach time β€” not a party crowd. 'Adults-only. Ocean views. No drama.'" }, ]; function renderHoliday() {