Start each day with clarity

Based on your priorities, focus on this today

What you will receive

Your focus for today

just now

Today, focus on: Deep work on the API redesign

Why this matters: You mentioned this is blocking the team. Two hours of focused work today could unblock three people tomorrow.

One small step: Open the codebase and outline the three main changes needed.

You've got this.

How it works

  1. 1You tell Humrun your current priorities and goals
  2. 2AI analyzes what deserves focus today
  3. 3You get one clear focus area with actionable steps

You configure

Launch new feature, finish documentation, prepare presentation

What are you working on this week?

sk-...

For generating personalized suggestions

View Python code
import requests
import os
from datetime import datetime

PRIORITIES = os.environ.get("PRIORITIES", "")
OPENAI_API_KEY = os.environ.get("OPENAI_API_KEY")

day_of_week = datetime.now().strftime("%A")

prompt = f"""Based on these priorities: {PRIORITIES}

Today is {day_of_week}. Suggest ONE thing to focus on today.

Format:
- Focus: [one clear task]
- Why it matters: [one sentence]
- First step: [one concrete action]
- Encouragement: [one short sentence]

Be specific and actionable. Keep the total response under 75 words."""

response = requests.post(
    "https://api.openai.com/v1/chat/completions",
    headers={"Authorization": f"Bearer {OPENAI_API_KEY}"},
    json={
        "model": "gpt-4o-mini",
        "messages": [{"role": "user", "content": prompt}],
        "max_tokens": 150
    }
)

focus = response.json()["choices"][0]["message"]["content"]
print(focus)
Suggested schedule: Every weekday at 8 AMNotifications: After every run
Browse more templates