You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Install Impeccable — a 21-skill design toolkit for AI code assistants — on the VM and integrate its design capabilities into the sundai-project-pipeline skill so that Sundai projects ship with polished, professional UI by default.
What is Impeccable?
Impeccable is a skill pack that provides professional frontend design vocabulary and capabilities to AI agents. It includes 21 skills covering:
/polish — refine UI design quality
/audit — run design quality checks (accessibility, performance, visual)
/typeset — typography recommendations
/colorize — color system improvements
/critique — visual critique against Nielsen's usability heuristics
/animate — motion design
/arrange — layout and spacing
/overdrive — aggressive design enhancement
Plus 13 more (adapt, bolder, clarify, delight, distill, extract, frontend-design, harden, normalize, onboard, optimize, quieter, teach-impeccable)
Each skill has reference docs covering typography, color/contrast, spatial design, responsive design, motion, interaction design, and UX writing.
Two integration paths
Option A: Install via OpenClaw on the VM
PR #77 adds first-class OpenClaw support to Impeccable. Since we now have Codex on the VM, we could tell OpenClaw to use Impeccable with Codex directly:
# Copy OpenClaw skills into the agent workspace
cp -r dist/openclaw/.openclaw/skills/* skills/
Option B: Install as Claude Code skills
npx skills add pbakaus/impeccable
This auto-detects Claude Code and places skills in .claude/skills/.
Recommendation: Option A (OpenClaw + Codex) is more flexible since Codex is already on the VM, and the OpenClaw format includes permissions/triggers metadata.
Pipeline integration
Update sundai-project-pipeline to invoke Impeccable skills during the build:
After Fabro build (Step 2): Run /polish on the generated frontend code to improve visual quality
Before deploy (Step 3): Run /audit to check design quality score and flag issues
During polish phase: Use /typeset, /colorize, /arrange as needed based on audit results
Optional: Run /critique for a UX heuristic evaluation and include score in the PR
This would replace/augment the current Fabro "Polish" stage with domain-specific design skills that have deeper knowledge of typography, color theory, layout, and interaction design.
Goal
Install Impeccable — a 21-skill design toolkit for AI code assistants — on the VM and integrate its design capabilities into the
sundai-project-pipelineskill so that Sundai projects ship with polished, professional UI by default.What is Impeccable?
Impeccable is a skill pack that provides professional frontend design vocabulary and capabilities to AI agents. It includes 21 skills covering:
/polish— refine UI design quality/audit— run design quality checks (accessibility, performance, visual)/typeset— typography recommendations/colorize— color system improvements/critique— visual critique against Nielsen's usability heuristics/animate— motion design/arrange— layout and spacing/overdrive— aggressive design enhancementEach skill has reference docs covering typography, color/contrast, spatial design, responsive design, motion, interaction design, and UX writing.
Two integration paths
Option A: Install via OpenClaw on the VM
PR #77 adds first-class OpenClaw support to Impeccable. Since we now have Codex on the VM, we could tell OpenClaw to use Impeccable with Codex directly:
Option B: Install as Claude Code skills
This auto-detects Claude Code and places skills in
.claude/skills/.Recommendation: Option A (OpenClaw + Codex) is more flexible since Codex is already on the VM, and the OpenClaw format includes permissions/triggers metadata.
Pipeline integration
Update
sundai-project-pipelineto invoke Impeccable skills during the build:/polishon the generated frontend code to improve visual quality/auditto check design quality score and flag issues/typeset,/colorize,/arrangeas needed based on audit results/critiquefor a UX heuristic evaluation and include score in the PRThis would replace/augment the current Fabro "Polish" stage with domain-specific design skills that have deeper knowledge of typography, color theory, layout, and interaction design.
References
Tasks
.impeccable.mdproject context file template for Sundai projectssundai-project-pipelineStep 2 to run/polishafter Fabro buildsundai-project-pipelineStep 3 to run/auditbefore deploy