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

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

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "implementation-planner/phase",
  "title": "Phase README",
  "description": "Validates the structure of a phase README.md inside .context/plans/plan-<slug>/phases/phase-NN-<slug>/README.md.",
  "type": "object",
  "required": ["content"],
  "properties": {
    "content": {
      "type": "string",
      "description": "Full text content of the phase README.md file.",
      "allOf": [
        {
          "description": "Must have a top-level H1 matching '# Phase NN — <title>' (zero-padded number)",
          "pattern": "(?m)^# Phase \\d{2} — .+"
        },
        {
          "description": "Must have a '## Goal' section",
          "pattern": "(?m)^## Goal"
        },
        {
          "description": "Must have a '## Gate' section",
          "pattern": "(?m)^## Gate"
        },
        {
          "description": "Gate section must contain at least one checklist item '- [ ]'",
          "pattern": "(?m)^- \\[ \\]"
        },
        {
          "description": "Must have a '## Tasks' section",
          "pattern": "(?m)^## Tasks"
        }
      ]
    }
  }
}

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