{"id":"6a389010-6ef7-4154-ac9d-1015039ab477","shortId":"x2KELr","kind":"skill","title":"design-shotgun","tagline":"Design shotgun: generate multiple AI design variants, open a comparison board,\ncollect structured feedback, and iterate. Standalone design exploration you can\nrun anytime. Use when: \"explore designs\", \"show me options\", \"design variants\",\n\"visual brainstorm\", or \"I don't like how","description":"## Preamble\n\n```bash\neval \"$(~/.vibestack/bin/vibe-slug 2>/dev/null)\" 2>/dev/null || SLUG=\"unknown\"\n_LEARN_FILE=\"${VIBESTACK_HOME:-$HOME/.vibestack}/projects/${SLUG:-unknown}/learnings.jsonl\"\nif [ -f \"$_LEARN_FILE\" ]; then\n  _LEARN_COUNT=$(wc -l < \"$_LEARN_FILE\" 2>/dev/null | tr -d ' ')\n  echo \"LEARNINGS: $_LEARN_COUNT entries loaded\"\n  if [ \"$_LEARN_COUNT\" -gt 5 ] 2>/dev/null; then\n    ~/.vibestack/bin/vibe-learnings-search --limit 5 2>/dev/null || true\n  fi\nelse\n  echo \"LEARNINGS: none yet\"\nfi\n```\n\n## DESIGN SETUP\n\n```bash\n# vibestack does not include a design daemon.\necho \"DESIGN_NOT_AVAILABLE\"\n```\n\nIf `DESIGN_NOT_AVAILABLE`: skip visual mockup generation and fall back to text-based design review.\n\n## UX Principles: How Users Actually Behave\n\nThese principles govern how real humans interact with interfaces. They are observed\nbehavior, not preferences. Apply them before, during, and after every design decision.\n\n### The Three Laws of Usability\n\n1. **Don't make me think.** Every page should be self-evident. If a user stops\n   to think \"What do I click?\" or \"What does this mean?\", the design has failed.\n   Self-evident > self-explanatory > requires explanation.\n\n2. **Clicks don't matter, thinking does.** Three mindless, unambiguous clicks\n   beat one click that requires thought. Each step should feel like an obvious\n   choice (animal, vegetable, or mineral), not a puzzle.\n\n3. **Omit, then omit again.** Get rid of half the words on each page, then get\n   rid of half of what's left. Happy talk (self-congratulatory text) must die.\n   Instructions must die. If they need reading, the design has failed.\n\n### How Users Actually Behave\n\n- **Users scan, they don't read.** Design for scanning: visual hierarchy\n  (prominence = importance), clearly defined areas, headings and bullet lists,\n  highlighted key terms. We're designing billboards going by at 60 mph, not\n  product brochures people will study.\n- **Users satisfice.** They pick the first reasonable option, not the best.\n  Make the right choice the most visible choice.\n- **Users muddle through.** They don't figure out how things work. They wing\n  it. If they accomplish their goal by accident, they won't seek the \"right\" way.\n  Once they find something that works, no matter how badly, they stick to it.\n- **Users don't read instructions.** They dive in. Guidance must be brief,\n  timely, and unavoidable, or it won't be seen.\n\n### Billboard Design for Interfaces\n\n- **Use conventions.** Logo top-left, nav top/left, search = magnifying glass.\n  Don't innovate on navigation to be clever. Innovate when you KNOW you have a\n  better idea, otherwise use conventions. Even across languages and cultures,\n  web conventions let people identify the logo, nav, search, and main content.\n- **Visual hierarchy is everything.** Related things are visually grouped. Nested\n  things are visually contained. More important = more prominent. If everything\n  shouts, nothing is heard. Start with the assumption everything is visual noise,\n  guilty until proven innocent.\n- **Make clickable things obviously clickable.** No relying on hover states for\n  discoverability, especially on mobile where hover doesn't exist. Shape, location,\n  and formatting (color, underlining) must signal clickability without interaction.\n- **Eliminate noise.** Three sources: too many things shouting for attention\n  (shouting), things not organized logically (disorganization), and too much stuff\n  (clutter). Fix noise by removal, not addition.\n- **Clarity trumps consistency.** If making something significantly clearer\n  requires making it slightly inconsistent, choose clarity every time.\n\n### Navigation as Wayfinding\n\nUsers on the web have no sense of scale, direction, or location. Navigation\nmust always answer: What site is this? What page am I on? What are the major\nsections? What are my options at this level? Where am I? How can I search?\n\nPersistent navigation on every page. Breadcrumbs for deep hierarchies.\nCurrent section visually indicated. The \"trunk test\": cover everything except\nthe navigation. You should still know what site this is, what page you're on,\nand what the major sections are. If not, the navigation has failed.\n\n### The Goodwill Reservoir\n\nUsers start with a reservoir of goodwill. Every friction point depletes it.\n\n**Deplete faster:** Hiding info users want (pricing, contact, shipping). Punishing\nusers for not doing things your way (formatting requirements on phone numbers).\nAsking for unnecessary information. Putting sizzle in their way (splash screens,\nforced tours, interstitials). Unprofessional or sloppy appearance.\n\n**Replenish:** Know what users want to do and make it obvious. Tell them what they\nwant to know upfront. Save them steps wherever possible. Make it easy to recover\nfrom errors. When in doubt, apologize.\n\n### Mobile: Same Rules, Higher Stakes\n\nAll the above applies on mobile, just more so. Real estate is scarce, but never\nsacrifice usability for space savings. Affordances must be VISIBLE: no cursor\nmeans no hover-to-discover. Touch targets must be big enough (44px minimum).\nFlat design can strip away useful visual information that signals interactivity.\nPrioritize ruthlessly: things needed in a hurry go close at hand, everything\nelse a few taps away with an obvious path to get there.\n\n## Step 0: Session Detection\n\nCheck for prior design exploration sessions for this project:\n\n```bash\neval \"$(~/.vibestack/bin/vibe-slug 2>/dev/null)\"\nsetopt +o nomatch 2>/dev/null || true\n_PREV=$(find ~/.vibestack/projects/$SLUG/designs/ -name \"approved.json\" -maxdepth 2 2>/dev/null | sort -r | head -5)\n[ -n \"$_PREV\" ] && echo \"PREVIOUS_SESSIONS_FOUND\" || echo \"NO_PREVIOUS_SESSIONS\"\necho \"$_PREV\"\n```\n\n**If `PREVIOUS_SESSIONS_FOUND`:** Read each `approved.json`, display a summary, then\nAskUserQuestion:\n\n> \"Previous design explorations for this project:\n> - [date]: [screen] — chose variant [X], feedback: '[summary]'\n>\n> A) Revisit — reopen the comparison board to adjust your choices\n> B) New exploration — start fresh with new or updated instructions\n> C) Something else\"\n\nIf A: regenerate the board from existing variant PNGs, reopen, and resume the feedback loop.\nIf B: proceed to Step 1.\n\n**If `NO_PREVIOUS_SESSIONS`:** Show the first-time message:\n\n\"This is /design-shotgun — your visual brainstorming tool. I'll generate multiple AI\ndesign directions, open them side-by-side in your browser, and you pick your favorite.\nYou can run /design-shotgun anytime during development to explore design directions for\nany part of your product. Let's start.\"\n\n## Step 1: Context Gathering\n\nWhen design-shotgun is invoked from plan-design-review, design-consultation, or another\nskill, the calling skill has already gathered context. Check for `$_DESIGN_BRIEF` — if\nit's set, skip to Step 2.\n\nWhen run standalone, gather context to build a proper design brief.\n\n**Required context (5 dimensions):**\n1. **Who** — who is the design for? (persona, audience, expertise level)\n2. **Job to be done** — what is the user trying to accomplish on this screen/page?\n3. **What exists** — what's already in the codebase? (existing components, pages, patterns)\n4. **User flow** — how do users arrive at this screen and where do they go next?\n5. **Edge cases** — long names, zero results, error states, mobile, first-time vs power user\n\n**Auto-gather first:**\n\n```bash\ncat DESIGN.md 2>/dev/null | head -80 || echo \"NO_DESIGN_MD\"\n```\n\n```bash\nls src/ app/ pages/ components/ 2>/dev/null | head -30\n```\n\n```bash\nsetopt +o nomatch 2>/dev/null || true\nls ~/.vibestack/projects/$SLUG/*office-hours* 2>/dev/null | head -5\n```\n\nIf DESIGN.md exists, tell the user: \"I'll follow your design system in DESIGN.md by\ndefault. If you want to go off the reservation on visual direction, just say so —\ndesign-shotgun will follow your lead, but won't diverge by default.\"\n\n**Check for a live site to screenshot** (for the \"I don't like THIS\" use case):\n\n```bash\ncurl -s -o /dev/null -w \"%{http_code}\" http://localhost:3000 2>/dev/null || echo \"NO_LOCAL_SITE\"\n```\n\nIf a local site is running AND the user referenced a URL or said something like \"I don't\nlike how this looks,\" screenshot the current page and use `$D evolve` instead of\n`$D variants` to generate improvement variants from the existing design.\n\n**AskUserQuestion with pre-filled context:** Pre-fill what you inferred from the codebase,\nDESIGN.md, and office-hours output. Then ask for what's missing. Frame as ONE question\ncovering all gaps:\n\n> \"Here's what I know: [pre-filled context]. I'm missing [gaps].\n> Tell me: [specific questions about the gaps].\n> How many variants? (default 3, up to 8 for important screens)\"\n\nTwo rounds max of context gathering, then proceed with what you have and note assumptions.\n\n## Step 2: Taste Memory\n\nRead both the persistent taste profile (cross-session) AND the per-session approved\ndesigns to bias generation toward the user's demonstrated taste.\n\n**Persistent taste profile (v1 schema at `~/.vibestack/projects/$SLUG/taste-profile.json`):**\n\nRead the persistent taste profile if it exists:\n\n```bash\n_TASTE_PROFILE=~/.vibestack/projects/$SLUG/taste-profile.json\nif [ -f \"$_TASTE_PROFILE\" ]; then\n  # Schema v1: { dimensions: { fonts, colors, layouts, aesthetics }, sessions: [] }\n  # Each dimension has approved[] and rejected[] entries with\n  # { value, confidence, approved_count, rejected_count, last_seen }\n  # Confidence decays 5% per week of inactivity — computed at read time.\n  cat \"$_TASTE_PROFILE\" 2>/dev/null | head -200\n  echo \"TASTE_PROFILE_FOUND\"\nelse\n  echo \"NO_TASTE_PROFILE\"\nfi\n```\n\n**If TASTE_PROFILE_FOUND:** Summarize the strongest signals (top 3 approved entries\nper dimension by confidence * approved_count). Include them in the design brief:\n\n\"Based on \\${SESSION_COUNT} prior sessions, this user's taste leans toward:\nfonts [top-3], colors [top-3], layouts [top-3], aesthetics [top-3]. Bias\ngeneration toward these unless the user explicitly requests a different direction.\nAlso avoid their strong rejections: [top-3 rejected per dimension].\"\n\n**If NO_TASTE_PROFILE:** Fall through to per-session approved.json files (legacy).\n\n**Conflict handling:** If the current user request contradicts a strong persistent\nsignal (e.g., \"make it playful\" when taste profile strongly prefers minimal), flag\nit: \"Note: your taste profile strongly prefers minimal. You're asking for playful\nthis time — I'll proceed, but want me to update the taste profile, or treat this\nas a one-off?\"\n\n**Decay:** Confidence scores decay 5% per week. A font approved 6 months ago with\n10 approvals has less weight than one approved last week. The decay calculation\nhappens at read time, not write time, so the file only grows on change.\n\n**Schema migration:** If the file has no `version` field or `version: 0`, it's\nthe legacy approved.json aggregate (taste-update not available in vibestack)\nwill migrate it to schema v1 on the next write.\n\n**Per-session approved.json files (legacy, still supported):**\n\n```bash\nsetopt +o nomatch 2>/dev/null || true\n_TASTE=$(find ~/.vibestack/projects/$SLUG/designs/ -name \"approved.json\" -maxdepth 2 2>/dev/null | sort -r | head -10)\n```\n\nIf prior sessions exist, read each `approved.json` and extract patterns from the\napproved variants. Merge these into the taste-profile.json-derived signal — if the\nprofile already says \"user prefers Geist font\" (from aggregated history), the\napproved.json files add the specific recent approval context.\n\nLimit to last 10 sessions. Try/catch JSON parse on each (skip corrupted files).\n\n**Updating taste profile after a design-shotgun session:** When the user picks a\nvariant, log the approval via vibe-learnings-log. When they\nexplicitly reject a variant, log the rejection via vibe-learnings-log.\nThe CLI handles schema migration from approved.json, decay, and conflict flagging.\n\n## Step 3: Generate Variants\n\nSet up the output directory:\n\n```bash\neval \"$(~/.vibestack/bin/vibe-slug 2>/dev/null)\"\n_DESIGN_DIR=\"$HOME/.vibestack/projects/$SLUG/designs/<screen-name>-$(date +%Y%m%d)\"\nmkdir -p \"$_DESIGN_DIR\"\necho \"DESIGN_DIR: $_DESIGN_DIR\"\n```\n\nReplace `<screen-name>` with a descriptive kebab-case name from the context gathering.\n\n### Step 3a: Concept Generation\n\nBefore any API calls, generate N text concepts describing each variant's design direction.\nEach concept should be a distinct creative direction, not a minor variation. Present them\nas a lettered list:\n\n```\nI'll explore 3 directions:\n\nA) \"Name\" — one-line visual description of this direction\nB) \"Name\" — one-line visual description of this direction\nC) \"Name\" — one-line visual description of this direction\n```\n\nDraw on DESIGN.md, taste memory, and the user's request to make each concept distinct.\n\n**Anti-convergence directive (hard requirement):** Each variant MUST use a different\nfont family, color palette, and layout approach. If two variants look like siblings\n— same typographic feel, overlapping color temperature, comparable layout rhythm —\none of them failed. Regenerate the weaker one with a deliberately different direction.\n\nConcrete test: if someone could swap the headline text between two variants without\nnoticing, they're too similar. Variants should feel like they came from three\ndifferent design teams, not the same team at three different coffee levels.\n\n### Step 3b: Concept Confirmation\n\nUse AskUserQuestion to confirm before spending API credits:\n\n> \"These are the {N} directions I'll generate. Each takes ~60s, but I'll run them all\n> in parallel so total time is ~60 seconds regardless of count.\"\n\nOptions:\n- A) Generate all {N} — looks good\n- B) I want to change some concepts (tell me which)\n- C) Add more variants (I'll suggest additional directions)\n- D) Fewer variants (tell me which to drop)\n\nIf B: incorporate feedback, re-present concepts, re-confirm. Max 2 rounds.\nIf C: add concepts, re-present, re-confirm.\nIf D: drop specified concepts, re-present, re-confirm.\n\n### Step 3c: Parallel Generation\n\n**If evolving from a screenshot** (user said \"I don't like THIS\"), take ONE screenshot\nfirst:\n\n```bash\n$B screenshot \"$_DESIGN_DIR/current.png\"\n```\n\n**Launch N Agent subagents in a single message** (parallel execution). Use the Agent\ntool with `subagent_type: \"general-purpose\"` for each variant. Each agent is independent\nand handles its own generation, quality check, verification, and retry.\n\n**Important: $D path propagation.** The `$D` variable from DESIGN SETUP is a shell\nvariable that agents do NOT inherit. Substitute the resolved absolute path (from the\n`DESIGN_READY: /path/to/design` output in Step 0) into each agent prompt.\n\n**Agent prompt template** (one per variant, substitute all `{...}` values):\n\n```\nGenerate a design variant and save it.\n\nDesign binary: {absolute path to $D binary}\nBrief: {the full variant-specific brief for this direction}\nOutput: /tmp/variant-{letter}.png\nFinal location: {_DESIGN_DIR absolute path}/variant-{letter}.png\n\nSteps:\n1. Run: {$D path} generate --brief \"{brief}\" --output /tmp/variant-{letter}.png\n2. If the command fails with a rate limit error (429 or \"rate limit\"), wait 5 seconds\n   and retry. Up to 3 retries.\n3. If the output file is missing or empty after the command succeeds, retry once.\n4. Copy: cp /tmp/variant-{letter}.png {_DESIGN_DIR}/variant-{letter}.png\n5. Quality check: {$D path} check --image {_DESIGN_DIR}/variant-{letter}.png --brief \"{brief}\"\n   If quality check fails, retry generation once.\n6. Verify: ls -lh {_DESIGN_DIR}/variant-{letter}.png\n7. Report exactly one of:\n   VARIANT_{letter}_DONE: {file size}\n   VARIANT_{letter}_FAILED: {error description}\n   VARIANT_{letter}_RATE_LIMITED: exhausted retries\n```\n\nFor the evolve path, replace step 1 with:\n```\n{$D path} evolve --screenshot {_DESIGN_DIR}/current.png --brief \"{brief}\" --output /tmp/variant-{letter}.png\n```\n\n**Why /tmp/ then cp?** In observed sessions, `$D generate --output ~/.vibestack/...`\nfailed with \"The operation was aborted\" while `--output /tmp/...` succeeded. This is\na sandbox restriction. Always generate to `/tmp/` first, then `cp`.\n\n### Step 3d: Results\n\nAfter all agents complete:\n\n1. Read each generated PNG inline (Read tool) so the user sees all variants at once.\n2. Report status: \"All {N} variants generated in ~{actual time}. {successes} succeeded,\n   {failures} failed.\"\n3. For any failures: report explicitly with the error. Do NOT silently skip.\n4. If zero variants succeeded: fall back to sequential generation (one at a time with\n   `$D generate`, showing each as it lands). Tell the user: \"Parallel generation failed\n   (likely rate limiting). Falling back to sequential...\"\n5. Proceed to Step 4 (comparison board).\n\n**Dynamic image list for comparison board:** When proceeding to Step 4, construct the\nimage list from whatever variant files actually exist, not a hardcoded A/B/C list:\n\n```bash\nsetopt +o nomatch 2>/dev/null || true  # zsh compat\n_IMAGES=$(ls \"$_DESIGN_DIR\"/variant-*.png 2>/dev/null | tr '\\n' ',' | sed 's/,$//')\n```\n\nUse `$_IMAGES` in the `$D compare --images` command.\n\n## Step 4: Comparison Board + Feedback Loop\n\n### Comparison Board + Feedback Loop\n\nCreate the comparison board and serve it over HTTP:\n\n```bash\n$D compare --images \"$_DESIGN_DIR/variant-A.png,$_DESIGN_DIR/variant-B.png,$_DESIGN_DIR/variant-C.png\" --output \"$_DESIGN_DIR/design-board.html\" --serve\n```\n\nThis command generates the board HTML, starts an HTTP server on a random port,\nand opens it in the user's default browser. **Run it in the background** with `&`\nbecause the server needs to stay running while the user interacts with the board.\n\nParse the port from stderr output: `SERVE_STARTED: port=XXXXX`. You need this\nfor the board URL and for reloading during regeneration cycles.\n\n**PRIMARY WAIT: AskUserQuestion with board URL**\n\nAfter the board is serving, use AskUserQuestion to wait for the user. Include the\nboard URL so they can click it if they lost the browser tab:\n\n\"I've opened a comparison board with the design variants:\nhttp://127.0.0.1:<PORT>/ — Rate them, leave comments, remix\nelements you like, and click Submit when you're done. Let me know when you've\nsubmitted your feedback (or paste your preferences here). If you clicked\nRegenerate or Remix on the board, tell me and I'll generate new variants.\"\n\n**Do NOT use AskUserQuestion to ask which variant the user prefers.** The comparison\nboard IS the chooser. AskUserQuestion is just the blocking wait mechanism.\n\n**After the user responds to AskUserQuestion:**\n\nCheck for feedback files next to the board HTML:\n- `$_DESIGN_DIR/feedback.json` — written when user clicks Submit (final choice)\n- `$_DESIGN_DIR/feedback-pending.json` — written when user clicks Regenerate/Remix/More Like This\n\n```bash\nif [ -f \"$_DESIGN_DIR/feedback.json\" ]; then\n  echo \"SUBMIT_RECEIVED\"\n  cat \"$_DESIGN_DIR/feedback.json\"\nelif [ -f \"$_DESIGN_DIR/feedback-pending.json\" ]; then\n  echo \"REGENERATE_RECEIVED\"\n  cat \"$_DESIGN_DIR/feedback-pending.json\"\n  rm \"$_DESIGN_DIR/feedback-pending.json\"\nelse\n  echo \"NO_FEEDBACK_FILE\"\nfi\n```\n\nThe feedback JSON has this shape:\n```json\n{\n  \"preferred\": \"A\",\n  \"ratings\": { \"A\": 4, \"B\": 3, \"C\": 2 },\n  \"comments\": { \"A\": \"Love the spacing\" },\n  \"overall\": \"Go with A, bigger CTA\",\n  \"regenerated\": false\n}\n```\n\n**If `feedback.json` found:** The user clicked Submit on the board.\nRead `preferred`, `ratings`, `comments`, `overall` from the JSON. Proceed with\nthe approved variant.\n\n**If `feedback-pending.json` found:** The user clicked Regenerate/Remix on the board.\n1. Read `regenerateAction` from the JSON (`\"different\"`, `\"match\"`, `\"more_like_B\"`,\n   `\"remix\"`, or custom text)\n2. If `regenerateAction` is `\"remix\"`, read `remixSpec` (e.g. `{\"layout\":\"A\",\"colors\":\"B\"}`)\n3. Generate new variants with `$D iterate` or `$D variants` using updated brief\n4. Create new board: `$D compare --images \"...\" --output \"$_DESIGN_DIR/design-board.html\"`\n5. Reload the board in the user's browser (same tab):\n   `curl -s -X POST http://127.0.0.1:PORT/api/reload -H 'Content-Type: application/json' -d '{\"html\":\"$_DESIGN_DIR/design-board.html\"}'`\n6. The board auto-refreshes. **AskUserQuestion again** with the same board URL to\n   wait for the next round of feedback. Repeat until `feedback.json` appears.\n\n**If `NO_FEEDBACK_FILE`:** The user typed their preferences directly in the\nAskUserQuestion response instead of using the board. Use their text response\nas the feedback.\n\n**POLLING FALLBACK:** Only use polling if `$D serve` fails (no port available).\nIn that case, show each variant inline using the Read tool (so the user can see them),\nthen use AskUserQuestion:\n\"The comparison board server failed to start. I've shown the variants above.\nWhich do you prefer? Any feedback?\"\n\n**After receiving feedback (any path):** Output a clear summary confirming\nwhat was understood:\n\n\"Here's what I understood from your feedback:\nPREFERRED: Variant [X]\nRATINGS: [list]\nYOUR NOTES: [comments]\nDIRECTION: [overall]\n\nIs this right?\"\n\nUse AskUserQuestion to verify before proceeding.\n\n**Save the approved choice:**\n```bash\necho '{\"approved_variant\":\"<V>\",\"feedback\":\"<FB>\",\"date\":\"'$(date -u +%Y-%m-%dT%H:%M:%SZ)'\",\"screen\":\"<SCREEN>\",\"branch\":\"'$(git branch --show-current 2>/dev/null)'\"}' > \"$_DESIGN_DIR/approved.json\"\n```\n\n## Step 5: Feedback Confirmation\n\nAfter receiving feedback (via HTTP POST or AskUserQuestion fallback), output a clear\nsummary confirming what was understood:\n\n\"Here's what I understood from your feedback:\n\nPREFERRED: Variant [X]\nRATINGS: A: 4/5, B: 3/5, C: 2/5\nYOUR NOTES: [full text of per-variant and overall comments]\nDIRECTION: [regenerate action if any]\n\nIs this right?\"\n\nUse AskUserQuestion to confirm before saving.\n\n## Step 6: Save & Next Steps\n\nWrite `approved.json` to `$_DESIGN_DIR/` (handled by the loop above).\n\nIf invoked from another skill: return the structured feedback for that skill to consume.\nThe calling skill reads `approved.json` and the approved variant PNG.\n\nIf standalone, offer next steps via AskUserQuestion:\n\n> \"Design direction locked in. What's next?\n> A) Iterate more — refine the approved variant with specific feedback\n> B) Finalize — generate production Pretext-native HTML/CSS with /design-html\n> C) Save to plan — add this as an approved mockup reference in the current plan\n> D) Done — I'll use this later\"\n\n## Important Rules\n\n1. **Never save to `.context/`, `docs/designs/`, or `/tmp/`.** All design artifacts go\n   to `~/.vibestack/projects/$SLUG/designs/`. This is enforced. See DESIGN_SETUP above.\n2. **Show variants inline before opening the board.** The user should see designs\n   immediately in their terminal. The browser board is for detailed feedback.\n3. **Confirm feedback before saving.** Always summarize what you understood and verify.\n4. **Taste memory is automatic.** Prior approved designs inform new generations by default.\n5. **Two rounds max on context gathering.** Don't over-interrogate. Proceed with assumptions.\n6. **DESIGN.md is the default constraint.** Unless the user says otherwise.","tags":["design","shotgun","vibestack","timurgaleev","agent-skills","ai-agents","claude-code","cursor-ide","developer-tools","kiro","mcp","prompt-engineering"],"capabilities":["skill","source-timurgaleev","skill-design-shotgun","topic-agent-skills","topic-ai-agents","topic-claude-code","topic-cursor-ide","topic-developer-tools","topic-kiro","topic-mcp","topic-prompt-engineering","topic-slash-commands"],"categories":["vibestack"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/timurgaleev/vibestack/design-shotgun","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add timurgaleev/vibestack","source_repo":"https://github.com/timurgaleev/vibestack","install_from":"skills.sh"}},"qualityScore":"0.457","qualityRationale":"deterministic score 0.46 from registry signals: · indexed on github topic:agent-skills · 15 github stars · SKILL.md body (22,970 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-05-18T19:06:20.821Z","embedding":null,"createdAt":"2026-05-18T19:06:20.821Z","updatedAt":"2026-05-18T19:06:20.821Z","lastSeenAt":"2026-05-18T19:06:20.821Z","tsv":"'-10':1729 '-200':1474 '-3':1523,1526,1529,1532,1551 '-30':1162 '-5':872,1179 '-80':1148 '/.vibestack':2444 '/.vibestack/bin/vibe-learnings-search':92 '/.vibestack/bin/vibe-slug':47,850,1844 '/.vibestack/projects':861,1171,1413,1426,1718,3375 '/current.png':2427 '/design-html':3337 '/design-shotgun':966,995 '/dev/null':49,51,75,90,96,852,857,868,1146,1160,1168,1177,1243,1250,1472,1714,1725,1846,2590,2601,3198 '/learnings.jsonl':62 '/path/to/design':2246 '/projects':59 '/tmp':2435,2453,2463,3369 '/tmp/variant-':2289,2310,2354,2431 '/variant-':2298,2359,2371,2389,2598 '0':836,1677,2250 '1':171,953,1013,1067,2302,2419,2474,2954,3362 '10':1639,1775 '127.0.0.1':2756,3019 '2':48,50,74,89,95,211,851,856,866,867,1051,1078,1145,1159,1167,1176,1249,1379,1471,1713,1723,1724,1845,2133,2313,2490,2589,2600,2907,2969,3197,3384 '2/5':3239 '3':243,1093,1356,1494,1834,1915,2334,2336,2504,2905,2981,3408 '3/5':3237 '3000':1248 '3a':1877 '3b':2048 '3c':2157 '3d':2468 '4':1106,2351,2517,2556,2569,2615,2903,2994,3420 '4/5':3235 '429':2323 '44px':798 '5':88,94,1065,1122,1459,1629,2328,2362,2552,3004,3202,3433 '6':1635,2383,3030,3266,3448 '60':319,2082 '60s':2069 '7':2392 '8':1359 'a/b/c':2583 'abort':2450 'absolut':2240,2273,2296 'accid':366 'accomplish':362,1089 'across':445 'action':3253 'actual':140,287,2498,2578 'add':1766,2105,2137,3342 'addit':554,2111 'adjust':917 'aesthet':1439,1530 'afford':780 'agent':2183,2193,2205,2233,2253,2255,2472 'aggreg':1683,1761 'ago':1637 'ai':8,975 'alreadi':1037,1098,1754 'also':1545 'alway':589,2460,3413 'anim':236 'anoth':1031,3283 'answer':590 'anti':1963 'anti-converg':1962 'anytim':26,996 'api':1882,2057 'apolog':754 'app':1156 'appear':719,3054 'appli':157,763 'application/json':3025 'approach':1980 'approv':1396,1444,1451,1495,1501,1634,1640,1646,1742,1770,1802,2942,3174,3178,3301,3323,3346,3426 'approved.json':864,891,1565,1682,1704,1721,1736,1764,1828,3271,3298 'area':304 'arriv':1112 'artifact':3372 'ask':702,1320,1601,2808 'askuserquest':896,1298,2052,2715,2725,2806,2820,2832,3036,3067,3112,3167,3212,3260,3310 'assumpt':488,1377,3447 'attent':537 'audienc':1075 'auto':1139,3034 'auto-gath':1138 'auto-refresh':3033 'automat':3424 'avail':118,122,1688,3092 'avoid':1546 'away':804,827 'b':920,949,1927,2094,2122,2177,2904,2964,2980,3236,3328 'back':129,2523,2549 'background':2674 'bad':383 'base':133,1509 'bash':45,107,848,1142,1153,1163,1239,1423,1709,1842,2176,2585,2633,2860,3176 'beat':222 'behav':141,288 'behavior':154 'best':337 'better':439 'bias':1399,1533 'big':796 'bigger':2917 'billboard':315,409 'binari':2272,2277 'block':2824 'board':14,915,937,2558,2564,2617,2621,2627,2651,2689,2705,2717,2721,2733,2751,2794,2816,2840,2930,2953,2997,3007,3032,3041,3073,3115,3391,3403 'brainstorm':37,969 'branch':3191,3193 'breadcrumb':624 'brief':399,1043,1062,1508,2278,2284,2307,2308,2374,2375,2428,2429,2993 'brochur':323 'browser':986,2669,2744,3012,3402 'build':1058 'bullet':307 'c':930,1937,2104,2136,2906,3238,3338 'calcul':1651 'call':1034,1883,3295 'came':2032 'case':1124,1238,1870,3095 'cat':1143,1468,2869,2880 'chang':1665,2098 'check':839,1040,1223,2214,2364,2367,2378,2833 'choic':235,341,345,919,2850,3175 'choos':568 'chooser':2819 'chose':905 'clariti':555,569 'clear':302,3139,3216 'clearer':562 'clever':431 'cli':1823 'click':193,212,221,224,2738,2766,2788,2847,2856,2926,2949 'clickabl':498,501,525 'close':819 'clutter':548 'code':1246 'codebas':1101,1312 'coffe':2045 'collect':15 'color':521,1437,1524,1976,1991,2979 'command':2316,2347,2613,2648 'comment':2760,2908,2934,3160,3250 'compar':1993,2611,2635,2999 'comparison':13,914,2557,2563,2616,2620,2626,2750,2815,3114 'compat':2593 'complet':2473 'compon':1103,1158 'comput':1464 'concept':1878,1887,1895,1960,2049,2100,2128,2138,2149 'concret':2009 'confid':1450,1457,1500,1626 'confirm':2050,2054,2131,2144,2155,3141,3204,3218,3262,3409 'conflict':1568,1831 'congratulatori':270 'consist':557 'constraint':3453 'construct':2570 'consult':1029 'consum':3293 'contact':687 'contain':474 'content':460,3023 'content-typ':3022 'context':1014,1039,1056,1064,1303,1340,1367,1771,1874,3366,3438 'contradict':1575 'convent':414,443,450 'converg':1964 'copi':2352 'corrupt':1783 'could':2013 'count':69,81,86,1452,1454,1502,1512,2086 'cover':635,1329 'cp':2353,2437,2466 'creat':2624,2995 'creativ':1900 'credit':2058 'cross':1389 'cross-sess':1388 'cta':2918 'cultur':448 'curl':1240,3015 'current':628,1280,1572,3196,3351 'cursor':785 'custom':2967 'cycl':2712 'd':77,1284,1288,1854,2113,2146,2219,2223,2276,2304,2365,2421,2441,2532,2610,2634,2986,2989,2998,3026,3087,3353 'daemon':114 'date':903,1851,3181,3182 'decay':1458,1625,1628,1650,1829 'decis':165 'deep':626 'default':1195,1222,1355,2668,3432,3452 'defin':303 'deliber':2006 'demonstr':1405 'deplet':678,680 'deriv':1749 'describ':1888 'descript':1867,1923,1933,1943,2406 'design':2,4,9,21,30,34,105,113,116,120,134,164,200,282,295,314,410,801,842,898,976,1001,1018,1025,1028,1042,1061,1072,1151,1190,1211,1297,1397,1507,1791,1847,1857,1860,1862,1892,2036,2179,2226,2244,2266,2271,2294,2357,2369,2387,2425,2596,2637,2639,2641,2644,2754,2842,2851,2863,2870,2874,2881,2884,3002,3028,3199,3273,3311,3371,3381,3396,3427 'design-consult':1027 'design-shotgun':1,1017,1210,1790 'design.md':1144,1181,1193,1313,1949,3449 'detail':3406 'detect':838 'develop':998 'die':273,276 'differ':1543,1973,2007,2035,2044,2960 'dimens':1066,1435,1442,1498,1554 'dir':1848,1858,1861,1863,2295,2358,2370,2388,2426,2597,3274 'dir/approved.json':3200 'dir/current.png':2180 'dir/design-board.html':2645,3003,3029 'dir/feedback-pending.json':2852,2875,2882,2885 'dir/feedback.json':2843,2864,2871 'dir/variant-a.png':2638 'dir/variant-b.png':2640 'dir/variant-c.png':2642 'direct':584,977,1002,1206,1544,1893,1901,1916,1926,1936,1946,1965,2008,2063,2112,2287,3064,3161,3251,3312 'directori':1841 'discov':791 'discover':508 'disorgan':543 'display':892 'distinct':1899,1961 'dive':394 'diverg':1220 'docs/designs':3367 'doesn':514 'done':1082,2399,2771,3354 'doubt':753 'draw':1947 'drop':2120,2147 'dt':3186 'dynam':2559 'e.g':1580,2976 'easi':746 'echo':78,100,115,875,879,883,1149,1251,1475,1480,1859,2866,2877,2887,3177 'edg':1123 'element':2762 'elif':2872 'elimin':528 'els':99,823,932,1479,2886 'empti':2344 'enforc':3379 'enough':797 'entri':82,1447,1496 'error':750,1129,2322,2405,2512 'especi':509 'estat':770 'eval':46,849,1843 'even':444 'everi':163,177,570,622,675 'everyth':464,480,489,636,822 'evid':183,205 'evolv':1285,2161,2415,2423 'exact':2394 'except':637 'execut':2190 'exhaust':2411 'exist':516,939,1095,1102,1182,1296,1422,1733,2579 'expertis':1076 'explan':210 'explanatori':208 'explicit':1540,1810,2509 'explor':22,29,843,899,922,1000,1914 'extract':1738 'f':64,1429,2862,2873 'fail':202,284,664,1999,2317,2379,2404,2445,2503,2544,3089,3117 'failur':2502,2507 'fall':128,1559,2522,2548 'fallback':3082,3213 'fals':2920 'famili':1975 'faster':681 'favorit':991 'feedback':17,908,946,2124,2618,2622,2780,2835,2889,2893,3050,3057,3080,3131,3134,3152,3180,3203,3207,3229,3288,3327,3407,3410 'feedback-pending.json':2945 'feedback.json':2922,3053 'feel':231,1989,2029 'fewer':2114 'fi':98,104,1484,2891 'field':1674 'figur':352 'file':55,66,73,1566,1661,1670,1705,1765,1784,2340,2400,2577,2836,2890,3058 'fill':1302,1306,1339 'final':2292,2849,3329 'find':376,860,1717 'first':332,961,1133,1141,2175,2464 'first-tim':960,1132 'fix':549 'flag':1590,1832 'flat':800 'flow':1108 'follow':1188,1214 'font':1436,1521,1633,1759,1974 'forc':713 'format':520,697 'found':878,888,1478,1488,2923,2946 'frame':1325 'fresh':924 'friction':676 'full':2280,3242 'gap':1331,1344,1351 'gather':1015,1038,1055,1140,1368,1875,3439 'geist':1758 'general':2199 'general-purpos':2198 'generat':6,126,973,1291,1400,1534,1835,1879,1884,2066,2089,2159,2212,2264,2306,2381,2442,2461,2477,2496,2526,2533,2543,2649,2800,2982,3330,3430 'get':248,258,833 'git':3192 'glass':423 'go':316,818,1120,1200,2914,3373 'goal':364 'good':2093 'goodwil':666,674 'govern':144 'group':469 'grow':1663 'gt':87 'guidanc':396 'guilti':493 'h':3021,3187 'half':251,261 'hand':821 'handl':1569,1824,2209,3275 'happen':1652 'happi':266 'hard':1966 'hardcod':2582 'head':305,871,1147,1161,1178,1473,1728 'headlin':2016 'heard':484 'hide':682 'hierarchi':299,462,627 'higher':758 'highlight':309 'histori':1762 'home':57 'home/.vibestack':58 'home/.vibestack/projects':1849 'hour':1175,1317 'hover':505,513,789 'hover-to-discov':788 'html':2652,2841,3027 'html/css':3335 'http':1245,2632,2655,3209 'human':147 'hurri':817 'idea':440 'identifi':453 'imag':2368,2560,2572,2594,2607,2612,2636,3000 'immedi':3397 'import':301,476,1361,2218,3360 'improv':1292 'inact':1463 'includ':111,1503,2731 'inconsist':567 'incorpor':2123 'independ':2207 'indic':631 'infer':1309 'info':683 'inform':705,807,3428 'inherit':2236 'inlin':2479,3099,3387 'innoc':496 'innov':426,432 'instead':1286,3069 'instruct':274,392,929 'interact':148,527,810,2686 'interfac':150,412 'interrog':3444 'interstiti':715 'invok':1021,3281 'iter':19,2987,3319 'job':1079 'json':1778,2894,2898,2938,2959 'kebab':1869 'kebab-cas':1868 'key':310 'know':435,643,721,737,1336,2774 'l':71 'land':2538 'languag':446 'last':1455,1647,1774 'later':3359 'launch':2181 'law':168 'layout':1438,1527,1979,1994,2977 'lead':1216 'lean':1519 'learn':54,65,68,72,79,80,85,101,1806,1820 'leav':2759 'left':265,418 'legaci':1567,1681,1706 'less':1642 'let':451,1009,2772 'letter':1910,2290,2299,2311,2355,2360,2372,2390,2398,2403,2408,2432 'level':611,1077,2046 'lh':2386 'like':42,232,1235,1270,1274,1985,2030,2170,2545,2764,2858,2963 'limit':93,1772,2321,2326,2410,2547 'line':1921,1931,1941 'list':308,1911,2561,2573,2584,3157 'live':1226 'll':972,1187,1607,1913,2065,2072,2109,2799,3356 'load':83 'local':1253,1257 'localhost':1247 'locat':518,586,2293 'lock':3313 'log':1800,1807,1814,1821 'logic':542 'logo':415,455 'long':1125 'look':1277,1984,2092 'loop':947,2619,2623,3278 'lost':2742 'love':2910 'ls':1154,1170,2385,2595 'm':1342,1853,3185,3188 'magnifi':422 'main':459 'major':603,656 'make':174,338,497,559,564,728,744,1581,1958 'mani':533,1353 'match':2961 'matter':215,381 'max':1365,2132,3436 'maxdepth':865,1722 'md':1152 'mean':198,786 'mechan':2826 'memori':1381,1951,3422 'merg':1744 'messag':963,2188 'migrat':1667,1692,1826 'mindless':219 'miner':239 'minim':1589,1598 'minimum':799 'minor':1904 'miss':1324,1343,2342 'mkdir':1855 'mobil':511,755,765,1131 'mockup':125,3347 'month':1636 'mph':320 'much':546 'muddl':347 'multipl':7,974 'must':272,275,397,523,588,781,794,1970 'n':873,1885,2062,2091,2182,2494,2603 'name':863,1126,1720,1871,1918,1928,1938 'nativ':3334 'nav':419,456 'navig':428,572,587,620,639,662 'need':279,814,2679,2701 'nest':470 'never':774,3363 'new':921,926,2801,2983,2996,3429 'next':1121,1699,2837,3047,3268,3307,3317 'nois':492,529,550 'nomatch':855,1166,1712,2588 'none':102 'note':1376,1592,3159,3241 'noth':482 'notic':2022 'number':701 'o':854,1165,1242,1711,2587 'observ':153,2439 'obvious':234,500,730,830 'offer':3306 'offic':1174,1316 'office-hour':1173,1315 'omit':244,246 'one':223,1327,1623,1645,1920,1930,1940,1996,2003,2173,2258,2395,2527 'one-lin':1919,1929,1939 'one-off':1622 'open':11,978,2662,2748,3389 'oper':2448 'option':33,334,608,2087 'organ':541 'otherwis':441,3458 'output':1318,1840,2247,2288,2309,2339,2430,2443,2452,2643,2695,3001,3137,3214 'over-interrog':3442 'overal':2913,2935,3162,3249 'overlap':1990 'p':1856 'page':178,256,596,623,649,1104,1157,1281 'palett':1977 'parallel':2077,2158,2189,2542 'pars':1779,2690 'part':1005 'past':2782 'path':831,2220,2241,2274,2297,2305,2366,2416,2422,3136 'pattern':1105,1739 'peopl':324,452 'per':1394,1460,1497,1553,1563,1630,1702,2259,3246 'per-sess':1393,1562,1701 'per-vari':3245 'persist':619,1385,1407,1417,1578 'persona':1074 'phone':700 'pick':330,989,1797 'plan':1024,3341,3352 'plan-design-review':1023 'play':1583,1603 'png':2291,2300,2312,2356,2361,2373,2391,2433,2478,2599,3303 'pngs':941 'point':677 'poll':3081,3085 'port':2660,2692,2698,3091 'port/api/reload':3020 'possibl':743 'post':3018,3210 'power':1136 'pre':1301,1305,1338 'pre-fil':1300,1304,1337 'preambl':44 'prefer':156,1588,1597,1757,2784,2813,2899,2932,3063,3129,3153,3230 'present':1906,2127,2141,2152 'pretext':3333 'pretext-n':3332 'prev':859,874,884 'previous':876,881,886,897,956 'price':686 'primari':2713 'principl':137,143 'prior':841,1513,1731,3425 'priorit':811 'proceed':950,1370,1608,2553,2566,2939,3171,3445 'product':322,1008,3331 'profil':1387,1409,1419,1425,1431,1470,1477,1483,1487,1558,1586,1595,1616,1753,1787 'project':847,902 'promin':300,478 'prompt':2254,2256 'propag':2221 'proper':1060 'proven':495 'punish':689 'purpos':2200 'put':706 'puzzl':242 'qualiti':2213,2363,2377 'question':1328,1348 'r':870,1727 'random':2659 'rate':2320,2325,2409,2546,2757,2901,2933,3156,3233 're':313,651,1600,2024,2126,2130,2140,2143,2151,2154,2770 're-confirm':2129,2142,2153 're-pres':2125,2139,2150 'read':280,294,391,889,1382,1415,1466,1654,1734,2475,2480,2931,2955,2974,3102,3297 'readi':2245 'real':146,769 'reason':333 'receiv':2868,2879,3133,3206 'recent':1769 'recov':748 'refer':3348 'referenc':1264 'refin':3321 'refresh':3035 'regardless':2084 'regener':935,2000,2711,2789,2878,2919,3252 'regenerate/remix':2950 'regenerate/remix/more':2857 'regenerateact':2956,2971 'reject':1446,1453,1549,1552,1811,1816 'relat':465 'reli':503 'reload':2709,3005 'remix':2761,2791,2965,2973 'remixspec':2975 'remov':552 'reopen':912,942 'repeat':3051 'replac':1864,2417 'replenish':720 'report':2393,2491,2508 'request':1541,1574,1956 'requir':209,226,563,698,1063,1967 'reserv':1203 'reservoir':667,672 'resolv':2239 'respond':2830 'respons':3068,3077 'restrict':2459 'result':1128,2469 'resum':944 'retri':2217,2331,2335,2349,2380,2412 'return':3285 'review':135,1026 'revisit':911 'rhythm':1995 'rid':249,259 'right':340,372,3165,3258 'rm':2883 'round':1364,2134,3048,3435 'rule':757,3361 'run':25,994,1053,1260,2073,2303,2670,2682 'ruthless':812 'sacrific':775 'said':1268,2166 'sandbox':2458 'satisfic':328 'save':739,779,2269,3172,3264,3267,3339,3364,3412 'say':1208,1755,3457 'scale':583 'scan':290,297 'scarc':772 'schema':1411,1433,1666,1695,1825 'score':1627 'screen':712,904,1115,1362,3190 'screen/page':1092 'screenshot':1229,1278,2164,2174,2178,2424 'search':421,457,618 'second':2083,2329 'section':604,629,657 'sed':2604 'see':2485,3108,3380,3395 'seek':370 'seen':408,1456 'self':182,204,207,269 'self-congratulatori':268 'self-evid':181,203 'self-explanatori':206 'sens':581 'sequenti':2525,2551 'serv':2629,2646,2696,2723,3088 'server':2656,2678,3116 'session':837,844,877,882,887,957,1390,1395,1440,1511,1514,1564,1703,1732,1776,1793,2440 'set':1047,1837 'setopt':853,1164,1710,2586 'setup':106,2227,3382 'shape':517,2897 'shell':2230 'ship':688 'shotgun':3,5,1019,1212,1792 'shout':481,535,538 'show':31,958,2534,3096,3195,3385 'show-curr':3194 'shown':3122 'sibl':1986 'side':981,983 'side-by-sid':980 'signal':524,809,1492,1579,1750 'signific':561 'silent':2515 'similar':2026 'singl':2187 'site':592,645,1227,1254,1258 'size':2401 'sizzl':707 'skill':1032,1035,3284,3291,3296 'skill-design-shotgun' 'skip':123,1048,1782,2516 'slight':566 'sloppi':718 'slug':52,60,1172 'slug/designs':862,1719,1850,3376 'slug/taste-profile.json':1414,1427 'someon':2012 'someth':377,560,931,1269 'sort':869,1726 'sourc':531 'source-timurgaleev' 'space':778,2912 'specif':1347,1768,2283,3326 'specifi':2148 'spend':2056 'splash':711 'src':1155 'stake':759 'standalon':20,1054,3305 'start':485,669,923,1011,2653,2697,3119 'state':506,1130 'status':2492 'stay':2681 'stderr':2694 'step':229,741,835,952,1012,1050,1378,1833,1876,2047,2156,2249,2301,2418,2467,2555,2568,2614,3201,3265,3269,3308 'stick':385 'still':642,1707 'stop':187 'strip':803 'strong':1548,1577,1587,1596 'strongest':1491 'structur':16,3287 'studi':326 'stuff':547 'subag':2184,2196 'submit':2767,2778,2848,2867,2927 'substitut':2237,2261 'succeed':2348,2454,2501,2521 'success':2500 'suggest':2110 'summar':1489,3414 'summari':894,909,3140,3217 'support':1708 'swap':2014 'system':1191 'sz':3189 'tab':2745,3014 'take':2068,2172 'talk':267 'tap':826 'target':793 'tast':1380,1386,1406,1408,1418,1424,1430,1469,1476,1482,1486,1518,1557,1585,1594,1615,1685,1716,1786,1950,3421 'taste-profile.json':1748 'taste-upd':1684 'team':2037,2041 'tell':731,1183,1345,2101,2116,2539,2795 'temperatur':1992 'templat':2257 'term':311 'termin':3400 'test':634,2010 'text':132,271,1886,2017,2968,3076,3243 'text-bas':131 'thing':355,466,471,499,534,539,694,813 'think':176,189,216 'thought':227 'three':167,218,530,2034,2043 'time':400,571,962,1134,1467,1605,1655,1658,2080,2499,2530 'tool':970,2194,2481,3103 'top':417,1493,1522,1525,1528,1531,1550 'top-left':416 'top/left':420 'topic-agent-skills' 'topic-ai-agents' 'topic-claude-code' 'topic-cursor-ide' 'topic-developer-tools' 'topic-kiro' 'topic-mcp' 'topic-prompt-engineering' 'topic-slash-commands' 'total':2079 'touch':792 'tour':714 'toward':1401,1520,1535 'tr':76,2602 'treat':1618 'tri':1087 'true':97,858,1169,1715,2591 'trump':556 'trunk':633 'try/catch':1777 'two':1363,1982,2019,3434 'type':2197,3024,3061 'typograph':1988 'u':3183 'unambigu':220 'unavoid':402 'underlin':522 'understood':3144,3149,3221,3226,3417 'unknown':53,61 'unless':1537,3454 'unnecessari':704 'unprofession':716 'updat':928,1613,1686,1785,2992 'upfront':738 'url':1266,2706,2718,2734,3042 'usabl':170,776 'use':27,413,442,805,1237,1283,1971,2051,2191,2606,2724,2805,2991,3071,3074,3084,3100,3111,3166,3259,3357 'user':139,186,286,289,327,346,388,575,668,684,690,723,1086,1107,1111,1137,1185,1263,1403,1516,1539,1573,1756,1796,1954,2165,2484,2541,2666,2685,2730,2812,2829,2846,2855,2925,2948,3010,3060,3106,3393,3456 'ux':136 'v1':1410,1434,1696 'valu':1449,2263 'variabl':2224,2231 'variant':10,35,906,940,1289,1293,1354,1743,1799,1813,1836,1890,1969,1983,2020,2027,2107,2115,2203,2260,2267,2282,2397,2402,2407,2487,2495,2520,2576,2755,2802,2810,2943,2984,2990,3098,3124,3154,3179,3231,3247,3302,3324,3386 'variant-specif':2281 'variat':1905 've':2747,2777,3121 'veget':237 'verif':2215 'verifi':2384,3169,3419 'version':1673,1676 'via':1803,1817,3208,3309 'vibe':1805,1819 'vibe-learnings-log':1804,1818 'vibestack':56,108,1690 'visibl':344,783 'visual':36,124,298,461,468,473,491,630,806,968,1205,1922,1932,1942 'vs':1135 'w':1244 'wait':2327,2714,2727,2825,3044 'want':685,724,735,1198,1610,2096 'way':373,696,710 'wayfind':574 'wc':70 'weaker':2002 'web':449,578 'week':1461,1631,1648 'weight':1643 'whatev':2575 'wherev':742 'wing':358 'without':526,2021 'won':368,405,1218 'word':253 'work':356,379 'write':1657,1700,3270 'written':2844,2853 'x':907,3017,3155,3232 'xxxxx':2699 'y':1852,3184 'yet':103 'zero':1127,2519 'zsh':2592","prices":[{"id":"4657b139-c1b4-4cbc-bfa5-e3218d6a9b1a","listingId":"6a389010-6ef7-4154-ac9d-1015039ab477","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"timurgaleev","category":"vibestack","install_from":"skills.sh"},"createdAt":"2026-05-18T19:06:20.821Z"}],"sources":[{"listingId":"6a389010-6ef7-4154-ac9d-1015039ab477","source":"github","sourceId":"timurgaleev/vibestack/design-shotgun","sourceUrl":"https://github.com/timurgaleev/vibestack/tree/main/skills/design-shotgun","isPrimary":false,"firstSeenAt":"2026-05-18T19:06:20.821Z","lastSeenAt":"2026-05-18T19:06:20.821Z"}],"details":{"listingId":"6a389010-6ef7-4154-ac9d-1015039ab477","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"timurgaleev","slug":"design-shotgun","github":{"repo":"timurgaleev/vibestack","stars":15,"topics":["agent-skills","ai-agents","claude-code","cursor-ide","developer-tools","kiro","mcp","prompt-engineering","slash-commands"],"license":"mit","html_url":"https://github.com/timurgaleev/vibestack","pushed_at":"2026-05-18T18:19:05Z","description":"vibestack is a portable skill pack for AI coding agents. Slash commands like /office-hours, /ship, /investigate, /tdd, /review install once and work across every agent that supports the Agent Skills open standard — Claude Code, Cursor, Kiro, and a growing list of others. ","skill_md_sha":"2f0aa4153a453416db0d769d302d826b2b4ada92","skill_md_path":"skills/design-shotgun/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/timurgaleev/vibestack/tree/main/skills/design-shotgun"},"layout":"multi","source":"github","category":"vibestack","frontmatter":{"name":"design-shotgun","description":"Design shotgun: generate multiple AI design variants, open a comparison board,\ncollect structured feedback, and iterate. Standalone design exploration you can\nrun anytime. Use when: \"explore designs\", \"show me options\", \"design variants\",\n\"visual brainstorm\", or \"I don't like how this looks\".\nProactively suggest when the user describes a UI feature but hasn't seen\nwhat it could look like."},"skills_sh_url":"https://skills.sh/timurgaleev/vibestack/design-shotgun"},"updatedAt":"2026-05-18T19:06:20.821Z"}}