← ClaudeAtlas

pm-daily-planlisted

Weekdays at 7:03 AM — reads epic-status.md to extract the current to-do list, checks git log and standup check-ins, sets today's 3 priorities, auto-approves low-risk tasks, writes updated project-status.html for the developer agent to pick up at 9 AM.
talentedgeai/infinite-leverage · ★ 0 · AI & Automation · score 65
Install: claude install-skill talentedgeai/infinite-leverage
It is now 7:03 AM. Today's date is YYYY-MM-DD. ## Step 0 — Load credentials ```python def parse_env(path): vals = {} try: with open(path) as f: for line in f: line = line.strip() if not line or line.startswith("#") or "=" not in line: continue k, _, v = line.partition("=") vals[k.strip()] = v.strip().strip('"').strip("'") except FileNotFoundError: pass return vals env = {} for f in [".env", ".env.development", ".env.production", ".env.local"]: env.update(parse_env(f)) ``` ## Step 1 — Read epic-status.md and extract to-do list ```bash cd ~/code-projects/{project-slug} ``` Read `docs/product/epic-status.md` in full. Extract every item that is: - Status `☐ planned` — not yet started - Status `🔄 in flight` — actively being worked on - Status `⏳ partially done` — started but not complete For each item, note: Epic ID, item description, current status, pipeline stage, open bug count. This is the master to-do list for today. ## Step 2 — Check git activity and standup check-ins ```bash git log --oneline --since="48 hours ago" --all ``` Read `standup/individual/*.md` — note any new check-ins or blockers since yesterday. Read `content/content-calendar/` — identify this week's content queue. ## Step 3 — Set today's 3 priorities Cross-reference the epic-status to-do list against git activity and check-ins. Select the 3 highest-value items for to