Competitor UI Teardown — Design skill for Claude Code
Reverse-engineer how a competitor's screen is actually built — measure it, don't guess.
How to install Competitor UI Teardown
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open DEOWL-kan/competitor-ui-teardown and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
What Competitor UI Teardown does
Reverse-engineer how a competitor's screen is actually built — measure it, don't guess. A Claude Code skill.
Alternatives in Design
- Claude Design Engineer — Design engineering for Claude Code 4.1k ★
- Extract Skill — Reverse-engineer design systems, tokens, and components from live products or screenshots 2.8k ★
- Mockup — Create a visual UX mockup for a requested feature or screen 1.6k ★
README
competitor-ui-teardown
**Reverse-engineer how a competitor's screen is actually built, and get specs you can hand to a designer.**
A [Claude Code](https://claude.com/claude-code) skill (also usable standalone — the scripts are plain Python).
[中文说明](#中文) · MIT
The problem
You see a screen in a competitor's app that looks expensive, and you want to know why.
Looking at it gets you "it uses a big photo and soft light" — which nobody can build from. Worse, **it's usually wrong**. A 2.7-second eased crossfade reads to the human eye as "changes every 2.5 seconds with a 0.6-second fade". That is a 4× error, and it went straight into a design document before anyone measured it.
This skill measures instead of guessing:
| Question | How it's answered |
|---|---|
| Is that background a video, a Lottie file, or five JPEGs? | Read the app package's asset inventory |
| How long is that transition, and what's its easing curve? | Per-frame difference over a screen recording |
| Does that gradient have grain, or can I just draw it in code? | Neighbour-pixel delta statistics |
| Where is the light actually centred? | Chroma peak on a downsampled grid |
| Will my text still pass contrast on it? | WCAG contrast against the measured extremes |
Anything that can't be measured gets labelled as inference. That distinction is the point.
What's in here
SKILL.md The workflow
references/pitfalls.md Eight ways this goes wrong, all of them observed in practice
references/android.md Device + package commands
scripts/apk_assets.py Asset inventory, grouped by screen
scripts/frame_diff.py Motion rhythm from a screen recording
scripts/image_probe.py Grain / gradient structure / colour / contrast
Requirements: Python 3.8+ (standard library only), `ffmpeg` and `ffprobe` on PATH, plus `adb` if you're working with Android devices.
Use it as a Claude Code skill
git clone https://github.com/DEOWL-kan/competitor-ui-teardown.gi
Related Skills
Taste Skill
Claude Code skill — reverse-engineer any website's design taste: concrete tokens + opinionated trade-offs (WHY
Native Engine Parity Decoding.Skill
Reverse-engineer an Android NDK-shipped C++ calculation engine (libcalcfacade.so style) to bring a TypeScript
Web Teardown Skill
读 CSSOM 量出一个网站的设计系统 —— 不截图、不用视觉模型的 design token 提取 skill · OKLCH 色板 · token 溯源 · 系统漂移检测
Sampled
Don't bite someone else's style. A Claude Skill that checks whether the idea you're about to publish already b
Extract Layout Constraints
CRITICAL REQUIREMENT: You MUST analyze the actual PDF document provided. DO NOT hallucinate, guess, or use pri
Extract Reference Design
CRITICAL REQUIREMENT: You MUST analyze the actual PDF document provided. DO NOT hallucinate, guess, or use pri
Related Agents
Measure Response Time For Varying Prefix Match Lengths
import time from statistics import mean def time_compare(guess, iterations=1000): times = [] for _ in range(it
Implementation Orchestrator
Use when the root orchestrator needs ONE phase of an arbitrado plan actually built — sequences test-writer (RE
Part 13: Memory Bridge (Give Coding Agents Your Brain)
When you spawn Codex or Claude Code to build something, they start blind. They don't know your architecture de