Skip to content

Commit 6e9a0c0

Browse files
authored
🤖 fix: remove missing README screenshot (#3317)
> Mux is working on behalf of Mike. ## Summary Removes the missing orchestration screenshot from the README and updates the README screenshot generation skill to match the seven remaining generated assets. ## Background The README referenced `docs/img/orchestrate-agents.webp`, but that asset is no longer present, so the image rendered as a 404. The orchestration screenshot is no longer needed in the README screenshot workflow. ## Implementation - Removed the orchestration screenshot table cell from `README.md`. - Updated the `generate-readme-screenshots` skill mapping, capture count, verification loop, and process notes to omit `orchestrate-agents.webp`. ## Validation - make static-check ## Risks Low. This only removes a broken documentation image reference and updates the local screenshot-process instructions. --- _Generated with `mux` • Model: `openai:gpt-5.5` • Thinking: `xhigh` • Cost: `$2.93`_ <!-- mux-attribution: model=openai:gpt-5.5 thinking=xhigh costs=2.93 -->
1 parent 2c281c5 commit 6e9a0c0

2 files changed

Lines changed: 7 additions & 12 deletions

File tree

.mux/skills/generate-readme-screenshots/SKILL.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ If **any** of these fail:
9292
| `CostsTabRich` | `costs-tab.webp` | No |
9393
| `ContextManagementDialog` | `context-management.webp` | Yes (open settings dialog) |
9494
| `MobileServerMode` | `mobile-server-mode.webp` | No |
95-
| `OrchestrateAgents` | `orchestrate-agents.webp` | No |
9695

9796
### Key Files
9897

@@ -141,7 +140,7 @@ bun run scripts/capture-readme-screenshots.ts --storybook-url http://localhost:6
141140

142141
The script:
143142

144-
- Iterates all 8 stories sequentially
143+
- Iterates all 7 stories sequentially
145144
- Opens a fresh Playwright page per story
146145
- Waits for `networkidle` + 2s stabilization
147146
- Runs `playInteraction` if defined (with up to 3 retries for flaky interactions)
@@ -163,8 +162,8 @@ bun run scripts/capture-readme-screenshots.ts --story ContextManagementDialog
163162
### 5. Verify & Commit
164163

165164
```bash
166-
# Check all 8 files are present and 3800px wide
167-
for f in code-review agent-status git-status plan-mermaid costs-tab context-management mobile-server-mode orchestrate-agents; do
165+
# Check all 7 generated files are present
166+
for f in code-review agent-status git-status plan-mermaid costs-tab context-management mobile-server-mode; do
168167
bun -e "const s = require('sharp'); const m = await s('docs/img/${f}.webp').metadata(); console.log('${f}:', m.width + 'x' + m.height)"
169168
done
170169

@@ -209,6 +208,6 @@ The retry logic handles most cases. If persistent:
209208

210209
### Why there is no ProductHero screenshot story
211210

212-
Intentional README now uses `mux-demo.gif` as the hero media. The README
213-
screenshot pipeline covers only the 9 `docs/img/*.webp` assets that remain in
211+
Intentional. README now uses `mux-demo.gif` as the hero media. The README
212+
screenshot pipeline covers only the 7 generated WebP assets that remain in
214213
README, starting with `code-review.webp`.

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,10 @@ macOS and Linux.
7474
</td>
7575
</tr>
7676
<tr>
77-
<td align="center" width="50%">
78-
<img src="./docs/img/context-management.webp" alt="Screenshot of context management dialog" width="100%" /><br>
77+
<td align="center" colspan="2">
78+
<img src="./docs/img/context-management.webp" alt="Screenshot of context management dialog" width="50%" /><br>
7979
<sub>Context management dialog keeps compaction controls in one place</sub>
8080
</td>
81-
<td align="center" width="50%">
82-
<img src="./docs/img/orchestrate-agents.webp" alt="Screenshot of orchestrate agents" width="100%" /><br>
83-
<sub>Orchestrate parallel agent tasks with plan mode</sub>
84-
</td>
8581
</tr>
8682
<tr>
8783
<td align="center" colspan="2">

0 commit comments

Comments
 (0)