Analyse Design Gaps
SkillMediaanalyse-design-gaps is a skill that compares two design inventories and reports the gaps between them. Once added, your AI can take two inventories produced by inventory-design and show what appears in one but not the other. This helps you see what is missing from a design without checking the lists by hand.
Available today. Use it from your connected AI after setup.
No other account needed.
Add the skill, then ask your AI to compare two design inventories that were created with inventory-design. It will return the gaps it finds between them.
Then ask your AI: use the Analyse Design Gaps skill
What your AI can do with it
- Compare two design inventories and find the gaps between them
- Show what is present in one inventory but missing from the other
- Work with inventories produced by inventory-design
- Produce the comparison results so you can review the gaps
What this skill tells your AI
The instructions your AI receives, as published by atomicinnovation/accelerator in skills/design/analyse-design-gaps/SKILL.md and read by ahel’s review.
!${CLAUDE_PLUGIN_ROOT}/bin/accelerator config context --skill analyse-design-gaps --fail-safe
!${CLAUDE_PLUGIN_ROOT}/bin/accelerator config agents --fail-safe
If no "Agent Names" section appears above, use these defaults: accelerator:reviewer, accelerator:codebase-locator, accelerator:codebase-analyser, accelerator:codebase-pattern-finder, accelerator:documents-locator, accelerator:documents-analyser, accelerator:web-search-researcher.
Design inventories directory: !${CLAUDE_PLUGIN_ROOT}/bin/accelerator config path research_design_inventories --fail-safe
Design gaps directory: !${CLAUDE_PLUGIN_ROOT}/bin/accelerator config path research_design_gaps --fail-safe
You are tasked with comparing two design inventories and producing a structured
design-gap artifact. The artifact's prose paragraphs must satisfy the
extract-work-items cue-phrase contract so they flow into the work-item
lifecycle without manual editing.
Steps
1. Resolve Each Source-Id to Its Inventory
For each of [current-source-id] and [target-source-id]:
a. Validate format: must match ^[a-z0-9][a-z0-9-]*$. Report a clear error
naming offending characters if not.
b. Glob <design_inventories>/*-{source-id}/ (excluding leading-dot directories).
c. Zero matches: exit non-zero with:
error: source-id '<id>' did not match any inventory under <root>. Available source-ids: <comma-separated list>. Run /accelerator:inventory-design <id> <location> first.
d. Read frontmatter for each match. If an inventory.md is missing,
unparseable, or lacks a status field, treat it as superseded and log a
one-line warning naming the directory.
e. Filter to status != superseded (also exclude leading-dot directories).
If multiple remain (crashed prior supersede step), apply the resolver tiebreaker:
- Highest
sequencenumber in frontmatter (primary — robust against clock skew) - Directory mtime, newest first (secondary — for equal-sequence concurrent writes)
YYYY-MM-DD-HHMMSSdirectory-name prefix, newest first (final)
Emit a one-line warning naming any non-selected directories when more than one remained after filtering.
f. Record the resolved absolute paths in the gap artifact frontmatter as
current_inventory and target_inventory.
2. Read Both Inventories
Read each resolved inventory.md in full into context.
3. Compute Structural Diff
Compare the two inventories across five categories:
- Token Drift — colour, typography, spacing tokens present in current but missing from target, or vice-versa; tokens with changed values
- Component Drift — components present in both but with structural changes (variant count, prop changes, composition changes)
- Screen Drift — screens/routes that have changed navigation structure, state matrix, or layout
- Net-New Features — features present in target but not in current
- Removed Features — features present in current but not in target
If a category has no differences, omit its H2 section from the artifact rather than writing an empty section.
4. Write Gap Prose
For each non-empty category, write at least one paragraph whose prose satisfies
the cue-phrase contract used by extract-work-items. Each paragraph must contain
one or more of:
- "we need to …" / "we need a …"
- "users need …"
- "the system must …"
- "Implement …" (capital letter on the named feature)
Guidance per category:
- Token Drift: describe specific tokens to migrate, add, or remove. Example: "We need to migrate the 14-colour primary scale to the 8-token system defined in the target."
- Component Drift: describe the structural changes needed. Example: "Users need a five-variant Button — the current implementation has two variants while the target design specifies five."
- Screen Drift: describe changes to navigation structure or states. Example: "The system must support a redesigned Settings navigation pattern matching the target's two-level sidebar."
- Net-New Features: introduce the feature and its scope. Example: "Implement Search to expose Cmd+K activation, query input, and recent-history preview panels."
- Removed Features: flag for confirmation before removal. Example: "The legacy Analytics tab is present in the current implementation but absent from the target. We need to confirm with stakeholders whether it should be removed before proceeding."
Avoid bare structural headings without actionable content. Every non-empty H2 must contain at least one paragraph meeting the cue-phrase contract.
5. Run Cue-Phrase Audit
After generating the gap body, run:
${CLAUDE_PLUGIN_ROOT}/bin/accelerator design audit-cue-phrases \
"<draft-body-path>"
On exit 2 (usage error — the file could not be read at all): report the error to the user and stop. There are no offending sections to revise.
On exit 1: the audit names the offending H2 sections. Revise only those sections while keeping passing sections byte-identical. Re-run the audit. After three consecutive failures, write the rejected body to:
<design_gaps>/.YYYY-MM-DD-{current-source-id}-vs-{target-source-id}.draft.md
with a note at the top naming the failed sections, then report the failure and the draft path to the user. Do not write the artifact to its final path.
The frontmatter timestamp is generated once before the first write attempt and reused across retries.
6. Generate Metadata
Run:
${CLAUDE_PLUGIN_ROOT}/bin/accelerator corpus metadata derive \
--filename-timestamp-format date-only
7. Populate frontmatter and write artifact
Use the design-gap template:
!`${CLAUDE_PLUGIN_ROOT}/bin/accelerator config template design-gap --fail-safe`
Before writing the artifact file, substitute every field below
with the indicated value, using the helper output captured in
Step 6 (Current Date/Time (UTC):):
type:←design-gapid:← the filename stem (the file path computed below without.md), always quoted as a YAML stringtitle:←Design Gap Analysis: {current-source} → {target-source}date:← theCurrent Date/Time (UTC):valueauthor:← the author resolved per the standard chain (config → VCS user → prompt)producer:←analyse-design-gapsstatus:←draftcurrent_inventory:← the resolved absolute path to the current inventory'sinventory.mdtarget_inventory:← the resolved absolute path to the target inventory'sinventory.mdlast_updated:← the sameCurrent Date/Time (UTC):valuelast_updated_by:← the same value resolved forauthorschema_version:←1(bare integer)
Optional linkage keys are omit-by-default (ADR-0040): the template shows
each as ""/[], but write a key into the artifact only when it has
a value, and omit it entirely otherwise (do not carry the empty
placeholder through). The current_inventory: / target_inventory:
keys above are always-valued and not subject to this rule.
parent:← the work item this gap analysis supports, as a typed-linkage ref ("work-item:NNNN"). Fill when the analysis has an owning work item; otherwise omit the key.relates_to:← list of typed-linkage refs to related artifacts (["design-inventory:NNNN", ...]). Fill when relationships are explicit; otherwise omit the key.
The design-gap artifact is not code-state-anchored — the helper's
Current Revision: and Repository Name: output is ignored here
even when present.
Write to:
<design_gaps>/YYYY-MM-DD-{current-source-id}-vs-{target-source-id}.md
The References section must record:
- The resolved inventory directory path for each source-id
- Any resolver warnings emitted in Step 1
Validate the frontmatter: after writing the artifact, run
${CLAUDE_PLUGIN_ROOT}/bin/accelerator corpus frontmatter validate --file <path>
If it exits non-zero, the document violates the canonical frontmatter standard; report the emitted violation and fix the frontmatter before completing.
8. Present Summary
Report:
- The artifact path
- Count of non-empty drift categories
- Any resolver warnings (multi-match or corrupt-frontmatter)
- Whether the cue-phrase audit required revisions
Suggest next steps:
- Run
/accelerator:extract-work-items <gap-file>to generate work items
Important Guidelines
- Empty drift categories are omitted — do not write placeholder sections.
- The
sequencetiebreaker is authoritative; do not rely on directory-name date alone. - Never fabricate observations. Write only what differs between the two inventories.
- The cue-phrase audit is programmatic enforcement, not a style suggestion. Revise failing sections until the audit passes or the three-attempt limit is reached.
!${CLAUDE_PLUGIN_ROOT}/bin/accelerator config instructions analyse-design-gaps --fail-safe
Signals
- GitHub stars
- 31
- Forks
- 1
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
analyse-design-gaps- Source
- github.com/atomicinnovation/accelerator