Summary
Add a new .agents/skills/impeccable skill https://github.com/pbakaus/impeccable/tree/main/.agents/skills/impeccable to do-knowledge-studio, adapted from pbakaus/impeccable, and integrate it cleanly with the existing skill system.
This should not be a raw import. The skill should be adapted to repository conventions, overlap with existing UI-related skills should be reduced, and the upstream .mjs helper scripts should be replaced with local .sh or Python equivalents.
Context
The repository already contains a large skill catalog under .agents/skills, including several overlapping design and quality skills such as:
ui-ux-optimize
reader-ui-ux
accessibility-auditor
anti-ai-slop
stitch-design
skill-creator
skill-evaluator
At the same time, the upstream impeccable skill provides a stronger, more opinionated frontend design workflow with:
- production-grade UI/UX guidance
- anti-pattern bans
- explicit anti-slop heuristics
- design-focused command routing
- setup, audit, polish, clarify, layout, typeset, and color workflows
The repository already uses a shell-first agent setup through .agents/config.sh, so upstream Node-specific helper scripts should be adapted rather than copied unchanged.
Problem
Right now, the repository has multiple partial UI/design skills, but no single canonical skill for frontend design shaping, critique, and polish.
This causes several issues:
- routing ambiguity between overlapping skills
- duplicated UI guidance across skill files
- no clear "primary" skill for serious frontend design work
- risk of importing upstream
impeccable in a way that does not fit local harness conventions
In particular, the upstream skill expects helper scripts such as:
context.mjs
palette.mjs
detect.mjs
pin.mjs
Those should not be imported unchanged if they introduce unnecessary Node.js runtime assumptions into this repository's .agents workflow.
Proposal
Create a new local skill:
.agents/skills/impeccable/
Adapt the upstream skill structure and content, but align it with the repository's current shell-first setup and local skill architecture.
Scope
1. Add new skill
Create .agents/skills/impeccable/ with at least:
SKILL.md
reference/ folder with selected command docs
- optional local maintainer notes if useful
2. Adapt content to local conventions
Update imported content so it:
- references local project structure and terminology
- fits the existing style of
.agents/skills
- avoids assumptions about an upstream-only runtime model
- preserves the strongest parts of
impeccable:
- frontend design vocabulary
- anti-pattern bans
- anti-slop heuristics
- command-oriented UI workflows
3. Replace upstream .mjs helpers
Do not keep upstream helper scripts unchanged.
Adapt them to local .sh or Python scripts as follows:
| Upstream |
Local replacement |
Rationale |
context.mjs |
context.sh |
File discovery and markdown output; shell is sufficient |
palette.mjs |
palette.py |
OKLCH color logic and palette generation; Python is cleaner |
detect.mjs |
detect.py |
Heuristic scanning and JSON reporting; Python is easier to test |
pin.mjs |
pin.sh |
File creation and harness registration; shell is a good fit |
Rationale
.agents/config.sh already establishes shell as the local orchestration layer.
- Shell is a good fit for context loading, repo inspection, and registration tasks.
- Python is a better fit for structured JSON output, heuristic scanning, color/palette logic, and scoring.
- This keeps the skill aligned with repository conventions without introducing unnecessary Node-specific coupling.
4. Reduce overlap with existing skills
Review and update the following existing skills as needed:
.agents/skills/ui-ux-optimize
.agents/skills/anti-ai-slop
.agents/skills/accessibility-auditor
.agents/skills/reader-ui-ux
.agents/skills/stitch-design
Expected updates:
- reduce duplicated guidance
- add explicit routing notes such as "use this skill when..."
- add cross-references to
impeccable where appropriate
- keep specialized skills narrow and focused
5. Register and document the skill
Update any relevant discovery and documentation files:
.agents/manifest.json
.agents/skills/README.md
- any local routing/index files
- any skill metadata or validation files used by the repo
Document when agents should use impeccable versus narrower existing skills.
Suggested Role of impeccable
Use impeccable as the preferred skill for:
- frontend UI design, redesign, and refinement
- UX critique and visual hierarchy improvements
- typography and color improvements
- anti-slop frontend output
- accessibility-aware polish before shipping
Keep narrower existing skills for focused concerns:
accessibility-auditor — dedicated a11y review
anti-ai-slop — broader anti-pattern detection beyond UI
reader-ui-ux — reader-specific interfaces
stitch-design — design-system specific work
Suggested Command Surface
The local adaptation should support at least the conceptual workflows behind:
craft, shape, audit, polish
clarify, layout, typeset, colorize
adapt, bolder, quieter, distill
The exact command set can be reduced if needed, but the result should function as a serious frontend design skill, not just a static checklist.
Acceptance Criteria
Implementation Notes
- Prefer adaptation over wholesale import
- Keep high-value design guidance and anti-slop rules
- Avoid introducing a second runtime convention unless there is a clear repository-wide reason
- Use shell for orchestration and repository integration
- Use Python where structured logic is clearer, more testable, and easier to maintain than Bash
- Preserve the repository's modular skill architecture
Related
Summary
Add a new
.agents/skills/impeccableskill https://github.com/pbakaus/impeccable/tree/main/.agents/skills/impeccable todo-knowledge-studio, adapted frompbakaus/impeccable, and integrate it cleanly with the existing skill system.This should not be a raw import. The skill should be adapted to repository conventions, overlap with existing UI-related skills should be reduced, and the upstream
.mjshelper scripts should be replaced with local.shor Python equivalents.Context
The repository already contains a large skill catalog under
.agents/skills, including several overlapping design and quality skills such as:ui-ux-optimizereader-ui-uxaccessibility-auditoranti-ai-slopstitch-designskill-creatorskill-evaluatorAt the same time, the upstream
impeccableskill provides a stronger, more opinionated frontend design workflow with:The repository already uses a shell-first agent setup through
.agents/config.sh, so upstream Node-specific helper scripts should be adapted rather than copied unchanged.Problem
Right now, the repository has multiple partial UI/design skills, but no single canonical skill for frontend design shaping, critique, and polish.
This causes several issues:
impeccablein a way that does not fit local harness conventionsIn particular, the upstream skill expects helper scripts such as:
context.mjspalette.mjsdetect.mjspin.mjsThose should not be imported unchanged if they introduce unnecessary Node.js runtime assumptions into this repository's
.agentsworkflow.Proposal
Create a new local skill:
.agents/skills/impeccable/Adapt the upstream skill structure and content, but align it with the repository's current shell-first setup and local skill architecture.
Scope
1. Add new skill
Create
.agents/skills/impeccable/with at least:SKILL.mdreference/folder with selected command docs2. Adapt content to local conventions
Update imported content so it:
.agents/skillsimpeccable:3. Replace upstream
.mjshelpersDo not keep upstream helper scripts unchanged.
Adapt them to local
.shor Python scripts as follows:context.mjscontext.shpalette.mjspalette.pydetect.mjsdetect.pypin.mjspin.shRationale
.agents/config.shalready establishes shell as the local orchestration layer.4. Reduce overlap with existing skills
Review and update the following existing skills as needed:
.agents/skills/ui-ux-optimize.agents/skills/anti-ai-slop.agents/skills/accessibility-auditor.agents/skills/reader-ui-ux.agents/skills/stitch-designExpected updates:
impeccablewhere appropriate5. Register and document the skill
Update any relevant discovery and documentation files:
.agents/manifest.json.agents/skills/README.mdDocument when agents should use
impeccableversus narrower existing skills.Suggested Role of
impeccableUse
impeccableas the preferred skill for:Keep narrower existing skills for focused concerns:
accessibility-auditor— dedicated a11y reviewanti-ai-slop— broader anti-pattern detection beyond UIreader-ui-ux— reader-specific interfacesstitch-design— design-system specific workSuggested Command Surface
The local adaptation should support at least the conceptual workflows behind:
craft,shape,audit,polishclarify,layout,typeset,colorizeadapt,bolder,quieter,distillThe exact command set can be reduced if needed, but the result should function as a serious frontend design skill, not just a static checklist.
Acceptance Criteria
.agents/skills/impeccable/skill exists in the repository.mjshelpers are replaced with local.sh/ Python equivalentsmanifest.json,README.md)impeccableand existing skills.agents/skillsImplementation Notes
Related
.agents/skills/.agents/config.sh,.agents/manifest.json