skills-catalog/ln-510-quality-coordinator/SKILL.md
Use when coordinating story quality evaluation with mandatory research, worker summaries, agent review, regression evidence, and bounded refinement.
npx skillsauth add levnikolaevich/claude-code-skills ln-510-quality-coordinatorInstall 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: 5XX Quality
Evaluation-platform coordinator for story quality review.
MANDATORY READ: Load shared/references/evaluation_coordinator_runtime_contract.md, shared/references/evaluation_summary_contract.md, shared/references/evaluation_research_contract.md, shared/references/loop_health_contract.md
MANDATORY READ: Load shared/references/agent_review_workflow.md, shared/references/agent_delegation_pattern.md
MANDATORY READ: Load references/criteria_validation.md, references/gate_levels.md
ln-511-code-quality-checkerln-512-tech-debt-cleanerln-513-regression-checkerln-514-test-log-analyzerPrimary input:
storyId--previous-cycle-focus (optional, from ln-500): comma-separated blocking categories from prior FAIL cycleStatus filter:
To ReviewFast-track paths that skip research are not allowed.
Every quality run must include:
Runtime family:
evaluation-runtimeIdentifier:
quality-{storyId}Phase order:
PHASE_0_CONFIGPHASE_1_DISCOVERYPHASE_2_READ_ONLY_EVIDENCEPHASE_3_CLEANUPPHASE_4_AGENT_BARRIERPHASE_5_MERGEPHASE_7_REFINEMENTPHASE_8_VERDICTPHASE_9_SELF_CHECKUse the Skill tool for delegated workers. Do not inline worker logic inside the coordinator.
TodoWrite format (mandatory):
Resolve Story and build runtime manifestLoad Story metadata and detect changed filesRun quality checkers and research in parallelApply safe tech-debt cleanupSync agents and wait for all evidenceMerge and deduplicate all findingsRun bounded refinement loopCompute quality verdict and scoreVerify runtime cleanup and self-checkRepresentative invocations:
Skill(skill: "ln-511-code-quality-checker", args: "{storyId}")
Skill(skill: "ln-512-tech-debt-cleaner", args: "{storyId}")
Skill(skill: "ln-513-regression-checker", args: "{storyId}")
Skill(skill: "ln-514-test-log-analyzer", args: "{storyId}")
storyId.required_research=true.evaluation-runtime.Parallel work allowed in this phase:
shared/references/evaluation_research_contract.md)ln-511-code-quality-checkerln-513-regression-checkerln-514-test-log-analyzerRules:
When previous_cycle_focus is provided:
ln-512-tech-debt-cleaner only after read-only evidence is collected.evaluation-runtime.failure_class from agent results as transport evidence:
rate_limited, tool_missing, auth_missing, permission_denial, and asked_question are not quality FAIL findings by themselves.timeout_productive can continue to merge/review only when output/log/session evidence exists.Merge inputs:
ln-511 summaryln-512 summaryln-513 summaryln-514 summaryRules:
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:
Compute normalized quality verdict using:
Final verdict values:
PASSCONCERNSFAILRequired 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 quality verdict.
shared/references/evaluation_coordinator_runtime_contract.md, shared/references/evaluation_summary_contract.mdshared/references/evaluation_research_contract.md../ln-511-code-quality-checker/SKILL.md, ../ln-512-tech-debt-cleaner/SKILL.md, ../ln-513-regression-checker/SKILL.md, ../ln-514-test-log-analyzer/SKILL.mdreferences/criteria_validation.md, references/gate_levels.mdVersion: 7.0.0 Last Updated: 2026-02-09
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.