skills-catalog/ln-813-optimization-plan-validator/SKILL.md
Use when validating optimization plans through the evaluation platform with mandatory research, parallel agent evidence, sequential merge, and bounded refinement.
npx skillsauth add levnikolaevich/claude-code-skills ln-813-optimization-plan-validatorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Paths: File paths (
shared/,references/,../ln-*) are relative to skills repo root.
Type: L2 Coordinator Category: 8XX Optimization
Coordinator for validating optimization plans before execution.
MANDATORY READ: Load shared/references/evaluation_coordinator_runtime_contract.md, shared/references/evaluation_summary_contract.md, shared/references/evaluation_research_contract.md
MANDATORY READ: Load shared/references/agent_review_workflow.md, shared/references/agent_delegation_pattern.md
MANDATORY READ: Load references/optimization_review_focus.md
Primary input:
.hex-skills/optimization/{slug}/context.mdRequired context sections:
Runtime family:
evaluation-runtimeIdentifier:
optimization-{slug}Phase order:
PHASE_0_CONFIGPHASE_1_LOAD_CONTEXTPHASE_2_AGENT_LAUNCHPHASE_3_RESEARCH_AND_FEASIBILITYPHASE_4_MERGEPHASE_5_REFINEMENTPHASE_6_VERDICTPHASE_7_SELF_CHECKMandatory todo items:
ConfigLoad contextAgent launchResearch and feasibilityMergeRefinementVerdictSelf-checkThe coordinator runs research inline (per shared/references/evaluation_research_contract.md) and refinement inline (per shared/agents/prompt_templates/iterative_refinement.md and shared/agents/prompt_templates/refinement_perspectives.md). Refinement advisor sessions are launched directly via shared/agents/agent_runner.mjs.
required_research=true.evaluation-runtime..hex-skills/optimization/{slug}/context.md.evaluation-runtime.agents_skipped_reason and continue.Required work:
Minimum research lanes:
Feasibility checks:
context.md.Refinement uses a 2-stage state machine per shared/agents/prompt_templates/iterative_refinement.md and shared/agents/prompt_templates/refinement_perspectives.md:
dry_run_executor, new_dev_tester, adversarial_reviewerfinal_sweepRules:
Possible verdicts:
GOGO_WITH_CONCERNSNO_GONO_GO when:
Required checks:
Write summary_kind=evaluation-coordinator.
Recommended payload:
statusfinal_resultreport_pathworker_countagent_countissues_totalseverity_countswarningscleanup_verifiedresearch_completedevaluation-coordinator summary writtenMANDATORY READ: Load shared/references/meta_analysis_protocol.md
After the coordinator run, analyze the session per protocol section 7 and include the protocol-formatted output with the final optimization-plan verdict.
shared/references/evaluation_coordinator_runtime_contract.md, shared/references/evaluation_summary_contract.mdshared/references/evaluation_research_contract.mdshared/references/agent_review_workflow.md, shared/references/agent_delegation_pattern.mdreferences/optimization_review_focus.mdVersion: 1.0.0 Last Updated: 2026-03-15
testing
Checks runtime lifecycle and config validation: bootstrap, shutdown, probes, cleanup, env sync, and fail-fast startup. Use for runtime readiness.
testing
Checks races, deadlocks, async hazards, TOCTOU, blocking I/O, and shared resource contention. Use when auditing concurrency correctness.
testing
Checks diagnosability through structured logs, metrics, traces, correlation IDs, and useful log levels. Use when auditing incident visibility.
development
Finds code that can be safely deleted: unreachable, unused, obsolete compatibility, and commented-out code. Use when pruning dead code.