CtrlK
BlogDocsLog inGet started
Tessl Logo

pantheon-ai/planning-toolkit

End-to-end project planning toolkit: converts requirements into structured phased implementation plans, groups phases into dependency-ordered waves for parallel subagent execution, and decomposes large branches into focused pull requests.

90

Quality

90%

Does it follow best practices?

Impact

Pending

No eval scenarios have been run

SecuritybySnyk

Passed

No known issues

Overview
Quality
Evals
Security
Files

plan.schema.jsonimplementation-planner/references/schemas/

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "implementation-planner/plan",
  "title": "Plan README",
  "description": "Validates the structure of .context/plans/plan-<slug>/README.md as a plain-text document.",
  "type": "object",
  "required": ["content"],
  "properties": {
    "content": {
      "type": "string",
      "description": "Full text content of the README.md file.",
      "allOf": [
        {
          "description": "Must have a top-level H1 matching '# Implementation Plan — <title>'",
          "pattern": "(?m)^# Implementation Plan — .+"
        },
        {
          "description": "Must have a '## Goal' section",
          "pattern": "(?m)^## Goal"
        },
        {
          "description": "Must have a '## Phases' section",
          "pattern": "(?m)^## Phases"
        },
        {
          "description": "Phases section must contain a markdown table header row with #, Phase, Status, Tasks columns",
          "pattern": "(?m)^\\|\\s*#\\s*\\|\\s*Phase\\s*\\|\\s*Status\\s*\\|\\s*Tasks\\s*\\|"
        }
      ]
    }
  }
}

implementation-planner

references

schemas

phase.schema.json

plan.schema.json

readme-file.schema.json

step-file.schema.json

task.schema.json

anti-patterns.md

example-transformation.md

mode2-advanced.md

worked-examples.md

SKILL.md

tile.json