slate-ar-quality

Runs deep-research quality-gap loops to detect API, DX, architecture, and test coverage gaps in Slate v2.

16.5k|997|Updated Dec 2, 2019
One-click install
npx skills add https://github.com/udecode/plate --skill slate-ar-quality
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: slate-ar-quality
Source: https://github.com/udecode/plate/tree/main/.agents/skills/slate-ar-quality
Command: npx skills add https://github.com/udecode/plate --skill slate-ar-quality

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Improving a rich-text editor surface beyond a single bug requires systematic discovery of API, DX, architecture, documentation, and test coverage gaps, which is tedious to do manually. This Skill automates that discovery by running deep-research and quality-gap loops against a Slate v2 checkout and routing accepted findings to the right remediation workflow.

Core Features & Use Cases

  • Quality-Gap Research Loops: Runs Autoresearch research-setup, quality-gap, and gap-candidates commands against a Slate v2 working directory to surface API/DX, architecture, behavior coverage, docs, and example gaps.
  • Finding Routing: Routes accepted gaps to the appropriate follow-up workflow: slate-patch for correctness gaps, slate-ar-gate for test suite gaps, slate-ar-perf for performance gaps, and slate-plan for public API or architecture gaps.
  • Durable Research State: Keeps research state under .tmp/slate-v2/autoresearch.research/<slug>/ so quality-gap progress persists across sessions.
  • Use Case: A maintainer wants to harden the Slate v2 editor API before release. They invoke this Skill with a topic slug, review the generated gap candidates, apply the safe ones, and dispatch each accepted finding to the correct patch, plan, gate, or perf workflow.

Quick Start

Ask the assistant to run a Slate v2 quality-gap research loop for a given topic slug and route the accepted findings to the appropriate remediation skills.

Frequently Asked Questions about slate-ar-quality

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

FAQPage Schema
How do I find API and DX gaps in a Slate v2 editor codebase?

Run the slate-ar-quality workflow with a topic slug, which executes Autoresearch research-setup, quality-gap, and gap-candidates commands against the .tmp/slate-v2 checkout. It produces a checklist of accepted gaps you can route to remediation workflows.

How do I run a quality-gap research loop with Codex Autoresearch?

Invoke research-setup with a working directory, slug, and goal, then run quality-gap --list and gap-candidates for that research slug. Apply candidates only after inspecting them and confirming the write scope is safe.

When should I use quality-gap research instead of a direct bug fix?

Use quality-gap research when the goal is broad improvement of an API, architecture, docs, or test coverage surface. If the failing behavior is already known and reproducible, use a direct patch workflow instead.

Where does the quality-gap research state get stored?

Durable research state is kept under .tmp/slate-v2/autoresearch.research/<slug>/, so progress on the accepted checklist persists across sessions. A quality_gap value of 0 closes only the current checklist, not future discovery.

What happens to accepted quality-gap findings?

Accepted findings are routed by type: correctness gaps with missing oracles go to slate-patch, test suite gaps to slate-ar-gate, performance gaps to slate-ar-perf, and public API or architecture gaps to slate-plan.