Runs an on-demand validation of a project's hierarchical plan tree using a thin wrapper around an existing validation script. It enforces eight invariants (parent existence, children integrity, no orphans, valid status values, monotonic revisions, test_ref existence, DAG no-cycles, and freeze_reason requirements) and surfaces specific failing conditions.
Invoke before plan-modifying operations (/aura-frog:plan-expand, /aura-frog:plan-promote, /aura-frog:plan-archive) and as part of pre-commit hooks when .claude/plans/ contains changes. Avoid running on read-only commands or during undo flows where transient violations are expected.
aura-frog/scripts/plans/validate-plan-tree.sh as the canonical implementation (the skill is a thin wrapper).docs/architecture/HIERARCHICAL_PLANNING.md and getting-started guides.Inference: Built for code-oriented agent harnesses (Claude Code, Codex-style agents) and CI hooks that can run shell scripts and inspect exit codes.
Plan Tree Validator is a thin SKILL.md wrapper around an external bash script (validate-plan-tree.sh). No bundled scripts to execute. The SKILL.md itself is well-structured: clear behavior steps, an 8-invariant table, explicit when-to-invoke/not-invoke guidance, and output discipline. However, it's tightly coupled to the aura-frog ecosystem and won't function without the companion script and .claude/plans/ directory structure.
Pure SKILL.md — no scripts bundled, no executable content. Entirely safe. Niche utility limited to aura-frog users. Well-documented for what it is.
Flutter Expert
Expert Flutter/Dart patterns and best practices for building maintainable cross-platform mobile apps (state management, navigation, testing).
Documentation (ADR & Runbook)
Generates and templates operational documentation: Architecture Decision Records (ADRs) and runbooks, with templates and principles for when and how to record d
Quick Bugfix
A compact TDD-driven bugfix workflow that enforces root-cause investigation, failing-test-first discipline, and stepwise verification to prevent regressions.