Human overview · for understanding
Two repos, four threads, everything landed on real prod · 2026-07-06
Two repos, four threads, everything landed on real prod
Master summary — the gist in 30 seconds
Input: an 11-bug list from your ebo-juli-6 notes, plus a live risk discovered mid-session. Output: 10 of the 11 bugs fixed, tested, and live on the real production apps; the risky duplicate app stopped; Fireflies confirmed healthy.
flowchart LR A["11-bug list<br/>from ebo-juli-6"] --> B["8 fixed<br/>CRM repo"] A --> C["2 fixed<br/>Studio repo"] A --> D["1 parked<br/>Fireflies — your call"] B --> E["Live on prod"] C --> F["Live on prod"] D --> G["Confirmed healthy<br/>no action needed"]
Input: booking confirmation emails, post-call forms, contract signing, timestamp formatting. Output: emails now carry the meeting link correctly (no more leaking a raw placeholder), the post-call preview matches what actually gets sent, times show '09:07' not '09.07', DocuSeal contracts reject typed signatures (draw/upload only), and a safety-net now catches any signed contract whose notification got lost.
flowchart TD A["11 bugs from Notion"] --> B["Branch + build (TDD)"] B --> C["Code review<br/>caught a real leak"] C --> D["Fix + re-test"] D --> E["QA on staging"] E --> F["Merge + deploy<br/>real prod v184"] F --> G["Pushed + documented"]
Input: a shell default that silently pointed deploys at the wrong Modal account. Output: found the duplicate app, confirmed the real one, stopped the duplicate for good.
flowchart LR Shell["Shell's default login"] -->|"pointed at wrong account"| Dup["Duplicate app<br/>same live creds"] Shell -.->|"should point at"| Real["Real prod"] Dup --> Risk["Double-processing risk"] Dup --> Stop["STOPPED ✓"] Real --> Live["Sole live app ✓"]
Input: a research step that always ran even when you didn't want it, and a Figma-import step that silently did nothing. Output: a top-right toggle to skip step 6 by default (flip it on per-project when you do want it), and a 'Create Figma file' button that actually kicks off the handoff to the Figma tool.
flowchart TD P["New project"] --> S5["Steps 1-5"] S5 -->|"toggle OFF (default)"| S7["Step 7: Refine"] S5 -->|"toggle ON"| S6["Step 6: Competitors+Copyguide"] S6 --> S7 S7 --> S9["Step 9: Figma import"] S9 -->|"one-click button"| FigmaFile["Figma file created"]
Input: a question about whether Fireflies joins calls correctly and whether transcripts always reach the CRM. Output: confirmed the icon-not-bot behavior is already correct, and confirmed the webhook that delivers transcripts is pointed at the right (real) production address.
flowchart LR Call["Meet call"] --> FF["Fireflies icon<br/>(not a bot)"] FF --> WH["Webhook"] WH -->|"confirmed correct"| Prod["Real prod CRM"] Prod --> Card["Lead's card<br/>updated"]