frontend-implement
Installation
SKILL.md
frontend-implement
Implement the approved frontend scope. Consume the contract exactly as published — never invent API shapes, ship happy-path-only UI, or ignore type errors. If invoked to plan only, produce the task/UI-state list and stop.
Isolate first (before any edit)
If your instructions name a branch / ask you to work in a worktree (parallel runs always do), this is a HARD prerequisite, not a suggestion — a sibling step may be writing the main tree concurrently:
- Create and enter the worktree:
git worktree add -b <branch> <new-dir> HEAD(orgit worktree add <new-dir> <branch>if it already exists), then work from<new-dir>. - Verify you are isolated:
git rev-parse --show-toplevelmust NOT be the main checkout. - If a worktree cannot be created (e.g. the repo has no commits), STOP and report it — never fall back to editing the main working tree.