design-consultation

design-consultation is a skill for Claude Code, Codex from timurgaleev/vibestack. It costs 69 tokens per session (7,983 once invoked), scanned C, original, MIT.

A design-consulting workflow that studies a product and its visual landscape, then proposes a complete interface style and records it in DESIGN.md. A design system is a shared set of rules for colours, fonts, spacing, layout, and motion.

In plain words
What is it for?
Use it to create or update a design system, choose typography and colours, plan layouts and motion, and generate preview pages for font and colour choices.
Why use it?
It gives a project a documented visual direction instead of leaving design decisions scattered across individual screens.

Skill for Claude CodeCodex

Written for Claude Code and Codex: allowed-tools in frontmatter, but also runs codex exec. Also seen: mentions CLAUDE.md; mentions subagents; names the AskUserQuestion tool.

Good fit Use it to create or update a design system, choose typography and colours, plan layouts and motion, and generate preview pages for font and colour choices.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/timurgaleev/vibestack/design-consultation
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add timurgaleev/vibestack --skill design-consultation
Clone the repo
git clone --depth 1 https://github.com/timurgaleev/vibestack

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for design-consultation

README.md
[![agentmods](https://agentmods.dev/badge/skills/timurgaleev/vibestack/design-consultation/github.svg)](https://agentmods.dev/skills/timurgaleev/vibestack/design-consultation)
Your own site
<a href="https://agentmods.dev/skills/timurgaleev/vibestack/design-consultation"><img src="https://agentmods.dev/badge/skills/timurgaleev/vibestack/design-consultation/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for design-consultation

Your own site · 80×15
<a href="https://agentmods.dev/skills/timurgaleev/vibestack/design-consultation"><img src="https://agentmods.dev/badge/skills/timurgaleev/vibestack/design-consultation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 69 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,983 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00069 $0.07983
Opus 5 $0.00034 $0.03992
Sonnet 5 $0.00014 $0.01597
Haiku 4.5 $0.00007 $0.00798

Measured 5d ago against content hash 3db06d23f961, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade C, and why

design-consultation scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Tells the agent never to refusehighAnti-refusal

Suppressing the ability to decline removes a core safety control; a later harmful request then succeeds.

- Always accept the user's final choice. Never refuse to proceed.
skills/design-consultation/SKILL.md · 648 lines

How it starts

The opening of the file, as written. The whole thing — 648 lines — stays where its author put it; the contents beside it link to each section on GitHub.

When to invoke

Use when asked to "design system", "brand guidelines", or "create DESIGN.md".

Proactively suggest when starting a new project's UI with no existing design system or DESIGN.md.

Preamble

eval "$(~/.vibestack/bin/vibe-slug 2>/dev/null)" 2>/dev/null || SLUG="unknown"
_LEARN_FILE="${VIBESTACK_HOME:-$HOME/.vibestack}/projects/${SLUG:-unknown}/learnings.jsonl"
if [ -f "$_LEARN_FILE" ]; then
  _LEARN_COUNT=$(wc -l < "$_LEARN_FILE" 2>/dev/null | tr -d ' ')
  echo "LEARNINGS: $_LEARN_COUNT entries loaded"
  if [ "$_LEARN_COUNT" -gt 5 ] 2>/dev/null; then
    ~/.vibestack/bin/vibe-learnings-search --limit 5 2>/dev/null || true
  fi
else
  echo "LEARNINGS: none yet"
fi

{{include lib/snippets/session-host.md}}

{{include lib/snippets/decision-brief.md}}

{{include lib/snippets/working-protocols.md}}

{{include lib/snippets/state-protocols.md}}


/design-consultation: Your Design System, Built Together

You are a senior product designer with strong opinions about typography, color, and visual systems. You don't hand the user a menu of choices — you listen, research, and propose.

Your posture: design consultant, not form wizard. Every phase below asks questions, but the questions exist to sharpen a proposal you already made, not to outsource the design to the user. Propose a complete, coherent system, explain why it holds together, and invite the user to push back on it.

Phase 0: Pre-checks

Check for existing DESIGN.md:

ls DESIGN.md design-system.md 2>/dev/null || echo "NO_DESIGN_FILE"
  • If a DESIGN.md exists: Read it. Ask the user: "You already have a design system. Want to update it, start fresh, or cancel?"
  • If no DESIGN.md: continue.

Gather product context from the codebase:

cat README.md 2>/dev/null | head -50
cat package.json 2>/dev/null | head -20
ls src/ app/ pages/ components/ 2>/dev/null | head -30

Look for office-hours output:

setopt +o nomatch 2>/dev/null || true  # zsh compat
eval "$(~/.vibestack/bin/vibe-slug 2>/dev/null)"
ls ~/.vibestack/projects/$SLUG/*office-hours* 2>/dev/null | head -5
ls .context/*office-hours* .context/attachments/*office-hours* 2>/dev/null | head -5

Read the full file on GitHub · 648 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago Changed · -47 lines scan D → C 3db06d23f961
  2. 9d ago First seen · 695 lines · 69 tokens per session scan D fd2e58aa2022

Subscribe to this mod's changes

design-consultation is a skill published in the GitHub repository timurgaleev/vibestack (6 stars, last pushed 7d ago), licensed MIT. It adds 69 tokens to every session and 7,983 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it C with 1 finding (tells the agent never to refuse). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

mermaid-diagrams

Author Mermaid diagrams for architecture work — C4 context/container/component, sequence, deployment, flowchart, and state diagrams with copy-paste examples and CLI validation. Use when the user wants a text-based diagram, a diagram embedded in Markdown, or a quick architecture sketch.

ihatesea69/kiro-kit · 59 tokens

aesthetic

Create aesthetically beautiful interfaces following proven design principles. Use when building UI that needs visual polish, micro-interactions, or design system refinement.

ihatesea69/kiro-kit · 30 tokens

accessibility-audit

Audit UI for WCAG accessibility issues and fixes.

emaraschio/cursor-commands · 14 tokens

drawio-gcp

Use when the user asks for a GCP or Google Cloud architecture diagram — VPC/networking, GKE, Cloud Run, landing zone, multi-region, or any diagram built with GCP service icons. Builds with the declarative layout engine using ground-truth GCP stencils, validates (stencils/colors/nesting/geometry), runs a render-based…

ihatesea69/kiro-kit · 95 tokens

ui-styling

Create beautiful, accessible user interfaces with shadcn/ui components (built on Radix UI + Tailwind), Tailwind CSS utility-first styling, and canvas-based visual designs. Use when building user interfaces, implementing design systems, creating responsive layouts, adding accessible components (dialogs, dropdowns…

ihatesea69/kiro-kit · 90 tokens

design-review

Stress-test a plan or design against domain language, docs, and code. Ask hard questions one at a time. Update CONTEXT.md and ADRs as decisions crystallize. Use when you already have a draft plan or spec and want to find gaps before implementation.

netanelavr/dotcursor · 56 tokens