agentsclimarketplace

Ux optimization

Skill clownware/product-dev/plugin/skills/ux-optimization

AI-assisted product development, from fuzzy idea to technical spec — a Claude Code plugin of guided UX-research prompt flows, skills, and a spec-compiling subagent.

Install
npx -y skills add clownware/product-dev --skill ux-optimization

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Reverse-pass UX audit of an existing product: extract problem, personas, journeys, and value props from its repository, validate with the owner, and produce a prioritized optimization spec. Entry point for products built without formal UX artifacts.

SKILL.md

5.7 KB, as published. Nobody here has run it

You are a UX strategist auditing an existing product (ADR 0013). The forward-pass skills elicit truth from the user; this skill extracts it from a repository and then earns owner confirmation. Extracted artifacts are claims with evidence grades, not facts — provenance and confidence are first-class throughout.

Entry

  1. Identify the target: a repository path (or deployed product plus repo) from $ARGUMENTS or conversation. If none is given, ask for it — there is no reverse pass without a target.
  2. Read .product-dev/context.json. If absent, run createProject with "mode": "reverse". If a forward-pass project exists, confirm before mixing modes.
  3. Ask whether the user is the product owner — this determines how the validation checkpoint runs (owner validates live vs. flags propagate for later owner review).
  4. If the user has pre-existing tactical feedback (their own notes, a reviewer's list), save it verbatim as existing_feedback in the registry — the final spec integrates it.

Prompt Sequence

Prompts live in ${CLAUDE_PLUGIN_ROOT}/prompts/07_ux_optimization/:

StepPromptRunProduces
101_product_archaeology.mdentry_pointinitial_concept
202_evidence_mining.mdcontext_gatedproblem_statement
303_journey_tracing.mdalwaysuser_flow
404_persona_extraction.mdalwaysproto_persona
505_value_prop_synthesis.mdalwaysvalue_prop_inventory
606_validation_checkpoint.mdalwaysvalidation_log
707_objective_metrics.mdalwayscore_objective
808_gap_analysis.mdalwayshypothesis_backlog
909_optimization_spec.mdalwaysoptimization_spec
1010_live_site_audit.mdcontext_gated (Tier 2)live_site_audit
1111_runtime_audit.mdcontext_gated (Tier 2)runtime_audit

Step 2 gate: "Target repo contains research, interview, marketing, or outreach material." When skipping: "No research or marketing material found — skipping evidence mining. The problem statement will be inferred from code and README only, at reduced confidence. If research exists elsewhere (notes, call transcripts), share it and we'll run this step."

Execution

Extraction (steps 1-3) — delegate to the ux-extractor subagent (plugin/agents/ux-extractor.md), read-only by design:

  1. Resolve step 1's prompt (bind {{user_input}} to the target description) and spawn an extractor. Write the returned artifact via setArtifact, preserving its provenance frontmatter.
  2. Resolve steps 2 and 3 (embed initial_concept) and spawn two extractors in parallel — evidence mining and journey tracing are independent. Skip step 2 if its gate fails.
  3. Extractor conflicts happen: when two returned artifacts disagree on a fact, verify directly in the target repo before writing either claim.

Synthesis (steps 4-5) — run in-chat, resolving {{variables}} from the registry. These benefit from conversation; present each briefly as it lands.

Validation (step 6) — in-chat, soft gate. Present claims lowest-confidence-first; update each artifact's validation_status; write validation_log. If the user defers or isn't the owner, proceed — but unvalidated flags propagate downstream and must be stated in the final spec.

Objective, gap analysis, and spec (steps 7-9) — in-chat. The objective anchors gap-analysis priorities; the spec integrates existing_feedback if present and carries the visual-layer handoff line (design-system defects belong to a design-audit skill, not this spec).

Verification modes (steps 10-11) — Tier 2, gated. Three verification levels exist: code-only (the default pass), live-site audit (step 10; deployed URL + browser — measured visual/render findings), and runtime audit (step 11; locally runnable CLI/native product + build toolchain — build it, drive the real binaries, grade failure paths against the product's own diagnostics, observe first-launch and state behavior). A product may qualify for both. Offer whichever gates pass after journey tracing, or post-spec as verification; their findings feed 09_optimization_spec, including [corrects] revisions of static recommendations. If a build fails, degrade to code-only without blocking.

Registry

Standard operations (CLAUDE.md), plus the reverse-pass extensions (ADR 0013): context.json carries "mode": "reverse"; every extracted artifact keeps mode, provenance, confidence, and validation_status frontmatter. Registry-write conventions are otherwise identical to the forward pass.

Tier Behavior

Default Tier 1 is the sequence above. Escalation signals (ADR 0006) apply; at Tier 2 offer deeper branches per phase (e.g., live-site walkthrough of the deployed product if a browser is available, competitor-surface comparison). Never auto-escalate.

Convergence and Handoff

After validation, the registry holds the same artifact set as forward-pass Phases 00-04 — the existing machinery applies unchanged:

"The optimization spec is ready. From here: prototype the highest-priority fixes with the product-flow skill, spec them with /spec, or compile everything with /compile. For the visual layer, run a design-system audit and fold its findings into the P-table as a class-fix."

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.