jade-core-retry-router

Classifies failed JADE migration rules and routes them to retry or escalation.

1|Updated Apr 14, 2026
One-click install
npx skills add https://github.com/TheRealSeber/PolishedJADEite --skill jade-core-retry-router
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: jade-core-retry-router
Source: https://github.com/TheRealSeber/PolishedJADEite/tree/main/.claude/skills/jade-core-retry-router
Command: npx skills add https://github.com/TheRealSeber/PolishedJADEite --skill jade-core-retry-router

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill prevents a single failed JADE migration rule from stopping the entire run by deciding whether to retry the rule or escalate it for human review.

Core Features & Use Cases

  • Failure classification: Reads fix results, semantic diffs, and build logs to identify build errors, semantic mismatches, stalled retries, and missing artifacts.
  • Retry queue management: Requeues eligible rules with monotonic attempt tracking and priority ordering.
  • Escalation handling: Creates escalation records and a human-readable ACTION_REQUIRED.md when the retry budget is exhausted.
  • Use case: After a batch rule fails verification, the Skill can automatically route it back into the same migration loop instead of aborting the whole pipeline.

Quick Start

Use the jade-core-retry-router skill to analyze the latest artifacts directory and generate the retry queue, escalation ledger, and final status files.

Frequently Asked Questions about jade-core-retry-router

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

FAQPage Schema
How do I retry failed JADE migration rules without stopping the entire batch run?

Failed JADE migration rules are routed back into a retry queue by analyzing fix results, semantic diffs, and build logs to classify failures, preserve attempt counts, and requeue eligible rules with priority ordering.

What happens when a migration rule exhausts its retry budget during verification?

When the retry budget is exhausted, the migration rule is escalated for human review by creating an escalation ledger record and generating an ACTION_REQUIRED.md file detailing the stalled rule attempts.

How does failure classification work for stalled migration rule attempts?

Failure classification for stalled migration attempts reads fix results, semantic diffs, and build logs to identify build errors, semantic mismatches, stalled retries, and missing artifacts before deciding to retry or escalate.

Do I need fix results and build logs to route failed migration rules?

Yes, fix results, semantic diffs, and build logs are required inputs to classify verification gate breaks and batch failures, preserve monotonic attempt counts, and write routing outputs for the JADE pipeline.

Can I use this retry routing approach for verification gate breaks in a migration pipeline?

Yes, retry routing applies to migration batch failures, verification gate breaks, and stalled rule attempts in the JADE pipeline, automatically requeuing eligible rules instead of aborting the workflow.

Why does a single failed migration rule abort my entire pipeline run?

A single failed migration rule aborts the pipeline because without retry queue management and escalation handling, the system lacks failure classification and attempt tracking to isolate and requeue the broken rule.