meta-plan

Coordinates agent and skill creation, testing, calibration, and iteration via plan files and scripts.

6|Updated Mar 5, 2026
One-click install
npx skills add https://github.com/slowman2084/meta-agent --skill meta-plan
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: meta-plan
Source: https://github.com/slowman2084/meta-agent/tree/main/source/skills/meta-plan
Command: npx skills add https://github.com/slowman2084/meta-agent --skill meta-plan

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Meta-plan solves the fragmentation and manual coordination involved in creating, testing, calibrating, and iterating Agents and Skills by providing a single, disk-backed planning and execution controller that supports resumable runs and artifact-driven state.

Core Features & Use Cases

  • Structured Plan Generation: Creates timestamped plan markdown files that act as the single source of truth for a create/test/calibrate/iterate workflow.
  • Orchestration of Atomic Skills: Drives and invokes meta-* Skills (meta-ideal-state, meta-prompt-engineer, meta-testcase-gen, meta-rubric-gen, meta-eval-judge, meta-debug, meta-iterate) to complete individual steps.
  • Resumable Execution & Artifact Management: Recovers context via scripts/context_tool.py, marks step completion based on files in tmp/, enforces backups to bak/, and produces evaluation reports and status.json for synchronization.
  • Use Case: Scaffold a new agent, auto-generate testcases and rubrics, run baseline executions across platforms, evaluate with meta-eval-judge, and iterate on prompts based on a consolidated report.

Quick Start

Use meta-plan to create an agent named 'lyrics-bot' and execute a baseline test run to generate a full evaluation report.

Frequently Asked Questions about meta-plan

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

FAQPage Schema
How do I automate agent lifecycle planning and testing in a repository workspace?

Agent lifecycle automation uses a disk-backed planning controller to generate structured plan markdown files, orchestrating creation, testing, calibration, and iteration across your repository workspace. It produces timestamped plans and manages tmp and bak artifacts for resumable execution.

Can I resume an interrupted agent calibration and evaluation workflow?

Yes, resumable execution recovers context via scripts/context_tool.py and marks step completion based on files in the tmp/ directory. It enforces backups to bak/ and produces status.json for synchronization, allowing interrupted agent calibration workflows to resume accurately.

How do I generate test cases and rubrics for automated agent evaluation?

Generating test cases and rubrics for automated agent evaluation involves orchestrating meta-testcase-gen and meta-rubric-gen skills. The controller exports test inputs, executes cases across platform modes, and evaluates results using meta-eval-judge to produce a consolidated report.

What's the best way to orchestrate multiple meta-* skills for prompt iteration?

Orchestrating multiple meta-* skills for prompt iteration requires a single planning controller that drives meta-ideal-state, meta-prompt-engineer, meta-debug, and meta-iterate. It manages artifact-driven state and produces evaluation reports to guide prompt refinement across the repository workspace.

Does agent orchestration support platform-specific execution modes for baseline runs?

Agent orchestration supports platform modes for baseline execution runs by exporting test inputs and evaluating results consistently. The controller applies platform-specific configurations during execution and consolidates outputs into a unified evaluation report with status synchronization.

Why does my agent testing workflow fail to synchronize state across multiple meta-* skills?

Agent testing workflow synchronization fails when tmp/ artifacts are missing or scripts/status_tool.py cannot read status.json. The controller relies on these disk-backed artifacts to mark step completion, enforce bak/ backups, and recover context via scripts/context_tool.py for accurate state tracking.