{
  "markdown": "<p align=\"center\">\n  <img src=\"https://img.shields.io/badge/claude--code-plugin-8A2BE2\" alt=\"Claude Code Plugin\" />\n  <img src=\"https://img.shields.io/badge/skills-1-blue\" alt=\"1 Skill\" />\n  <img src=\"https://img.shields.io/badge/agents-1-green\" alt=\"1 Agent\" />\n  <img src=\"https://img.shields.io/badge/license-MIT-green\" alt=\"MIT License\" />\n</p>\n\n# Memoriant Temporal Planner Skill\n\nA Claude Code plugin for dependency-ordered long-horizon planning. Describe your tasks and their dependencies — get back a structured DAG, critical path analysis, parallel execution groups, deadline risk flags, and a live-updateable plan with ETA tracking.\n\n**No servers. No Docker. Just install and use.**\n\n## Install\n\n```bash\n/install NathanMaine/memoriant-temporal-planner-skill\n```\n\n## Cross-Platform Support\n\n### Claude Code (Primary)\n```bash\n/install NathanMaine/memoriant-temporal-planner-skill\n```\n\n### OpenAI Codex CLI\n```bash\ngit clone https://github.com/NathanMaine/memoriant-temporal-planner-skill.git ~/.codex/skills/temporal-planner\ncodex --enable skills\n```\n\n### Gemini CLI\n```bash\ngemini extensions install https://github.com/NathanMaine/memoriant-temporal-planner-skill.git --consent\n```\n\n## Skills\n\n| Skill | Command | What It Does |\n|-------|---------|-------------|\n| **Temporal Planner** | `/temporal-planner` | Build task DAGs, find critical path, group parallel work, track progress, replan on changes |\n\n## Agent\n\n| Agent | Best Model | Specialty |\n|-------|-----------|-----------|\n| **Temporal Planner Agent** | Sonnet 4.6 | DAG construction, critical path analysis, execution wave grouping, ETA calculation, replanning |\n\n## Quick Start\n\n```bash\n# Plan a project\n/temporal-planner\n\n# Or trigger directly\n\"Plan this project: set up the database (2 days), then configure the API (3 days), then build frontend and write docs in parallel (5 days / 2 days). Launch deadline is April 30.\"\n\n# Replan after a change\n\"The database vendor is delayed by 2 weeks. Replan.\"\n\n# Check progress\n\"We finished the database setup. Update the plan and give me the new ETA.\"\n```\n\n## What You Get\n\n### Critical Path Analysis\nIdentifies which tasks determine your minimum project duration. Any slip on the critical path delays the project by the same amount.\n\n### Execution Waves\nGroups tasks by dependency level — all tasks in the same wave can run simultaneously:\n\n```\nWave 1 (Day 0):   db-setup [2 days]\nWave 2 (Day 2):   api-config [3 days]\nWave 3 (Day 5):   frontend, docs, tests [parallel — all can start now]\n```\n\n### Deadline Risk Flags\nChecks every task with a deadline against its earliest possible finish date. Flags any task or chain at risk before it's too late to act.\n\n### Mermaid Diagrams\nGenerates DAG visualizations in Mermaid syntax (critical path highlighted):\n\n```mermaid\ngraph TD\n  db-setup[\"Set up database\\n2 days\"] --> api-config[\"Configure API\\n3 days\"]\n  api-config --> frontend[\"Write frontend\\n5 days\"]\n  api-config --> docs[\"Write docs\\n2 days\"]\n\n  style db-setup fill:#ff6b6b\n  style api-config fill:#ff6b6b\n  style frontend fill:#ff6b6b\n```\n\n### Live Replanning\nWhen tasks are delayed, blocked, or cancelled, replan from current state with updated critical path and ETA. The skill always asks: \"Has the effort estimate changed, or only the start date?\" — these have different downstream effects.\n\n## Input Formats\n\nNatural language, structured lists, or YAML — the skill parses all three:\n\n```yaml\ntasks:\n  - id: db-setup\n    name: \"Set up database\"\n    effort_days: 2\n    dependencies: []\n  - id: api-config\n    name: \"Configure API\"\n    effort_days: 3\n    dependencies: [db-setup]\n    deadline: \"2025-04-30\"\n```\n\n## Source\n\nBuilt from [NathanMaine/temporal-executive-agent](https://github.com/NathanMaine/temporal-executive-agent) — a research agent for long-horizon planning, replanning, and temporal reasoning.\n\n## License\n\nMIT\n",
  "bytes": 3854,
  "sha": "432ad52292d94ca66845a13841c640e3e56aaf683dc1b22c18384983510f91ea",
  "repo_slug": "nathanmaine/memoriant-temporal-planner-skill",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_nathanmaine_memoriant_temporal_planner_s_26aaef2c/readme"
}