build

Solid

Build feature/page/integration end-to-end with GO/NO-GO gate. For components use `/component`, hooks `/hook`. Triggers "build a feature/page", "implement feature", "add feature", "build integration".

Web & Frontend 42 stars 3 forks Updated today MIT

Install

View on GitHub

Quality Score: 86/100

Stars 20%
54
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Feature Build Workflow Before starting work, create a marker: `mkdir -p ~/.claude/tmp && echo "build" > ~/.claude/tmp/heavy-skill-active && date -u +"%Y-%m-%dT%H:%M:%SZ" >> ~/.claude/tmp/heavy-skill-active` ## Phase 1: Research (GO/NO-GO Gate) Before any implementation, complete this research phase: 1. **Detect stack** — read `package.json`. `next` dep → satus / Next.js; `react-router` dep → novus / React Router. Note any starter signal (`name` field, `darkroom.starter` marker). 2. **Understand requirements** — parse what the user actually needs. 3. **Explore codebase** — find existing patterns, similar implementations. 4. **Fetch docs** — use Context7 MCP for any external library. Never code from memory. 5. **Check versions** — run `bun info <package>` for the latest version. 6. **Assess feasibility** — can this be done cleanly within existing architecture? **GO/NO-GO Verdict**: After research, state one of: - **GO** — requirements are clear, approach is viable, proceed to implementation. - **NO-GO** — requirements are ambiguous, approach has blockers, or scope is too large. Report findings and stop. Do not proceed past this gate without an explicit GO verdict. ## Phase 2: Plan Create a brief implementation plan, opening with a `## Functional DAG` (recipe-table brace diagram — inputs left, operations merging rightward, one terminal verification node; spec: `docs/functional-dag.md`), then: - Files to create/modify (with stack-correct paths — `lib/hooks/` for satus, ...

Details

Author
darkroomengineering
Repository
darkroomengineering/cc-settings
Created
7 months ago
Last Updated
today
Language
TypeScript
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category

Web & Frontend Listed

build

Use this skill whenever Naveen starts a new build, project, or feature request. Triggers when Naveen types /build, says "build me", "create", "make", "I want to build", or describes something they want to ship. This skill prevents the class of problems where Claude jumps straight to implementation without understanding the problem, choosing the right approach, or planning phases. Always apply this skill before writing any code. Research and planning first — implementation last.

0 Updated 1 months ago
ElephantHunters
AI & Automation Listed

build-feature

Walk the feature-build protocol when adding/creating/building/implementing a new feature — classify type, run near-match scan, FCPSS, tier-correct review.

2 Updated 3 weeks ago
MaximSTH
Code & Development Listed

build-feature

Execute a feature plan phase by phase, as a disciplined coding agent: branch fresh from main (always — pull latest, never branch off a stale branch), read the plan fully line by line, re-ground every phase in the current code before writing, then build with clean-code discipline — SOLID, DRY, reuse-first (more code = more maintenance surface), async/concurrent by default with a synchronization ledger for every spot that must be sequential, a hack ledger so nothing sneaky ships unflagged, and sound database design (constraints, indexes, transactions, migration discipline). Type-check + tests gate every phase; commits are granular (one per logical change); every finished plan ends with the branch pushed and an MR/PR raised whose description always has four sections — Problem / Solution / Technical details / Review notes. Two hard stops only: an architectural concern (ask the user, with a recommendation) and a red build. Everything else runs continuously through all phases, MR/PR included. Use when: implementing

0 Updated 3 weeks ago
ohyesgocool