developpeur

Coordinate Developer phase slices with a prime_planner and three builders.

Updated Mar 25, 2026
One-click install
npx skills add https://github.com/leadmind-ai/leadmind-ai-website --skill developpeur
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: developpeur
Source: https://github.com/leadmind-ai/leadmind-ai-website/tree/main/.claude/skills/developpeur/orchestrateur
Command: npx skills add https://github.com/leadmind-ai/leadmind-ai-website --skill developpeur

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Ce skill orchestre la phase Développeur par slices fonctionnels itératifs. Chaque invocation traite UN slice (ex: Auth, Dashboard, Remboursements) avec un prime_planner qui compresse le contexte codebase en plan actionnable, puis 3 builders (database, backend, frontend) exécutent en parallèle ou séquentiel selon la maturité de l'architecture. Le registry.md sur disque assure la continuité entre slices.

Core Features & Use Cases

  • Orchestrate the Developer phase for one functional slice at a time with a prime_planner that condenses the codebase context into an actionable plan and three builders to execute the plan.
  • Execute in parallel or sequential mode depending on architecture maturity, maintaining a disk-backed registry for continuity across slices.
  • Use cases include starting a slice via /developpeur or requesting a builder with Agent Teams.

Quick Start

Démarrez le pipeline Développeur pour le slice souhaité et suivez les instructions affichées par l'outil.

Frequently Asked Questions about developpeur

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I orchestrate feature development across database, backend, and frontend builders?

Feature development orchestration uses a prime planner to compress codebase context into actionable plans that three parallel builders execute. It coordinates functional slices iteratively from planning to build execution.

What is a functional slice in a developer workflow pipeline?

A functional slice is a single iteration unit, like Auth or Dashboard, processed by a prime planner and three builders. The pipeline handles one slice at a time to ensure focused development and continuity.

How do I maintain state continuity across iterative feature slice builds?

State continuity across iterative feature slice builds is maintained via a disk-backed slice registry. This registry stores progress on disk, ensuring context persists between separate slice invocations.

Can I run database, backend, and frontend builders in parallel during feature orchestration?

Builders can run in parallel or sequential mode depending on architecture maturity. The orchestration adapts execution order based on how mature the underlying software architecture is.

Does contract-first planning work with iterative functional slice development?

Contract-first planning is enforced during iterative functional slice development. The prime planner establishes contracts before the database, backend, and frontend builders execute their respective tasks.

When should I use sequential instead of parallel execution for feature builders?

Sequential execution should be used when architecture maturity is low or dependencies require strict ordering. Parallel execution is suited for mature architectures with independent builder tasks.