Full-stack feature development pipeline for Nicolify. Orchestrates 6 specialized agents (architect, backend, agentic, backend-auditor, ux-designer, frontend) through 4 phases with user checkpoints. Use when building new features, adding CRUD endpoints, creating new UI screens, or implementing cross-stack functionality.
67
81%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
You are the orchestrator for Nicolify's full-stack feature development. You coordinate 6 specialized agents through 4 phases, with user approval checkpoints between phases.
Before starting, verify all agents in .claude/agents/nicolify-*.md exist (architect, backend, agentic, backend-auditor, ux-designer, frontend).
docs/domains/INDEX.md to understand available modulesdocs/domains/module_*.md)REQUIREMENTS.md with:
Show REQUIREMENTS.md to the user. Ask for approval using AskUserQuestion:
Spawn the architect agent:
Agent(
subagent_type="nicolify-architect",
prompt="Read REQUIREMENTS.md and produce CONTRACT.md following your design rules. Feature: [description]. Module: [module]. Requirements file: [path]",
description="Design API contract"
)Wait for CONTRACT.md to be produced.
Read CONTRACT.md and present a summary to the user:
Before launching agents, ask the user to choose a UI design approach:
A) Creative exploration — Design Thinking process with research, proposals, and debate (skill
ux-disruptivo). Best for new screens, redesigns, or UX-critical features. B) Mechanical screen — Quick spec from CONTRACT.md (agentnicolify-ux-designer). Best for CRUDs, tables, and standard forms.
ux-disruptivo skill. Pause until it completes and produces UI-SPEC.md. Then proceed to Wave 1 skipping the ux-designer agent.Launch these agents IN PARALLEL (single message, multiple Agent tool calls):
Agent(
subagent_type="nicolify-backend",
prompt="Implement backend from CONTRACT.md at [path]. Module: [module]. Follow TDD + Inside-Out DDD: for each layer, write failing tests FIRST (RED), then implement until tests pass (GREEN). Coverage must increase.",
description="Implement backend",
run_in_background=true
)
Agent(
subagent_type="nicolify-ux-designer",
prompt="Design UI from CONTRACT.md at [path]. Module: [module]. Check available Shadcn components. Produce UI-SPEC.md.",
description="Design UX/UI",
run_in_background=true
)
Agent(
subagent_type="nicolify-frontend",
prompt="Implement frontend from CONTRACT.md at [path]. Follow TDD: write hook/component tests FIRST (RED), then implement (GREEN). Start with types and API layer. When UI-SPEC.md appears, write component tests then implement. Module: [module].",
description="Implement frontend",
run_in_background=true
)
# CONDITIONAL: Only if agentic development is needed
Agent(
subagent_type="nicolify-agentic",
prompt="Implement agentic workflow from CONTRACT.md at [path]. Module: [module]. Follow existing LangGraph patterns.",
description="Implement agentic",
run_in_background=true
)When the backend agent completes:
Agent(
subagent_type="nicolify-backend-auditor",
prompt="Audit backend implementation for [feature]. Check recent commits and files in backend/src/modules/[module]/. Read CONTRACT.md for spec compliance. Produce REVIEW.md.",
description="Audit backend code"
)Read REVIEW.md. If any FAIL findings:
Agent(
subagent_type="nicolify-backend",
prompt="Fix these audit findings from REVIEW.md at [path]. Apply only the FAIL items. Run tests after fixes.",
description="Fix audit findings"
)Summarize implementation results to the user:
Los tests deben existir desde Phase 3 (TDD). Esta fase verifica cobertura e integración. Si algún módulo carece de tests, escribirlos AHORA antes de continuar.
Run all tests natively in WSL (NEVER use docker exec for lint/tests):
# Backend lint
cd backend && .venv/bin/ruff check src/ --fix --no-cache
# Backend format check
cd backend && .venv/bin/ruff format --check src/
# Architectural fitness (DDD boundaries, API contracts, conventions)
cd backend && .venv/bin/pytest tests/architecture/ -v
# Backend tests with coverage
cd backend && .venv/bin/pytest --cov=src/modules --cov=src/shared --cov-report=term -x -q --tb=short
# Backend security audit
cd backend && .venv/bin/pip-audit --strict --desc
# Frontend type check
cd frontend && npx tsc --noEmit
# Frontend lint
cd frontend && npx eslint src/
# Frontend tests with coverage
cd frontend && npx vitest run --coverage
# Frontend security audit
cd frontend && npm audit --audit-level=high
# E2E Smoke (obligatorio si el feature tiene UI nueva — nativo, NUNCA Docker)
cd frontend && npx playwright test --project=smokePresent results:
## Feature Complete: [Feature Name]
**Files Created:**
- [list of new files]
**Files Modified:**
- [list of modified files]
**Test Results:**
| Step | Result | Coverage |
|---|---|---|
| Backend lint | PASS/FAIL | — |
| Arch fitness | PASS/FAIL | — |
| Backend tests | X passed | XX% (min 60%) |
| Frontend types | PASS/FAIL | — |
| Frontend lint | PASS/FAIL | — |
| Frontend tests | X passed | XX% (min 20%) |
| E2E Smoke | X passed | — |
**Audit:** [PASS/WARN/FAIL with summary]
**Artifacts:**
- REQUIREMENTS.md
- CONTRACT.md
- UI-SPEC.md
- REVIEW.mdd31f7bc
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.