From 68ae6235cebaa3b1a242c867cbab88816a851f58 Mon Sep 17 00:00:00 2001 From: Paul Bakaus Date: Fri, 10 Apr 2026 09:41:07 -0700 Subject: [PATCH] Cap install step body width, restructure FAQ update entry - Add max-width: 56ch to install-step-body so long descriptions don't run edge to edge - Rewrite FAQ update answer as a scannable list instead of dense paragraphs Co-Authored-By: Claude Opus 4.6 (1M context) --- public/css/main.css | 1 + public/index.html | 13 +++++++------ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/public/css/main.css b/public/css/main.css index ea681605a..0cacbeca6 100644 --- a/public/css/main.css +++ b/public/css/main.css @@ -2918,6 +2918,7 @@ code { padding: 0 var(--spacing-xs) var(--spacing-md); display: flex; flex-direction: column; + max-width: 56ch; } .install-step-body .install-path-desc { diff --git a/public/index.html b/public/index.html index e2dda6bab..8dfeea6c1 100644 --- a/public/index.html +++ b/public/index.html @@ -636,12 +636,13 @@
How do I update to the latest version?
-

Run npx skills update from your project root. This pulls the latest skill definitions for all installed skills. Use npx skills check first to see what changed.

-

If the update fails (e.g. "Failed to update" errors for renamed skills), re-install instead:

-
npx skills add pbakaus/impeccable
-

Then run /impeccable once. It will automatically clean up leftover files from renamed or merged skills.

-

Other update methods: Claude Code plugin updates via /plugin in the Discover tab. Manual ZIP users can download the latest from above and extract to the project root.

-

Your .impeccable.md design context file is never overwritten. Your project context is preserved across updates.

+

Run npx skills update from your project root.

+
    +
  • Update fails? Run npx skills add pbakaus/impeccable instead, then invoke /impeccable once to clean up old files.
  • +
  • Claude Code plugin: Open /plugin, go to the Discover tab.
  • +
  • Manual ZIP: Download from above and extract to the project root.
  • +
+

Your .impeccable.md context file is never overwritten.