# Build

> Feature implementation workflow. Use when the user wants to: - "build a", "create a", "implement", "add feature" - build a new page, component, feature, integration - create something from scratch - add new functionality to the app

- Skill: `majiayu000/build-8` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/build-8`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/build-8/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Web & Frontend
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/build-8

---


# Feature Build Workflow

Follow standard Maestro workflow: plan -> explore -> scaffold -> implement -> test -> review.

## Pre-Implementation Checklist (MANDATORY)

Before implementing with ANY external library:
1. **Fetch docs** - Run `/docs <library>` to get current API via context7. Never code from memory.
2. **Check versions** - Run `bun info <package>` for latest version
3. **Follow patterns** - Check existing code for similar implementations

## Output

Return a concise summary:
- **What was built**: Feature description
- **Files created**: List of new files
- **Files modified**: List of changed files
- **How to use**: Quick usage guide
- **Tests added**: What's covered

## Remember

- Always use Satus conventions (Image/Link wrappers, CSS modules as 's')
- Server Components by default, Client only when needed
- Store useful patterns as learnings

