← ClaudeAtlas

daily-brieflisted

Build the user's morning task brief — pull open tasks from their Notion Tasks DB, score and rank by priority × urgency × type-balance × energy fit (with wait-factor scoring and type-balance rotation), pick the top 3–7 that fit available time, and push the formatted list to their Telegram bot. Saves the selection to today_brief.json so /capture can resolve "1 done" / "2 push thu" replies. Use this skill whenever the user says /daily-brief, asks for "today's tasks", "what should I work on", "morning brief", "rebuild my todo list", "what's on my plate", or wants their daily plan refreshed. Also use when they give a capacity hint like "I have 4 hours today" — pass --hours 4.
ericluo04/claude-academic-workflow · ★ 3 · AI & Automation · score 66
Install: claude install-skill ericluo04/claude-academic-workflow
# /daily-brief — score, rank, send the morning push > **Status.** The author has migrated orchestration to an hourly Claude Code cloud routine — see [orchestration/README.md](../../orchestration/README.md) (Pattern A). This skill documents the local / GitHub-Actions-era pattern (Pattern B), which remains fully usable for setups without cloud routines. ## Personalization This skill resolves placeholders against `~/.claude/state/personal_config.json`. See `_config/README.md` and `_config/personal_config.example.json` for setup. If the config is missing or a needed field is unset, the skill must surface an error to the user and refuse to proceed rather than guess. Required config fields: - `personal_config.notion.tasks_data_source_id` — the data-source ID of the Tasks DB. - `personal_config.paths.claude_state_dir` — local directory holding ephemeral state files (e.g. `~/.claude/state`). - Telegram credentials are read from a separate gitignored file at `<claude_state_dir>/telegram.json` with fields `{bot_token, chat_id}`. Bot tokens never go in `personal_config.json`. ## Purpose This is the outbound half of the task orchestration system. Once per weekday morning (and on demand), it converts the unified Notion Tasks DB into a 3–7 item ranked list and pings Telegram. The brief is the daily contract: if it's not on the brief, it doesn't need to happen today. The capture half (`/capture`) reads replies and writes back. This skill is also the writer of `today_brief.json`, whic