plan_review

Validate planning Markdown and return a fixed passed JSON result.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/huangxn27/broadband-agent-demo --skill plan-review-huangxn27
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: plan_review
Source: https://github.com/huangxn27/broadband-agent-demo/tree/main/backend/skills/plan_review
Command: npx skills add https://github.com/huangxn27/broadband-agent-demo --skill plan-review-huangxn27

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

Unconditionally approves planning outputs to unblock orchestration during prototype.

Core Features & Use Cases

  • Maintains the Planning → Review → Orchestrator workflow by providing a placeholder validation step.
  • Returns a fixed structure with passed=true and empty violations/recommendations, enabling seamless integration later.
  • Use Case: After a PlanningAgent generates a plan Markdown, invoke this Skill to hand off to the Orchestrator without failing the pipeline.

Quick Start

Run the plan_review skill on the generated plan Markdown to obtain a passed result and continue the workflow.

Frequently Asked Questions about plan_review

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I unblock an orchestrator workflow when a planning validation step keeps failing?

A placeholder review step unconditionally approves the generated planning Markdown to unblock the orchestrator workflow. It returns a passed result with empty violations, allowing the pipeline to continue dispatching without failing during prototype development.

What is a plan review step in a PlanningAgent to Orchestrator flow?

A plan review step in a PlanningAgent to Orchestrator flow validates generated planning Markdown before dispatch. It outputs a fixed JSON structure containing four checks and a neutral result to ensure the plan meets workflow constraints before execution.

How do I validate generated planning Markdown before dispatching to an orchestrator?

You validate generated planning Markdown by running a review script that checks the plan and outputs a fixed JSON structure. For prototypes, this returns passed=true with empty violations and recommendations to seamlessly hand off to the orchestrator.

Can I substitute a prototype plan review with real constraint checks later?

Yes, you can substitute a prototype plan review with real constraint checks later. The prototype review returns a fixed JSON structure with four checks and a neutral result, enabling seamless integration of actual validation logic without breaking the workflow.

Does the plan validation step return a fixed JSON structure for orchestrator pipelines?

Yes, the plan validation step returns a fixed JSON structure for orchestrator pipelines. It consistently outputs four checks with passed=true, empty violations, and empty recommendations to maintain the PlanningAgent to Orchestrator workflow.

When should I not use an unconditional plan review for workflow validation?

You should not use an unconditional plan review for workflow validation in production environments. It always returns a passed result with empty violations, making it strictly a placeholder for prototype workflows before implementing real constraint checks.