A starter kit for agentic product design. Built for product designers who use Claude Code to go from idea to deployed prototype.
- Next.js + TypeScript — App Router, server components by default
- Tailwind CSS v4 + shadcn/ui — Complete design system with light/dark mode
- Geist Font — Clean, modern typography from Vercel
- Claude Code Skills — Built-in commands for your design workflow
- Figma MCP Support — Bidirectional design-to-code workflow
# Clone the template
git clone https://github.com/bobbydotdesign/evergreen.git my-project
cd my-project
# Install dependencies
npm install
# Start the dev server
npm run dev
# Open Claude Code and start building
claudeThese skills are available in Claude Code when working in this project:
| Skill | What it does |
|---|---|
/prd |
Generate a product requirements document from an idea |
/research |
Competitive analysis and market research |
/design |
Create and refine UI components and pages |
/wireframe |
Rapid low-fi interactive prototypes |
/ship |
Deploy to Vercel and set up feedback collection |
- Define — Run
/prdto create a product requirements doc - Research — Run
/researchto validate your assumptions - Prototype — Run
/wireframeto quickly build interactive screens - Refine — Run
/designto polish components and layouts - Ship — Run
/shipto deploy to Vercel and collect feedback
If you have Figma MCP configured, you can:
- Pull designs from Figma and translate them to code
- Push component mappings back to Figma
- Use Figma as your source of truth while Claude Code builds the implementation
The project includes a full design system via shadcn/ui:
- Colors — Semantic tokens (primary, secondary, muted, accent, destructive) with light/dark mode
- Typography — Geist Sans for UI, Geist Mono for code
- Components — Button, Card, Input, Textarea, Badge, Tabs, Dialog, Sheet, Separator, Skeleton
- Spacing & Radius — Consistent scale via CSS variables
Add more shadcn components anytime:
npx shadcn@latest add [component-name]src/
app/ <- Pages and layouts
components/
ui/ <- shadcn/ui components
wireframe/ <- Wireframe components (from /wireframe)
lib/
utils.ts <- Utilities (cn helper)
docs/
prd.md <- PRD (from /prd)
research.md <- Research (from /research)
.claude/
skills/ <- Claude Code skills
Contributions welcome! This is an open-source tool for the design community. Feel free to:
- Add new skills
- Improve existing ones
- Suggest workflow improvements
- Share how you use it
MIT