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) <noreply@anthropic.com>
This commit is contained in:
Paul Bakaus
2026-04-10 09:41:07 -07:00
co-authored by Claude Opus 4.6
parent f30475cdf4
commit 68ae6235ce
2 changed files with 8 additions and 6 deletions
+1
View File
@@ -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 {
+7 -6
View File
@@ -636,12 +636,13 @@
<details class="faq-item">
<summary class="faq-question">How do I update to the latest version?</summary>
<div class="faq-answer">
<p>Run <code>npx skills update</code> from your project root. This pulls the latest skill definitions for all installed skills. Use <code>npx skills check</code> first to see what changed.</p>
<p><strong>If the update fails</strong> (e.g. "Failed to update" errors for renamed skills), re-install instead:</p>
<div class="code-block-wrap"><pre class="code-block"><code>npx skills add pbakaus/impeccable</code></pre><button class="code-block-copy" type="button" data-copy="npx skills add pbakaus/impeccable" aria-label="Copy to clipboard"></button></div>
<p>Then run <code>/impeccable</code> once. It will automatically clean up leftover files from renamed or merged skills.</p>
<p>Other update methods: <strong>Claude Code plugin</strong> updates via <code>/plugin</code> in the Discover tab. <strong>Manual ZIP</strong> users can download the latest from above and extract to the project root.</p>
<p>Your <code>.impeccable.md</code> design context file is never overwritten. Your project context is preserved across updates.</p>
<p>Run <code>npx skills update</code> from your project root.</p>
<ul>
<li><strong>Update fails?</strong> Run <code>npx skills add pbakaus/impeccable</code> instead, then invoke <code>/impeccable</code> once to clean up old files.</li>
<li><strong>Claude Code plugin:</strong> Open <code>/plugin</code>, go to the Discover tab.</li>
<li><strong>Manual ZIP:</strong> Download from above and extract to the project root.</li>
</ul>
<p>Your <code>.impeccable.md</code> context file is never overwritten.</p>
</div>
</details>