← ClaudeAtlas

developer-dailylisted

Weekdays at 9:03 AM — reads project-status.html for today's approved items, invokes dev-planning to build the day's task list, then runs the development loop (dev-tdd per task) until blocked or all tasks complete. Opens a PR for each completed task.
talentedgeai/infinite-leverage · ★ 0 · AI & Automation · score 65
Install: claude install-skill talentedgeai/infinite-leverage
It is now 9:03 AM. Today's date is YYYY-MM-DD. ## Step 0 — Load credentials and orient ```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)) ``` ```bash cd ~/code-projects/{project-slug} git pull origin main ``` ## Step 1 — Read today's approved items from project-status.html Read `docs/project-status.html`. Extract: - Auto-approved items (flagged by PM at 7 AM) - Any items previously approved by the operator IMPORTANT: If no approved items exist in project-status.html, stop and notify via Lark. Do not invent work. ## Step 2 — Invoke dev-planning Invoke the **dev-planning** skill for each approved item. dev-planning will: - Load the relevant spec from `.specify/features/{slug}/spec.md` if one exists - Route to **dev-feature-plan** when a spec is present (produces impl-plan.md + tasks.md) - Fall back to the daily plan format when no spec exists Output: a concrete task list with Definition of Done for each item. ## Step 3 — Run the development loop For each task in the plan, in order: ### 3a — Chec