Reseed CLI: Extract Design Systems from Any Site for Claude Code and Cursor

Reseed is a CLI tool that extracts a real design system from any live website — your own, a reference, or a competitor — and drops it directly into your repo. The output includes a tailwind.config.ts with actual colors, spacing, type scale, and radii; a design-system.md that agents can read every session; and a self-contained reference HTML so the model has visual ground truth.
How It Works
The pipeline runs entirely with Claude Code and plain TypeScript. Opus 4.7 performs the vision analysis on source screenshots. The rest is TypeScript to keep costs bounded and output reproducible across runs. Run it once, commit, and every future Claude Code or Cursor session in that repo respects the design system.
Key Workflow Insight
The creator found that Claude kept defaulting to generic "AI tells" — purple gradients, glassmorphism, drop-shadow stacks, oversized rounded cards. The fix wasn't more prompting; it was giving the agent an explicit list of patterns the source design avoids. That single change made the generated UI stop looking AI-generated.
Availability
The tool is free to try with 3 extractions on the free tier, no credit card needed. Available at https://reseedapp.com.
📖 Read the full source: r/ClaudeAI
👀 See Also

Freddy MCP Server Connects Wearables to AI Agents with Headless Sign-In
Freddy is a personal MCP server that links wearables (Polar, Oura, Withings, Suunto, Intervals.icu, Hevy, plus WHOOP, Strava, Dexcom in beta) to AI clients like Claude Code, ChatGPT, and Notion AI via OAuth. New headless sign-in enables scheduled workflows for autonomous agents.

Wrangle: A Native macOS Editor for Managing Claude Code Sessions
Wrangle is a native macOS markdown editor built specifically for managing multiple Claude Code sessions, featuring embedded terminals and smart notifications. The developer created it after VS Code couldn't keep up with their daily workflow of running many Claude Code sessions.

Community patch adds RTL language support to Claude Desktop on Windows
A developer has created a patch that adds proper right-to-left language support to Claude Desktop on Windows, fixing broken rendering for Hebrew, Arabic, and other RTL languages. The patch injects RTL detection logic into the Electron app's renderer and includes backup/restore functionality.

Running Two Claude Code Agents on the Same Repo with Git Worktrees
A Reddit user details how to run multiple Claude Code agents in parallel on the same codebase using git worktrees, avoiding file conflicts and enabling independent agent sessions.