7 Power Picks: CRM Scoring Formulas, Focus Sessions, and Notion's Native App Rebuild

7 Power Picks: CRM Scoring Formulas, Focus Sessions, and Notion's Native App Rebuild

Three Notion picks — a copy-paste CRM lead-scoring formula, a ticket-close email automation using Define Variables, and Notion's confirmed SwiftUI rebuild. Three Raycast picks — Focus Sessions deep-dive (v0.64), the Quick Fix command, and Bring Your Own Key. Plus a cross-tool workflow that locks you into Notion-only deep work with one hotkey.

Notion & Raycast Weekly Power Picks
2026. 6. 15. · 14:04
구독 1개 · 콘텐츠 4개
Seven picks this week: three Notion moves (CRM lead scoring, ticket-close email automation, and Notion's native SwiftUI rebuild), three Raycast upgrades (Focus Sessions in v0.64, the Quick Fix command, and Bring Your Own Key), plus one cross-tool workflow that locks you into deep work with a single hotkey.

Notion: CRM lead scoring with a single formula property

Most Notion CRMs rely on manual status updates to separate hot leads from cold ones. A single Formula 2.0 property changes that: it reads three signals — days since last contact, deal size, and tag count — and outputs a priority label automatically.
Add a Formula property to your contacts database called Lead Score, then paste this into the formula editor:
if(
  and(dateBetween(now(), Last Contact, "days") < 7, Deal Size > 5000, Tags.length() >= 2),
  "🔥 Hot",
  if(
    or(dateBetween(now(), Last Contact, "days") < 14, Deal Size > 1000),
    "⚡ Warm",
    "🧊 Cold"
  )
)
What it does: if the contact was touched within 7 days and the deal is above 5 000 and they carry 2+ tags, they're Hot. If either the recency or size threshold is met alone, they're Warm. Everyone else is Cold. Adjust the thresholds directly in the formula — no extra properties, no automations required.
dateBetween() requires both date arguments to be non-empty. If Last Contact can be blank, wrap the outer if in if(empty(Last Contact), "🧊 Cold", ...) to prevent a formula error.1
Notion formula editor showing the lead-scoring if/dateBetween expression
Notion's formula editor — left panel shows available properties; right panel previews the output live. 1

Notion: ticket-close email with a formula variable

Notion's Send mail to action becomes genuinely useful once you pair it with Define variables — that combination lets you compose a personalized message that references the actual page name and the exact timestamp the automation fired.
Setup (requires paid plan + Gmail linked):
  1. Open your support or task database → click New automation.
  2. Trigger: Status set to Complete.
  3. Action 1: Define variables → add Variable 1, click , and enter:
    "Your ticket "" + Trigger page + "" was resolved at " + Time triggered
  4. Action 2: Send mail to → set To to the Submitter people property → paste Variable 1 into the Message field.
  5. Click Create.
Every ticket close now fires a personalized email without you touching anything. The same pattern works for onboarding flows, project kickoffs, or invoice-sent confirmations — swap the trigger and message text.23

Notion: native SwiftUI rebuild confirmed at WWDC 2026

This one isn't a tip — it's a heads-up that matters for how you plan your Notion setup. At WWDC 2026, Notion confirmed it is migrating its macOS and iOS apps from Electron to native SwiftUI.4
The announcement appeared in the Apple developer session around the 28:00 mark. What this means in practice: faster cold-start times, lower RAM usage, better integration with macOS system features (Focus filters, Shortcuts, Stage Manager), and a UI that tracks system appearance changes without the lag Electron apps typically show.
No rollout date is confirmed yet, but the migration is underway. If you've been holding off on building a heavier Notion workspace because of performance concerns, that calculus is changing.

Raycast: Focus Sessions, Focus Categories, and the v0.64 deep-dive

Raycast v0.64 (released June 12, 2026, macOS beta) brought back Raycast Focus — a full distraction-blocking system built into the launcher.5
Starting a session:
  1. Open Raycast → type Start Focus Session.
  2. Set a Goal (text you'll see in the floating bar), a Duration (5 min to 24 h, or "No Limit"), and a ModeBlock Apps & Websites blocks what you list; Allow Apps & Websites blocks everything except what you list.
  3. Add apps, sites, or saved Focus Categories to the block/allow list.
  4. ⌘↵ to start.
The power move is Focus Categories. Run Create Focus Category, name it something like "Distractions", and add Slack, Twitter, YouTube, and whatever else usually derails you. Drop that category into every new session instead of re-picking apps each time. Categories work in both Block and Allow modes.6
Assign Toggle Focus Session to a hotkey. It starts a new session with your last-used config, or stops the current one — one keystroke in, one keystroke out.
Raycast Create Focus Category form showing a custom News category with apps and websites listed
The Create Focus Category form — build a reusable group of apps and sites once, drop it into any session. 6
Other session controls worth knowing: Edit Focus Session lets you add time or adjust the block list mid-session without stopping. Pause Focus Session suspends blocking for a configurable break duration (default 3 minutes). Browser tabs for blocked sites close automatically when a session starts; they're restored when it ends.
For scripting and automation: Raycast Focus ships deeplinks — raycast://focus/start?goal=Deep%20Work&categories=social,gaming&duration=3600&mode=block — so you can trigger a pre-configured session from a terminal script, a Shortcut, or a Raycast Script Command.6
Raycast Start Focus Session form showing goal, duration, mode, and block list fields
The Start Focus Session form in Raycast v0.64. Set goal, duration, and block list in one step. 5

Raycast: Quick Fix — right Shift to clean prose

Raycast v0.61 (macOS beta, May 20) added Quick Fix: select text anywhere on your Mac, tap the hotkey (the Raycast team uses right Shift), and the corrected text pastes back in place — spelling, grammar, and basic phrasing fixed in under two seconds.7
Setup:
  1. Open Raycast → Settings → Raycast Focus → find Quick Fix (it's under AI commands).
  2. First launch runs a one-time onboarding that walks you through setting the hotkey.
  3. Assign right Shift (or any modifier you want) as the trigger.
Unlike a clipboard-based approach, Quick Fix works inline: you select, fire the hotkey, and the corrected version replaces the selection without you ever leaving the app you're writing in. It works across any text field that supports paste — emails, code comments, Notion pages, Slack messages.
The command uses whichever AI model you have configured in Settings → AI. If you're using BYOK (see next pick), it'll route through your own key at no additional cost per correction.

Raycast: Bring Your Own Key (v1.100)

Raycast v1.100 (June 11, 2025) added BYOK — Bring Your Own Key.8 You can now plug in your own API keys for Anthropic, Google, and OpenAI and use Raycast AI (Chat, Quick AI, AI Commands, Quick Fix) at your own provider cost, without a Pro subscription.
Setup:
  1. Raycast → Settings → AI → scroll to Custom API Keys.
  2. Click Add Key → choose provider → paste your key.
  3. Your added models appear in the model picker across all AI features immediately.
Why this matters: if you already pay for Claude or GPT-4o through your own Anthropic/OpenAI account, you no longer need a separate Raycast Pro tier to get AI features. You're billed through the provider at their standard API rates. For heavy AI Chat users, the per-token API cost often runs below the flat Pro subscription — run the numbers for your usage pattern.
The Manage Models command (also new in v1.100) lets you disable individual models or all models from a provider in one view, so your model picker stays clean.8

Combine the Raycast Focus Allow mode with a Notion page to create a hard-walled writing environment — one command blocks everything on your Mac except Notion.
Wire it up once:
  1. In Raycast, run Create Focus Category → name it "Notion Only" → add notion.app (or the Notion Electron process name) and notion.so to the allow list.
  2. Create a Raycast Quicklink with this URL:
    raycast://focus/start?goal=Deep%20Writing&categories=Notion%20Only&duration=3600&mode=allow
  3. Name the Quicklink Notion Focus and assign a hotkey (e.g. ⌥⇧N).
Now press ⌥⇧N and every app except Notion quits or gets blocked. When the hour's up, Raycast restores your tabs. You can also chain this into an Apple Shortcut that opens a specific Notion page at the same time — launch the Shortcut, and both Notion and the session start simultaneously.69

Coming up next

  • Notion Agent research pipelines: chaining Agent prompts to pull from Google Drive, Slack, and web search into a structured output database — still the most-requested pick from reader replies.
  • Raycast Auto Transcribe with Granola (v1.102): never take meeting notes again — confirmed in the July 2025 stable changelog, setup walkthrough incoming.
  • Formula 2.0 ternary chains: the X ? Y : Z shorthand for multi-condition if/else — cleaner than nested if() calls and essential for anyone building dashboards.

이 콘텐츠를 둘러싼 관점이나 맥락을 계속 보강해 보세요.

  • 로그인하면 댓글을 작성할 수 있습니다.