From 0f11714873bbe8e97c06125abf76fdbb041db31c Mon Sep 17 00:00:00 2001 From: chahinebrini Date: Wed, 8 Jul 2026 06:03:37 +0200 Subject: [PATCH] =?UTF-8?q?feat(team):=20architect=20is=20the=20hub=20?= =?UTF-8?q?=E2=80=94=20flow=20ends=20with=20a=20final=20report=20to=20the?= =?UTF-8?q?=20CEO?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reflects the org move (CI/CD + Strategist now report to the architect, not the CEO): architect coordinates them directly, and the demo flow adds a closing 'architect → CEO final report' step. The CEO is only touched at the very end. Co-Authored-By: Claude Opus 4.8 --- src/server/team.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/server/team.ts b/src/server/team.ts index 2fbb6e9..f86f56e 100644 --- a/src/server/team.ts +++ b/src/server/team.ts @@ -498,7 +498,8 @@ export function renderTeamHtml(cwd: string): string { { from: 'cicd', to: 'ahmed', cap: 'CI/CD gibt an ahmed zum Testen' }, { from: 'ahmed', to: 'cicd', cap: 'ahmed meldet das Testergebnis zurück an CI/CD', rev: true }, { from: 'cicd', to: 'claude', cap: 'CI/CD zurück an Architekt → Approve & Push', rev: true }, - { from: 'claude', to: 'strategist', cap: 'Manche Tasks: Architekt zieht den Strategist hinzu' } + { from: 'claude', to: 'strategist', cap: 'Manche Tasks: Architekt zieht den Strategist direkt hinzu (kein CEO)' }, + { from: 'claude', to: 'ceo', cap: 'Erst am Ende: Architekt gibt dem CEO den finalen Report', rev: true } ]; function showCaption(text, review) { var el = document.getElementById('flowCaption');