概要
Impeccable は、共有の設計語彙、ドメイン参照、およびアンチパターンルールを提供し、AIモデルのフロントエンド設計出力を強化します。23のコマンドを含み、さまざまなコーディングアシスタントのスキルとして使用できます。
README プレビュー
# Impeccable\n\nThe vocabulary you didn't know you needed. 1 skill, 23 commands, and curated anti-patterns for impeccable frontend design.\n\n> **Quick start:** Visit [impeccable.style](https://impeccable.style) to download ready-to-use bundles.\n\n## Why Impeccable?\n\nAnthropic's [frontend-design](https://github.com/anthropics/skills/tree/main/skills/frontend-design) was the first widely-used design skill for Claude. Impeccable started from there.\n\nEvery model trained on the same SaaS templates. Skip the guidance and you get the same handful of tells on every project: Inter for everything, purple-to-blue gradients, cards nested in cards, gray text on colored backgrounds, the rounded-square icon tile above every heading.\n\nImpeccable adds:\n- **7 domain reference files** ([view source](skill/)). Typography, color, motion, spatial, interaction, responsive, UX writing. Load on every command, alongside a brand-vs-product register that adjusts the defaults.\n- **23 commands.** A shared design vocabulary with your AI: `polish`, `audit`, `critique`, `distill`, `animate`, `bolder`, `quieter`, and more.\n- **27 deterministic anti-pattern rules** plus a 12-rule LLM critique pass. CLI and browser extension run the deterministic ones with no LLM and no API key. Each is tied to specific design guidance the skill teaches against.\n\n## What's Included\n\n### The Skill: impeccable\n\nA comprehensive design skill with 7 domain-specific references ([view skill](skill/SKILL.src.md)):\n\n| Reference | Covers |\n|-----------|--------|\n| [typography](skill/reference/typography.md) | Type systems, font pairing, modular scales, OpenType |\n| [color-and-contrast](skill/reference/color-and-contrast.md) | OKLCH, tinted neutrals, dark mode, accessibility |\n| [spatial-design](skill/reference/spatial-design.md) | Spacing systems, grids, visual hierarchy |\n| [motion-design](skill/reference/motion-design.md) | Easing curves, staggering, reduced motion |\n| [interaction-design](skill/refer
FAQ (3)
トラブル対応impeccableのdetect.mjsを実行する際に、'bundled detector not found'エラーが発生するのはなぜですか?
このエラーは、npx skillsインストーラがスキルサブツリーのみを提供し、detectorエンジンが欠落していたために発生しました。最新リリースで問題は修正されていますので、スキルを更新してください。更新できない場合は、以下の回避策を使用してください: mkdir -p .agents/skills/impeccable/scripts/detector && ln -sf "$(pwd)/node_modules/impeccable/cli/engine/detect-antipatterns.mjs" .agents/skills/impeccable/scripts/detector/detect-antipatterns.mjs。これにより、impeccable npmパッケージ内のエンジンが期待される場所にシンボリックリンクされます。
トラブル対応Windows 上で critique-storage.mjs スクリプトが出力を返さないのはなぜですか?
スクリプトのエントリポイントガードは、import.meta.url(Windows上ではフォワードスラッシュを使用)とfile://${process.argv[1]}(バックスラッシュ)を比較したため、等価性チェックが失敗し、main()が呼び出されませんでした。このバグはv3.1.1で、セパレータを正規化するpathToFileURL(process.argv[1]).hrefに切り替えることで修正されました。次のコマンドでスキルを更新してください:npx skills add pbakaus/impeccable
ハウツーImpeccableの批評結果をセッション間で永続化して、解決済みの問題を再提起しないようにするには?
手動でCRITIQUE.mdファイルを作成し、以前の批評出力を保存します。新しい/impeccable critiqueを実行する前に、エージェントにCRITIQUE.mdを読んでコンテキストを把握するよう指示し、レビュー後にそれを更新します。この回避策は、組み込みの永続化機能が実装されるまで、提案された機能を模倣します。