一键导入
architecture
Structure de projet Screaming Architecture (découpage par feature métier) — à affecter aux phases qui créent l'arborescence ou de nouveaux modules
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Structure de projet Screaming Architecture (découpage par feature métier) — à affecter aux phases qui créent l'arborescence ou de nouveaux modules
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | architecture |
| description | Structure de projet Screaming Architecture (découpage par feature métier) — à affecter aux phases qui créent l'arborescence ou de nouveaux modules |
L'architecture doit révéler l'intention métier au premier coup d'œil. On regroupe par Feature et non par rôle technique (components/hooks/utils).
src/
├── core/ # Config globale (Axios, Contexts)
├── shared/ # Composants UI atomiques, Hooks & Utils transverses
└── features/ # Dossiers par Domaine Métier (Screaming)
└── billing-management/ # Nom explicite de la Feature
├── api/ # Appels services spécifiques à la feature
├── components/ # Composants internes (ex: InvoiceTable.tsx)
├── hooks/ # Logique d'état liée au domaine
├── types/ # Interfaces (ex: billingTypes.ts)
├── utils/ # Helpers métier purs
└── __tests__/ # Tests unitaires et d'intégration
├── InvoiceTable.test.tsx
└── useBilling.test.ts
Architect Agent guidelines (CODE ONLY MODE) — converts the business specification (spec.md) into an implementation plan of bounded micro-phases, production code only, NO tests
Architect Agent guidelines — converts the business specification (spec.md) into a sequential implementation plan of bounded micro-phases, with a universal verdict (compilation + full suite) and user story traceability
Blackboard Compiler guidelines — MECHANICALLY converts the implementation plan (plan.md) into a strict blackboard.yaml for the orchestrator
PO Agent guidelines — turns a raw need (need.md) into a refined business specification (spec.md) with user stories, testable acceptance criteria and an explicit scope
Screaming Architecture project structure (grouped by business feature) — assign to phases creating the tree structure or new modules
Java/Spring Boot production code rules (records, constructor injection, layer separation) — assign to backend feature phases