Workflow audit
Skill bcorfman/gui-workflow-guardrails/skills/workflow-audit
Identify, name, de-duplicate, and fix missing GUI workflows; enforce a single obvious primary path per task.From its SKILL.md
npx -y skills add bcorfman/gui-workflow-guardrails --skill workflow-auditAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
3.5 KB, 751 tokens by cl100k_base, as published. Nobody here has run it
When to use
Use this skill when:
- Adding/updating/deleting GUI features (menus, panels, gestures, shortcuts, inspector controls)
- You suspect multiple ways exist to do the same task
- You suspect a feature has no in-product workflow (only config/YAML/manual edits)
- You need to reduce pointer travel and steps without breaking established style patterns
Inputs needed
Ask for (or infer) the scope:
- Which surface(s): canvas, inspector, toolbar, dock, sidebar, context menus
- Which tasks: selection, grouping, import, assignment, YAML round-trip, etc.
- Any “do not change” constraints (keyboard shortcuts, worker counts, etc.)
Process
1) Inventory (atomic first)
- Identify atomic workflows (gestures/actions) first:
- selection (single/multi/marquee)
- open action menus
- edit values
- import assets
- assign assets
- undo/redo
- mode toggles
- Name them consistently (e.g.,
A1 — Select Single). - Compose composite workflows (e.g.,
W3 — Create formation) by referencing atomic names.
Deliverable:
- A short list of A## and W## workflows (or update existing workflow inventory doc).
2) Detect duplicates (repetitive workflows)
For each composite workflow (W##):
- List all entrypoints (buttons, menus, shortcuts, gestures).
- Flag when the same task is achievable via multiple inconsistent paths (naming, steps, location).
- Decide a single primary path (the one you want users to discover first).
Deliverable:
- “Duplicates” section: task → entrypoints → recommended primary → what to remove/merge.
3) Detect missing workflows
For each capability that exists in data model / UI:
- Confirm there is a user-visible workflow to create/edit/remove it in-product.
- If not, propose the minimal workflow that fits existing patterns.
Deliverable:
- “Missing workflows” section: capability → missing user path → proposed path.
4) Propose improvements (priorities)
Propose changes in priority order:
- more intuitive
- fewer steps
- shorter pointer travel
- style consistency
If (1–3) conflicts with (4), present tradeoffs and ask the user which to prioritize.
5) Confirmation gate (only for significant changes)
If the proposed change:
- changes a primary entrypoint,
- changes gestures/shortcuts,
- moves actions to different surfaces (near-cursor → inspector/toolbar),
- or breaks an established style pattern,
then stop and ask the user to confirm the new primary workflow before implementing.
6) Implementation guidance (if approved)
- Start with store/helper tests where applicable.
- Add interaction/e2e tests for the primary path where practical.
- Remove/merge redundant entrypoints rather than adding new ones.
- Update workflow docs if workflows materially change.
Output format (recommended)
- Atomic workflows: list A##
- Composite workflows: list W## referencing A##
- Duplicates: task → entrypoints → primary path → removal plan
- Missing: capability → minimal workflow
- Proposed changes: grouped by surface with step/pointer-travel notes
- Confirmation needed: yes/no with reason
Exit criteria
- Every targeted task has one obvious primary path.
- Redundant entrypoints are removed or intentionally retained with a documented reason.
- Missing workflows are added (or explicitly deferred).
- Tests updated for changed workflows when practical.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.