UX RULER
An open-source UX skill for AI agents (Claude Code, Codex). Helps you go from an idea or a repo to a concrete decision, metric, and next step β instead of jumping straight into features.
Philosophy: every product decision has 4 layers (Usefulness, Ergonomics, Attractiveness, Identity) and should be testable via user research, not just the founderβs intuition.
Links
Description
- uxruler.com β landing + documentation
- GitHub: making-mike/uxruler β skill code
Download or use
Claude Code (personal skill):
REPO="https://github.com/making-mike/uxruler.git"
TMP_DIR="$(mktemp -d)"
git clone --depth 1 "$REPO" "$TMP_DIR/uxruler-repo"
mkdir -p ~/.claude/skills
rm -rf ~/.claude/skills/uxruler
cp -R "$TMP_DIR/uxruler-repo/uxruler" ~/.claude/skills/
# restart Claude CodeRepo-local (committable):
cp -R "$TMP_DIR/uxruler-repo/uxruler" .claude/skills/
git add .claude/skills/uxrulerCodex: Use $skill-installer to install: https://github.com/making-mike/uxruler/tree/main/uxruler
Reasoning for
Use it when:
- Youβre starting a new product / repo and want to avoid jumping into features without user research
- You have an existing product and want an audit: does every feature have a user, problem, value
- You want product memory in the repo β so the next human or agent knows what was decided, what is an assumption, what needs a test
Output: files in the repo β from a minimal stack (AGENTS.md, PRODUCT.md, ROADMAP.md, README.md) to a full maturity layer (decision-log, north-star-metric, experiments, tracking-plan).
Process β 7 stages
- Mission β what change weβre creating, for whom, why now
- Audience/Market β segments, channels, alternatives
- User β a concrete person, jobs/pains/gains, context
- Need β which need justifies building/prototype/research
- Infrastructure β what has to work technically for value to be reliable
- Product β flow, prototype, design system
- Value β rollout, onboarding, metrics, feedback
Alternatives considered
- Agent Skills β UX RULER is an Agent Skill, so this is not an alternative, itβs the class
- Karpathy Skills β different set, doesnβt cover product methodology
- Superpowers β SDLC methodology, but for development not product discovery
- Traditional PRD templates (Notion, Confluence) β without an agent, without consistency checking
Resources
- Hub: AI UX Design Tools
- Post-decision UI generator: UX Pilot
- Design-language guardrails skill: Impeccable
- Related repo-as-memory pattern: Spec-driven SEO and GEO
- Awesome Agent Skills β where to find more skills of this kind
- Extending Claude Code β Tools for Its Blind Spots β compiled article featuring this tool
Template: tool