From architect
Démarre un développement avec un starter léger puis active le mode plan
How this skill is triggered — by the user, by Claude, or both
Slash command
/architect:startsonnetThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
**IMPORTANT : Exécute ce workflow étape par étape :**
IMPORTANT : Exécute ce workflow étape par étape :
Démarrer un développement avec :
/architect:start <type> "<description>" [options]
Types disponibles :
feature → starter-feature.md + checklist-php.mdrefactor → starter-refactor.md + checklist-php.mdapi → starter-api.md + checklist-api.mdfix → starter-fix.md + checklist-php.mdOptions :
--entity=X : Nom de l'entité (feature)--context=X : Bounded context (feature)--target=X : Fichier(s) cible (refactor, fix)--service=X : Service externe (api)--checklist=X : Checklist additionnelle (security, etc.)Si des variables essentielles manquent, utiliser AskUserQuestion :
{
"questions": [
{
"question": "Quel type de développement ?",
"header": "Type",
"multiSelect": false,
"options": [
{"label": "feature", "description": "Nouvelle fonctionnalité métier"},
{"label": "refactor", "description": "Refactoring de code existant"},
{"label": "api", "description": "API ou intégration externe"},
{"label": "fix", "description": "Correction de bug"}
]
}
]
}
# Lire le starter approprié depuis le répertoire du plugin
cat architect/templates/starters/{type}.md
Substituer les variables {VARIABLE} par les valeurs collectées.
Afficher le starter substitué à l'utilisateur avec un résumé :
Starter : {TYPE}
[Contenu du starter]
Checklist associée : checklist-{checklist}.md
Activation du mode plan...
Utiliser EnterPlanMode pour basculer en mode plan.
Le mode plan va :
À la fin du mode plan (avant exécution), rappeler :
Avant d'exécuter, vérifier la checklist :
/architect:validate --checklist={checklist}
# Feature complète
/architect:start feature "Gestion des factures" --entity=Invoice --context=Billing
# Refactoring
/architect:start refactor "Simplifier la validation" --target=src/Validator/
# API/Webhook
/architect:start api "Intégration Stripe" --service=Stripe
# Bug fix
/architect:start fix "Erreur 500 sur login" --target=src/Security/
Le skill doit :
npx claudepluginhub atournayre/claude-personas --plugin architectOrchestrates 6-phase SDLC pipeline (discovery, requirements, architecture, workstreams, implementation, summary) for guided feature development. Supports plan persistence, wave-based resume, autonomous mode, verification, and Stitch UI integration.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.