| name | design-assistant-inbox |
| description | Use when working from Chrome Design Assistant browser selections, pending visual design requests, or the local design-assistant MCP/HTTP bridge. |
| scope | harness |
| invocation | ability |
Design Assistant Inbox
Use this skill to claim browser-originated design work from the local Chrome Design Assistant bridge and turn it into repo-aware implementation.
Bridge
Default bridge:
export DESIGN_ASSISTANT_BRIDGE_ORIGIN="${DESIGN_ASSISTANT_BRIDGE_ORIGIN:-http://127.0.0.1:3004}"
MCP server:
node tools/chrome-design-assistant/mcp-server.mjs
HTTP fallback:
curl "$DESIGN_ASSISTANT_BRIDGE_ORIGIN/api/design-assistant/requests/pending"
Workflow
- Claim work:
curl -sS -X POST "$DESIGN_ASSISTANT_BRIDGE_ORIGIN/api/design-assistant/requests/claim-next" \
-H 'Content-Type: application/json' \
-d '{"claimedBy":"codex"}'
-
Read the returned packet. Treat selection, capture, instruction, constraints, targetProjectRoot, and designSourceIds as the implementation brief.
-
Inspect the target repo. If editing symbols in this repo, run GitNexus impact first per project rules.
-
Implement and verify. The extension must never mutate source files.
-
Post progress or final result:
curl -sS -X POST "$DESIGN_ASSISTANT_BRIDGE_ORIGIN/api/design-assistant/responses" \
-H 'Content-Type: application/json' \
-d '{"requestId":"REQ_ID","source":"codex","status":"done","message":"Summary and verification.","artifacts":[]}'
- Mark applied only after code changes are complete and verified:
curl -sS -X POST "$DESIGN_ASSISTANT_BRIDGE_ORIGIN/api/design-assistant/requests/REQ_ID/applied" \
-H 'Content-Type: application/json' \
-d '{"notes":"Applied and verified."}'
Watch Loop
For an active Codex thread, poll pending requests every few seconds:
while sleep 5; do
curl -sS "$DESIGN_ASSISTANT_BRIDGE_ORIGIN/api/design-assistant/requests/pending"
done
Stop the loop before starting edits. Claim one request at a time.
Session Notes
2026-07-02
- session: 78m | peak ctx: 0% | compacts: 0
- tools: Bash×303, Read×146, Edit×37, Agent×17, mcp×8, Write×3, ReportFindings×2
- corrections: Base directory for this skill: /Users/marcelspatz/.claude/skills/opus-fleet
opus-fleet — Opus orchestrates, Sonnet/Haiku agents execute
The default way to run any non-trivial task. The main **Opus | Base directory for this skill: /Users/marcelspatz/.claude/skills/opus-fleet
opus-fleet — Opus orchestrates, Sonnet/Haiku agents execute
The default way to run any non-trivial task. The main **Opus