diff --git a/apps/web/messages/en.json b/apps/web/messages/en.json index 0e65651a7..5badb005a 100644 --- a/apps/web/messages/en.json +++ b/apps/web/messages/en.json @@ -3974,6 +3974,35 @@ "ownerValidation": "The S4.9-S4.12 owner response received / accepted separation and reviewer check semantics.", "rolloutPolicy": "The low-friction, observe-first rollout policy with owner review before blocking." } + }, + "githubPrimaryReadinessCandidate": { + "title": "GitHub Primary Readiness Contract Read-only Candidate", + "subtitle": "The contract dashboard mirrors the Gitea-to-GitHub readiness contract refs, owner-response gaps, and non-execution boundaries. This is not repo creation, refs mutation, secret collection, or primary-switch authorization.", + "badge": "GitHub readiness", + "contractRefsTitle": "Primary readiness contract refs", + "boundaryLabel": "Source-control Boundary", + "boundaryTitle": "No GitHub primary is switchable here", + "boundaryDetail": "This panel only displays candidate repos, in-scope repos, primary-ready state, owner responses, and workflow / secret-name inventory gaps. It does not create GitHub repos, change visibility, sync / delete / force-push refs, collect secret values, switch primary, disable Gitea, or trigger runtime gates.", + "openIwooos": "Open IwoooS", + "metrics": { + "candidateRepos": "Candidate repos", + "candidateReposDetail": "S4.0 currently tracks 8 GitHub primary readiness candidates.", + "inScopeRepos": "In-scope", + "inScopeReposDetail": "7 still need owner / visibility / canonical / rollback evidence.", + "primaryReady": "Primary ready", + "primaryReadyDetail": "Still 0; visible readiness is not primary cutover approval.", + "ownerResponses": "Owner response", + "ownerResponsesDetail": "The 22 S4.9-S4.12 response templates remain 0 received / accepted.", + "workflowInventory": "Workflow inventory", + "workflowInventoryDetail": "Workflow / secret-name inventory remains incomplete for the 7 in-scope repos." + }, + "contractRefs": { + "primaryReadiness": "The main readiness gate for GitHub primary parity, owner, refs, workflow, and rollback prerequisites.", + "ownerValidation": "Received / accepted / rejected separation plus reviewer checks for the four owner-response packets.", + "rollbackAdr": "Rollback ADR drafts, owner review, and validation windows for the 7 in-scope repos.", + "workflowInventory": "Workflow, runner, deploy-key, branch-protection, CODEOWNERS, and secret-name inventory; names only, never values.", + "postureProjection": "The IwoooS frontend projection for the GitHub readiness board and forbidden actions." + } } }, "approvals": { diff --git a/apps/web/messages/zh-TW.json b/apps/web/messages/zh-TW.json index fe69e357c..c39813aa6 100644 --- a/apps/web/messages/zh-TW.json +++ b/apps/web/messages/zh-TW.json @@ -3975,6 +3975,35 @@ "ownerValidation": "S4.9-S4.12 owner response received / accepted 分離與 reviewer 檢查口徑。", "rolloutPolicy": "低摩擦、observe-first、owner review before blocking 的 rollout policy。" } + }, + "githubPrimaryReadinessCandidate": { + "title": "GitHub Primary Readiness 合約只讀候選", + "subtitle": "合約儀表板同步顯示 Gitea 轉 GitHub 的 readiness contract refs、owner response 缺口與不可執行邊界;這不是 repo creation、refs mutation、secret collection 或 primary switch 授權。", + "badge": "GitHub readiness", + "contractRefsTitle": "Primary readiness contract refs", + "boundaryLabel": "Source-control 邊界", + "boundaryTitle": "目前沒有可切換的 GitHub primary", + "boundaryDetail": "這個面板只顯示 candidate repos、in-scope repos、primary ready、owner response 與 workflow / secret 名稱清冊缺口;不建立 GitHub repo、不改 visibility、不 sync / delete / force push refs、不收 secret value、不切 primary、不停用 Gitea,也不觸發 runtime gate。", + "openIwooos": "開啟 IwoooS", + "metrics": { + "candidateRepos": "候選 repos", + "candidateReposDetail": "S4.0 目前追蹤 8 個 GitHub primary readiness 候選。", + "inScopeRepos": "In-scope", + "inScopeReposDetail": "7 個仍需 owner / visibility / canonical / rollback evidence。", + "primaryReady": "Primary ready", + "primaryReadyDetail": "仍為 0;readiness 可見不等於已可切 primary。", + "ownerResponses": "Owner response", + "ownerResponsesDetail": "S4.9-S4.12 共 22 個 response templates 仍為 0 received / accepted。", + "workflowInventory": "Workflow inventory", + "workflowInventoryDetail": "7 個 in-scope repos 的 workflow / secret 名稱清冊仍未 complete。" + }, + "contractRefs": { + "primaryReadiness": "GitHub primary parity、owner、refs、workflow 與 rollback 前置缺口的主 readiness gate。", + "ownerValidation": "四包 owner response 的 received / accepted / rejected 分離與 reviewer 檢查口徑。", + "rollbackAdr": "7 個 in-scope repos 的 rollback ADR 草案、owner review 與 validation window。", + "workflowInventory": "workflow、runner、deploy key、branch protection、CODEOWNERS 與 secret 名稱清冊;只收名稱不收 value。", + "postureProjection": "IwoooS 用來呈現 GitHub readiness board 與禁止動作的前端投影。" + } } }, "approvals": { diff --git a/apps/web/src/app/[locale]/awooop/contracts/page.tsx b/apps/web/src/app/[locale]/awooop/contracts/page.tsx index 206549e0e..570faf8ed 100644 --- a/apps/web/src/app/[locale]/awooop/contracts/page.tsx +++ b/apps/web/src/app/[locale]/awooop/contracts/page.tsx @@ -16,6 +16,7 @@ import { Filter, ChevronDown, ShieldCheck, + GitBranch, } from "lucide-react"; import { cn } from "@/lib/utils"; @@ -227,7 +228,7 @@ function SecurityContractCandidatePanel() {

{t("boundaryLabel")}

{t("boundaryTitle")}

{t("boundaryDetail")}

-
+
contract_publish_authorized=false contract_mutation_authorized=false runtime_execution_authorized=false @@ -246,6 +247,124 @@ function SecurityContractCandidatePanel() { ); } +function GitHubPrimaryReadinessContractCandidatePanel() { + const t = useTranslations("awooop.contracts.githubPrimaryReadinessCandidate"); + const metrics = [ + { + label: t("metrics.candidateRepos"), + value: "8", + detail: t("metrics.candidateReposDetail"), + }, + { + label: t("metrics.inScopeRepos"), + value: "7", + detail: t("metrics.inScopeReposDetail"), + }, + { + label: t("metrics.primaryReady"), + value: "0", + detail: t("metrics.primaryReadyDetail"), + }, + { + label: t("metrics.ownerResponses"), + value: "0/22", + detail: t("metrics.ownerResponsesDetail"), + }, + { + label: t("metrics.workflowInventory"), + value: "0/7", + detail: t("metrics.workflowInventoryDetail"), + }, + ]; + const contracts = [ + { + name: "source_control_primary_readiness_gate_v1", + detail: t("contractRefs.primaryReadiness"), + }, + { + name: "source_control_owner_response_validation_rollup_v1", + detail: t("contractRefs.ownerValidation"), + }, + { + name: "source_control_primary_rollback_adr_v1", + detail: t("contractRefs.rollbackAdr"), + }, + { + name: "source_control_workflow_secret_name_inventory_v1", + detail: t("contractRefs.workflowInventory"), + }, + { + name: "iwooos_posture_projection_v1", + detail: t("contractRefs.postureProjection"), + }, + ]; + + return ( +
+
+
+
+ + {t("badge")} + +
+ +
+ {metrics.map((item) => ( +
+

{item.label}

+

{item.value}

+

{item.detail}

+
+ ))} +
+ +
+
+
+ {t("contractRefsTitle")} +
+
+ {contracts.map((item) => ( +
+

{item.name}

+

{item.detail}

+
+ ))} +
+
+ +
+

{t("boundaryLabel")}

+

{t("boundaryTitle")}

+

{t("boundaryDetail")}

+
+ repo_creation_authorized=false + refs_mutation_authorized=false + secret_value_collection_allowed=false + github_primary_switch_authorized=false + gitea_disablement_authorized=false + runtime_execution_authorized=false + action_buttons_allowed=false +
+ + {t("openIwooos")} +
+
+
+ ); +} + // ============================================================================= // Main Component // ============================================================================= @@ -317,6 +436,7 @@ export default function ContractsPage() {
+ {/* Filters */}
diff --git a/apps/web/src/components/layout/app-layout.tsx b/apps/web/src/components/layout/app-layout.tsx index d97d4cdd5..93bd3fa9d 100644 --- a/apps/web/src/components/layout/app-layout.tsx +++ b/apps/web/src/components/layout/app-layout.tsx @@ -51,6 +51,7 @@ export function AppLayout({ }: AppLayoutProps) { const [collapsed, setCollapsed] = useState(false) const [mounted, setMounted] = useState(false) + const [compactViewport, setCompactViewport] = useState(false) // Phase 19 修復: 全局 SSE 連接 const { connect, disconnect } = useDashboardStore() @@ -58,10 +59,16 @@ export function AppLayout({ // Load collapsed state from localStorage useEffect(() => { setMounted(true) + const updateCompactViewport = () => { + setCompactViewport(window.matchMedia('(max-width: 767px)').matches) + } const saved = localStorage.getItem(SIDEBAR_STATE_KEY) if (saved === 'true') { setCollapsed(true) } + updateCompactViewport() + window.addEventListener('resize', updateCompactViewport) + return () => window.removeEventListener('resize', updateCompactViewport) }, []) // Phase 19 修復: 全局啟動 SSE 連接 (所有頁面共享) @@ -115,16 +122,19 @@ export function AppLayout({ )} {/* Sidebar */} - + {!compactViewport && ( + + )} {/* Header */}
{/* Main Content */} @@ -133,7 +143,7 @@ export function AppLayout({ 'relative z-10', 'pt-[68px]', 'transition-all duration-300 ease-out', - collapsed ? 'ml-16' : 'ml-[224px]' + compactViewport ? 'ml-0' : collapsed ? 'ml-16' : 'ml-[224px]' )} > {fullBleed ? ( diff --git a/apps/web/src/components/layout/header.tsx b/apps/web/src/components/layout/header.tsx index 01f71e685..4b1d00185 100644 --- a/apps/web/src/components/layout/header.tsx +++ b/apps/web/src/components/layout/header.tsx @@ -25,6 +25,7 @@ import { Z_INDEX } from '@/lib/constants/z-index' interface HeaderProps { locale: string sidebarCollapsed?: boolean + compact?: boolean className?: string } @@ -35,6 +36,7 @@ interface HeaderProps { export function Header({ locale, sidebarCollapsed = false, + compact = false, className, }: HeaderProps) { const t = useTranslations('locale') @@ -46,6 +48,8 @@ export function Header({ window.location.href = newPath }, [locale, pathname]) + const brandWidth = compact ? 64 : sidebarCollapsed ? 64 : 224 + return (
{/* Brand Area — 224px 固定寬,與 sidebar 對齊 */}
{/* Brand text: A + wooo + I (figma 混合字體) */} - {!sidebarCollapsed && ( + {!compact && !sidebarCollapsed && (
A @@ -125,20 +129,25 @@ export function Header({ {/* Header Right — page title + lang switcher + avatar */}
{/* Page title */} {tDashboard('title')} @@ -150,7 +159,7 @@ export function Header({ window.dispatchEvent(e) }} style={{ - display: 'flex', alignItems: 'center', gap: 6, + display: compact ? 'none' : 'flex', alignItems: 'center', gap: 6, padding: '5px 12px', background: '#fff', border: '0.5px solid #e0ddd4', borderRadius: 8, cursor: 'pointer', fontSize: 11, color: '#87867f', diff --git a/docs/LOGBOOK.md b/docs/LOGBOOK.md index 6421438e8..97853dda1 100644 --- a/docs/LOGBOOK.md +++ b/docs/LOGBOOK.md @@ -1,3 +1,18 @@ +## 2026-05-21 | 資安供應鏈 S2.65:AwoooP Contracts GitHub Primary Readiness Candidate + +**背景**:S2.63 已把 Gitea → GitHub 的長期 primary readiness 缺口放進 `/iwooos`,S2.64 已同步到 AwoooP 工作鏈路;本輪補到 AwoooP 合約儀表板,讓 source-control readiness 在 contracts 控制面也能被看到,但仍維持只讀候選。 + +**完成**: +- `/awooop/contracts` 新增「GitHub Primary Readiness 合約只讀候選」,顯示 `source_control_primary_readiness_gate_v1`、`source_control_owner_response_validation_rollup_v1`、`source_control_primary_rollback_adr_v1`、`source_control_workflow_secret_name_inventory_v1` 與 `iwooos_posture_projection_v1`。 +- 合約候選顯示 candidate repos=8、in-scope=7、primary_ready_count=0、owner response 0/22、workflow inventory complete=0/7,並連回 `/iwooos`。 +- 手機視覺驗證時修補 AppLayout compact shell:窄版隱藏固定側欄、主內容取消桌機左邊距、Header 精簡搜尋入口,避免 AwoooP / IwoooS 類控制面在 390px 產生 document-level 橫向溢位。 +- `security_mirror_status_rollup_v1` micro progress ledger 新增 `s2_65_awooop_contracts_github_primary_readiness_candidate`,並新增 `show_awooop_contracts_github_primary_readiness_candidate` next safe action。 +- `security-mirror-progress-guard.py` 開始驗證 AwoooP contracts 的 GitHub readiness 合約候選、source contract refs、i18n 鍵與 false 邊界。 + +**仍禁止**: +- S2.65 的 AwoooP contracts 合約候選不代表 owner response received / accepted、runtime authorization、active runtime gate、repo creation、visibility change、refs sync / delete / force push、workflow / secret modification、secret value collection、GitHub primary switch、Gitea disablement、Kali `/execute`、SSH 登入、主機更新或 blocking control。 +- 整體資安網 headline 仍是 58%;框架 / 治理 / 文件 / schema / read-only evidence 仍約 80-85%;真正落地執行 / runtime ingestion / GitHub primary / AwoooP production landing 仍約 35-40%。 + ## 2026-05-21 | 資安供應鏈 S2.64:AwoooP Work-Items GitHub Primary Readiness Candidate **背景**:S2.63 已把 Gitea → GitHub 的長期 primary readiness 缺口放進 `/iwooos`;本輪同步到 AwoooP 工作鏈路,讓另一個 AwoooP Session 與使用者能在工作項層看見 GitHub primary 仍處於只讀 readiness,而不是誤解成已可建立 repo 或切 primary。 diff --git a/docs/security/SECURITY-MIRROR-STATUS-ROLLUP.md b/docs/security/SECURITY-MIRROR-STATUS-ROLLUP.md index 02089ca79..36c298a0e 100644 --- a/docs/security/SECURITY-MIRROR-STATUS-ROLLUP.md +++ b/docs/security/SECURITY-MIRROR-STATUS-ROLLUP.md @@ -46,6 +46,7 @@ | IwoooS frontend surface connection board | S2.62 已在 `/iwooos` 顯示 10 個既有資安入口的連接狀態,區分 embedded bridge、direct bridge 與 AwoooP read-only candidate;frontend_surface_reverse_bridge_status_count=10;仍不新增授權、阻擋、scan、repair、approve、deploy、Code Review blocker 或 Gitea/GitHub action | | IwoooS GitHub primary readiness board | S2.63 已在 `/iwooos` 顯示 GitHub Primary Readiness 只讀狀態板;candidate repos=8、in-scope=7、primary_ready_count=0、owner response 0/22、workflow inventory complete=0/7、rollback ADR approved=0;仍不建立 repo、不改 visibility、不改 refs、不收 secret value、不切 primary | | AwoooP work-items GitHub primary readiness candidate | S2.64 已在 `/awooop/work-items` 顯示 GitHub Primary Readiness 只讀工作項;candidate repos=8、in-scope=7、primary_ready_count=0、owner response 0/22、workflow inventory complete=0/7;仍不建立 repo、不改 visibility、不改 refs、不收 secret value、不切 primary、不停用 Gitea | +| AwoooP contracts GitHub primary readiness candidate | S2.65 已在 `/awooop/contracts` 顯示 GitHub Primary Readiness 合約只讀候選;candidate repos=8、in-scope=7、primary_ready_count=0、owner response 0/22、workflow inventory complete=0/7;仍不建立 repo、不改 visibility、不改 refs、不收 secret value、不切 primary、不停用 Gitea | | Dry-run | `contract_defined_not_executed`;已納入 `CHECK_PROGRESS_GUARD` 與 `CHECK_OWNER_RESPONSE_GUARD`,latest local validation 為 `repo_snapshot_guard_pass`,仍不代表 production ingestion | | Runtime actions | `false` | | Payload ingestion | `false` | @@ -158,6 +159,7 @@ | S2.62 IwoooS frontend surface connection board | framework detail | 0 | 只在 `/iwooos` 顯示 10 個既有資安入口的 embedded bridge、direct bridge 與 AwoooP read-only candidate 連接狀態;runtime_execution_authorized=false、active_runtime_gate_count=0、action_buttons_allowed=false、not_authorization=true,不把連接狀態當 owner response、runtime gate、掃描、修復、批准、部署、Code Review blocker 或 Gitea/GitHub action | | S2.63 IwoooS GitHub primary readiness board | framework detail | 0 | 只在 `/iwooos` 顯示 GitHub Primary Readiness 缺口:candidate repos=8、in-scope=7、primary_ready_count=0、owner response 0/22、refs truth accepted=0、workflow inventory complete=0/7、rollback ADR approved=0;runtime_execution_authorized=false、active_runtime_gate_count=0、action_buttons_allowed=false、not_authorization=true,不建立 GitHub repo、不改 visibility、不 sync / delete / force push refs、不收 secret value、不切 primary、不停用 Gitea | | S2.64 AwoooP work-items GitHub primary readiness candidate | framework detail | 0 | 只在 `/awooop/work-items` 顯示 GitHub Primary Readiness 只讀工作項,連回 `/iwooos` 並呈現 candidate repos=8、in-scope=7、primary_ready_count=0、owner response 0/22、workflow inventory complete=0/7;runtime_execution_authorized=false、active_runtime_gate_count=0、action_buttons_allowed=false、not_authorization=true,不建立 GitHub repo、不改 visibility、不 sync / delete / force push refs、不收 secret value、不切 primary、不停用 Gitea | +| S2.65 AwoooP contracts GitHub primary readiness candidate | framework detail | 0 | 只在 `/awooop/contracts` 顯示 GitHub Primary Readiness 合約只讀候選,連回 `/iwooos` 並呈現 candidate repos=8、in-scope=7、primary_ready_count=0、owner response 0/22、workflow inventory complete=0/7;runtime_execution_authorized=false、active_runtime_gate_count=0、action_buttons_allowed=false、not_authorization=true,不建立 GitHub repo、不改 visibility、不 sync / delete / force push refs、不收 secret value、不切 primary、不停用 Gitea | headline 進度要再往上,至少需要下列任一高層 gate 有實質 evidence: diff --git a/docs/security/SECURITY-SUPPLY-CHAIN-PROGRESS.md b/docs/security/SECURITY-SUPPLY-CHAIN-PROGRESS.md index d1658940d..7c7112896 100644 --- a/docs/security/SECURITY-SUPPLY-CHAIN-PROGRESS.md +++ b/docs/security/SECURITY-SUPPLY-CHAIN-PROGRESS.md @@ -5,7 +5,7 @@ | 日期 | 2026-05-17 | | 狀態 | S0/S1 read-only evidence 建置中 | | 本階段完成 | 資安供應鏈 contract manifest + Source Control Approval Board + Draft Reconcile Plan + Ref Detail Diff + Ref Truth Classification + Source Control Ref Truth Owner Response 收件包 + GitHub Primary Readiness Gate + GitHub Primary Rollback ADR + GitHub Target Owner Decision Response 收件包 + Gitea 認證清冊匯出請求 + Gitea 認證清冊匯入驗收契約 + Gitea 清冊覆蓋 Owner Attestation + Gitea Owner Attestation Approval Lane 對齊 + Gitea Owner Attestation Response 收件包 + Workflow / Secret Name Inventory + Workflow / Secret Name Local Evidence + Workflow / Secret Name Redacted Export Request + Workflow / Secret Name Owner Response 收件包 + Source Control Owner Response Validation Rollup + Kali 112 live integration status + Security Finding contract + Kali scan scope approval package + Security Approval Queue + S3 人工批准 Gate + S3 人工決策紀錄 + S3 人工審查封包 + S3 人工決策狀態轉移 + S3 後續 runtime gate 準備契約 + 鏡像 readiness index + 鏡像接收計畫 + 鏡像事件信封 + 鏡像路由矩陣 + 鏡像驗收契約 + 鏡像隔離契約 + 鏡像 dry-run 報告契約 + 鏡像狀態彙整契約 + IwoooS 前端態勢入口 + IwoooS posture projection contract + IwoooS 既有前端資安頁面整合 + IwoooS 覆蓋與邊界矩陣 + IwoooS 只讀資安處理旅程 + IwoooS owner evidence readiness board + IwoooS host coverage view + IwoooS host action gate matrix + IwoooS host evidence readiness board + IwoooS host evidence collection order + IwoooS host evidence intake preflight + IwoooS host evidence review outcome lanes + IwoooS host evidence review handoff packets + IwoooS host evidence reviewer checklist + IwoooS host evidence reviewer outcome lanes + IwoooS host owner decision candidate packets + IwoooS host owner decision review checklist + IwoooS host owner decision review outcome lanes + IwoooS host owner decision record draft packets + IwoooS host owner decision record draft review checklist + IwoooS host owner decision record draft review outcome lanes + IwoooS host owner decision record write-up packets + IwoooS host owner decision record write-up review checklist + IwoooS host owner decision record write-up review outcome lanes + IwoooS host owner decision record formal candidate packets + IwoooS host owner decision record formal candidate review checklist + IwoooS host owner decision record formal candidate review outcome lanes + IwoooS host owner decision record formal record queue packets + IwoooS host owner decision record formal record queue review checklist + IwoooS host owner decision record formal record queue review outcome lanes + IwoooS host owner decision record human handoff readiness packets + IwoooS host owner decision record human handoff readiness review checklist + IwoooS host owner decision record human handoff readiness review outcome lanes + IwoooS host owner decision record human record owner review candidate packets + IwoooS host owner decision record human record owner review candidate checklist + IwoooS host owner decision record human record owner review candidate outcome lanes + IwoooS host owner decision record human record owner review preparation packets + IwoooS host owner decision record human record owner review preparation checklist + IwoooS progress acceleration lanes + IwoooS owner response next-action focus + IwoooS S4.9 owner response preflight + IwoooS S4.9 owner response request templates + IwoooS progress hold movement gates + IwoooS AwoooP read-only landing readiness + IwoooS AwoooP cross-session handoff packets + AwoooP 首頁 IwoooS 資安鏡像候選 + AwoooP 工作鏈路 IwoooS 資安鏡像候選 + AwoooP 審批佇列 IwoooS owner response 只讀焦點 | -| 本階段追加 | AwoooP 合約儀表板 IwoooS 資安契約只讀候選 + AwoooP 租戶管理 IwoooS 資安租戶範圍只讀候選 + AwoooP Run 監控 IwoooS Run State 只讀候選 + 既有安全 / 合規頁面 IwoooS 只讀反向橋接 + 告警 / 錯誤 / 授權 / 治理頁面 IwoooS 只讀反向橋接 + 稽核 / 工程審查頁面 IwoooS 深色只讀反向橋接 + IwoooS 前端資安頁面連接狀態板 + IwoooS GitHub Primary Readiness 只讀狀態板 + AwoooP 工作鏈路 GitHub Primary Readiness 只讀工作項 | +| 本階段追加 | AwoooP 合約儀表板 IwoooS 資安契約只讀候選 + AwoooP 租戶管理 IwoooS 資安租戶範圍只讀候選 + AwoooP Run 監控 IwoooS Run State 只讀候選 + 既有安全 / 合規頁面 IwoooS 只讀反向橋接 + 告警 / 錯誤 / 授權 / 治理頁面 IwoooS 只讀反向橋接 + 稽核 / 工程審查頁面 IwoooS 深色只讀反向橋接 + IwoooS 前端資安頁面連接狀態板 + IwoooS GitHub Primary Readiness 只讀狀態板 + AwoooP 工作鏈路 GitHub Primary Readiness 只讀工作項 + AwoooP 合約儀表板 GitHub Primary Readiness 合約只讀候選 | | 原則 | 低摩擦分階段;文件、schema、read-only evidence 優先;不做 runtime enforcement、不切 primary | ## 0. 本階段完成後整體進度 @@ -28,7 +28,7 @@ python3 scripts/security/security-mirror-progress-guard.py ### 0.2 Headline 58% 不代表停滯 -近期 S4.10 request packet、template status ledger、audit event templates、redaction examples、collection checks、intake preflight checks、S4.11 request packet / template status ledger / audit event templates / redaction examples / collection checks / intake preflight checks、S4.12 request packet / template status ledger / audit event templates / redaction examples / collection checks / intake preflight checks、S4.13 evidence routing rules / display sections / state transition rules / reviewer checklist / reviewer outcome lanes / reviewer audit event templates / reviewer audit display sections / reviewer audit collection checks / reviewer audit redaction examples / reviewer audit retention rules / reviewer audit retention checks / reviewer audit handoff packets / reviewer audit handoff checks / parallel session sync checks / parallel session conflict lanes / parallel session recovery checks / recovery outcome lanes、S1.3 non-blocking escalation lanes、S2.8 IwoooS frontend posture entry,以及 S2.9-S2.64 IwoooS / AwoooP security projection contract 都是有效進展,但它們是 framework detail,不是 owner response、runtime gate、production ingestion 或 GitHub primary readiness。因此 headline 仍維持 58%,避免把只讀框架誤算成已落地執行。 +近期 S4.10 request packet、template status ledger、audit event templates、redaction examples、collection checks、intake preflight checks、S4.11 request packet / template status ledger / audit event templates / redaction examples / collection checks / intake preflight checks、S4.12 request packet / template status ledger / audit event templates / redaction examples / collection checks / intake preflight checks、S4.13 evidence routing rules / display sections / state transition rules / reviewer checklist / reviewer outcome lanes / reviewer audit event templates / reviewer audit display sections / reviewer audit collection checks / reviewer audit redaction examples / reviewer audit retention rules / reviewer audit retention checks / reviewer audit handoff packets / reviewer audit handoff checks / parallel session sync checks / parallel session conflict lanes / parallel session recovery checks / recovery outcome lanes、S1.3 non-blocking escalation lanes、S2.8 IwoooS frontend posture entry,以及 S2.9-S2.65 IwoooS / AwoooP security projection contract 都是有效進展,但它們是 framework detail,不是 owner response、runtime gate、production ingestion 或 GitHub primary readiness。因此 headline 仍維持 58%,避免把只讀框架誤算成已落地執行。 S2.50 也把「為什麼 58% 還不動」拆成五個可見 gate:owner response accepted、redacted payload ingestion、active runtime gate、GitHub primary ready、AwoooP read-only landing。這五個 gate 目前仍全部是 0 / false,所以 headline 不應被灌水提高。 @@ -127,6 +127,7 @@ S2.50 也把「為什麼 58% 還不動」拆成五個可見 gate:owner respons | S2.62 IwoooS frontend surface connection board | 已完成草案,在 `/iwooos` 顯示 10 個既有資安入口的 embedded bridge、direct bridge 與 AwoooP read-only candidate 連接狀態;runtime_execution_authorized=false、active_runtime_gate_count=0、action_buttons_allowed=false | 0 | | S2.63 IwoooS GitHub primary readiness board | 已完成草案,在 `/iwooos` 顯示 candidate repos=8、in-scope=7、primary_ready_count=0、owner response 0/22、refs truth accepted=0、workflow inventory complete=0/7、rollback ADR approved=0;runtime_execution_authorized=false、active_runtime_gate_count=0、action_buttons_allowed=false | 0 | | S2.64 AwoooP work-items GitHub primary readiness candidate | 已完成草案,在 `/awooop/work-items` 顯示 GitHub Primary Readiness 只讀工作項,連回 `/iwooos`,並顯示 candidate repos=8、in-scope=7、primary_ready_count=0、owner response 0/22、workflow inventory complete=0/7;runtime_execution_authorized=false、active_runtime_gate_count=0、action_buttons_allowed=false | 0 | +| S2.65 AwoooP contracts GitHub primary readiness candidate | 已完成草案,在 `/awooop/contracts` 顯示 GitHub Primary Readiness 合約只讀候選,連回 `/iwooos`,並顯示 candidate repos=8、in-scope=7、primary_ready_count=0、owner response 0/22、workflow inventory complete=0/7;runtime_execution_authorized=false、active_runtime_gate_count=0、action_buttons_allowed=false | 0 | headline 要再往上,需要 S4.9 / S4.10 / S4.11 / S4.12 任一 owner response 收到並通過脫敏驗收,或人工批准後出現 active runtime gate、redacted payload ingestion、GitHub primary readiness 這類落地 evidence。 @@ -210,6 +211,7 @@ headline 要再往上,需要 S4.9 / S4.10 / S4.11 / S4.12 任一 owner respons | S2.62 IwoooS Frontend Surface Connection Board | 完成草案 | `/iwooos` 新增 10 個既有資安入口的連接狀態板,區分 embedded bridge、direct bridge 與 AwoooP read-only candidate | 使用者能直接看見資安頁面目前怎麼接回 IwoooS;連接狀態仍不是 owner response、runtime authorization、Code Review blocker、Gitea/GitHub action、scan、repair、approve、deploy 或 blocking control | | S2.63 IwoooS GitHub Primary Readiness Board | 完成草案 | `/iwooos` 新增 GitHub Primary Readiness 只讀狀態板,顯示 candidate repos=8、in-scope=7、primary_ready_count=0、owner response 0/22、refs truth accepted=0、workflow inventory complete=0/7、rollback ADR approved=0 | 使用者能理解 Gitea 長期轉 GitHub 的 readiness 缺口;狀態板仍不是 repo creation、visibility change、refs mutation、secret value collection、primary switch、Gitea disablement 或 runtime 授權 | | S2.64 AwoooP Work-Items GitHub Primary Readiness Candidate | 完成草案 | `/awooop/work-items` 新增 GitHub Primary Readiness 只讀工作項,顯示 candidate repos=8、in-scope=7、primary_ready_count=0、owner response 0/22、workflow inventory complete=0/7,並連回 `/iwooos` | 使用者與另一個 AwoooP Session 能在工作鏈路理解 GitHub primary readiness 仍只是缺口追蹤;工作項仍不是 repo creation、visibility change、refs mutation、secret value collection、primary switch、Gitea disablement 或 runtime 授權 | +| S2.65 AwoooP Contracts GitHub Primary Readiness Candidate | 完成草案 | `/awooop/contracts` 新增 GitHub Primary Readiness 合約只讀候選,顯示 primary readiness、owner response validation、rollback ADR、workflow / secret name inventory 與 IwoooS projection refs | 使用者與另一個 AwoooP Session 能在合約控制面理解 GitHub primary readiness 仍只是只讀契約缺口;合約候選仍不是 repo creation、visibility change、refs mutation、secret value collection、primary switch、Gitea disablement 或 runtime 授權 | | S3 approval gate | 進行中 | `security_approval_gate_v1` 已建立 8 個人工 gate items:7 pending、1 block candidate、0 approved | 不得繞過人工批准;批准後仍需 follow-up runtime gate | | S3.0 人工批准 Gate 契約 | 完成草案 | 定義批准範圍、決策選項、required reviewers、still forbidden 與 follow-up runtime gate | AwoooP 可記錄決策,不可執行 gate item | | S3.1 人工決策紀錄契約 | 完成草案 | `security_approval_decision_record_v1` 已建立;目前 0 筆 decision records、0 個 runtime action 授權 | AwoooP 可稽核決策,不可把決策當執行 | diff --git a/docs/security/security-mirror-status-rollup.snapshot.json b/docs/security/security-mirror-status-rollup.snapshot.json index d3c7c78f7..5e37e7d3e 100644 --- a/docs/security/security-mirror-status-rollup.snapshot.json +++ b/docs/security/security-mirror-status-rollup.snapshot.json @@ -1238,6 +1238,18 @@ "runtime_delta": false, "execution_authorized": false, "not_authorization": true + }, + { + "delta_id": "s2_65_awooop_contracts_github_primary_readiness_candidate", + "display_order": 94, + "completed_stage": "S2.65 AwoooP contracts GitHub primary readiness candidate", + "progress_axis": "framework_detail", + "headline_percent_delta": 0, + "framework_delta_visible": true, + "why_headline_unchanged": "AwoooP 合約儀表板只新增 GitHub Primary Readiness 合約只讀候選,顯示 candidate repos=8、in-scope=7、primary_ready_count=0、owner response 0/22、workflow inventory complete=0/7;runtime_execution_authorized=false、active_runtime_gate_count=0、action_buttons_allowed=false,沒有建立 GitHub repo、修改 visibility、sync / delete / force push refs、收 secret value、切 primary 或停用 Gitea。", + "runtime_delta": false, + "execution_authorized": false, + "not_authorization": true } ], "next_safe_actions": [ @@ -1466,6 +1478,22 @@ "從 AwoooP 工作鏈路切 GitHub primary、停用 Gitea 或把 request-ready 當 owner response accepted" ] }, + { + "action_id": "show_awooop_contracts_github_primary_readiness_candidate", + "title": "AwoooP 合約儀表板顯示 GitHub Primary Readiness 合約只讀候選", + "mode": "observe", + "source_contract": "security_mirror_status_rollup_v1", + "allowed_processing": [ + "在 /awooop/contracts 顯示 S2.65 GitHub Primary Readiness 合約只讀候選", + "顯示 candidate repos=8、in-scope=7、primary_ready_count=0、owner response 0/22、workflow inventory complete=0/7", + "連到 /iwooos 只讀入口,不新增 repo、visibility、refs、workflow、secret、primary 或 Gitea disablement action" + ], + "blocked_processing": [ + "把 AwoooP contracts 合約候選當成 GitHub primary approval", + "從 AwoooP contracts 建立 repo、改 visibility、sync/delete/force push refs 或收 secret value", + "從 AwoooP contracts 切 GitHub primary、停用 Gitea 或把 request-ready 當 owner response accepted" + ] + }, { "action_id": "mirror_low_friction_non_blocking_lanes", "title": "AwoooP 顯示低摩擦非阻擋升級分流", @@ -1843,7 +1871,8 @@ "S2.61 新增稽核與工程審查頁面 IwoooS reverse bridge;/alert-operation-logs 與 /code-review 以深色只讀橋接顯示 IwoooS 納管狀態、headline 58%、framework 80-85%、runtime gates=0、action buttons=0;runtime_execution_authorized=false、active_runtime_gate_count=0、action_buttons_allowed=false、not_authorization=true,不把稽核或工程審查頁面的可見性當 owner response、runtime gate、掃描、修復、批准、部署、Code Review blocker 或 Gitea/GitHub action。", "S2.62 新增 IwoooS frontend surface connection board;/iwooos 顯示 10 個既有資安入口的連接狀態,區分 embedded bridge、direct bridge 與 AwoooP read-only candidate;frontend_surface_reverse_bridge_status_count=10、runtime_execution_authorized=false、active_runtime_gate_count=0、action_buttons_allowed=false、not_authorization=true,不把連接狀態當 owner response、runtime gate、掃描、修復、批准、部署、Code Review blocker 或 Gitea/GitHub action。", "S2.63 新增 IwoooS GitHub Primary Readiness 只讀狀態板;/iwooos 顯示 candidate repos=8、in-scope=7、primary_ready_count=0、owner response 0/22、refs truth accepted=0、workflow inventory complete=0/7、rollback ADR approved=0;runtime_execution_authorized=false、active_runtime_gate_count=0、action_buttons_allowed=false、not_authorization=true,不建立 GitHub repo、不改 visibility、不 sync/delete/force push refs、不收 secret value、不切 primary、不停用 Gitea。", - "S2.64 新增 AwoooP work-items GitHub Primary Readiness 只讀工作項;/awooop/work-items 顯示 candidate repos=8、in-scope=7、primary_ready_count=0、owner response 0/22、workflow inventory complete=0/7,並連回 /iwooos;runtime_execution_authorized=false、active_runtime_gate_count=0、action_buttons_allowed=false、not_authorization=true,不把工作項當 GitHub primary approval、不建立 repo、不改 visibility、不 sync/delete/force push refs、不收 secret value、不切 primary、不停用 Gitea。" + "S2.64 新增 AwoooP work-items GitHub Primary Readiness 只讀工作項;/awooop/work-items 顯示 candidate repos=8、in-scope=7、primary_ready_count=0、owner response 0/22、workflow inventory complete=0/7,並連回 /iwooos;runtime_execution_authorized=false、active_runtime_gate_count=0、action_buttons_allowed=false、not_authorization=true,不把工作項當 GitHub primary approval、不建立 repo、不改 visibility、不 sync/delete/force push refs、不收 secret value、不切 primary、不停用 Gitea。", + "S2.65 新增 AwoooP contracts GitHub Primary Readiness 合約只讀候選;/awooop/contracts 顯示 source_control_primary_readiness_gate_v1、source_control_owner_response_validation_rollup_v1、source_control_primary_rollback_adr_v1、source_control_workflow_secret_name_inventory_v1、iwooos_posture_projection_v1、candidate repos=8、in-scope=7、primary_ready_count=0、owner response 0/22、workflow inventory complete=0/7,並連回 /iwooos;runtime_execution_authorized=false、active_runtime_gate_count=0、action_buttons_allowed=false、not_authorization=true,不把合約候選當 GitHub primary approval、不建立 repo、不改 visibility、不 sync/delete/force push refs、不收 secret value、不切 primary、不停用 Gitea。" ], "forbidden_actions": [ "start_kali_scan", diff --git a/scripts/security/security-mirror-progress-guard.py b/scripts/security/security-mirror-progress-guard.py index 60c66fbf8..0b266396c 100755 --- a/scripts/security/security-mirror-progress-guard.py +++ b/scripts/security/security-mirror-progress-guard.py @@ -277,6 +277,7 @@ def validate(root: Path) -> None: "s2_62_iwooos_frontend_surface_connection_board", "s2_63_iwooos_github_primary_readiness_board", "s2_64_awooop_work_items_github_primary_readiness_candidate", + "s2_65_awooop_contracts_github_primary_readiness_candidate", ] assert_equal( "progress_delta_ledger.delta_ids", @@ -366,6 +367,11 @@ def validate(root: Path) -> None: [item["action_id"] for item in rollup["next_safe_actions"] if isinstance(item, dict)], "show_awooop_work_items_github_primary_readiness_candidate", ) + assert_contains( + "rollup.next_safe_actions.action_ids", + [item["action_id"] for item in rollup["next_safe_actions"] if isinstance(item, dict)], + "show_awooop_contracts_github_primary_readiness_candidate", + ) assert_equal("rollout_policy.schema_version", rollout_policy["schema_version"], "security_rollout_policy_v1") assert_equal("rollout_policy.default_mode", rollout_policy["default_mode"], "observe") @@ -5272,6 +5278,52 @@ def validate(root: Path) -> None: key, ) + assert_text_contains( + "awooop_contracts_page.github_primary_readiness_candidate_panel", + awooop_contracts_page, + "GitHubPrimaryReadinessContractCandidatePanel", + ) + for text in [ + "repo_creation_authorized=false", + "refs_mutation_authorized=false", + "secret_value_collection_allowed=false", + "github_primary_switch_authorized=false", + "gitea_disablement_authorized=false", + "runtime_execution_authorized=false", + "action_buttons_allowed=false", + ]: + assert_text_contains("awooop_contracts_page.github_primary_boundary", awooop_contracts_page, text) + for text in [ + "source_control_primary_readiness_gate_v1", + "source_control_owner_response_validation_rollup_v1", + "source_control_primary_rollback_adr_v1", + "source_control_workflow_secret_name_inventory_v1", + "iwooos_posture_projection_v1", + ]: + assert_text_contains("awooop_contracts_page.github_primary_refs", awooop_contracts_page, text) + for key in [ + "title", + "subtitle", + "badge", + "contractRefsTitle", + "boundaryLabel", + "boundaryTitle", + "boundaryDetail", + "openIwooos", + "metrics", + "contractRefs", + ]: + assert_contains( + "web_messages.zh-TW.awooop.contracts.githubPrimaryReadinessCandidate", + list(web_messages_zh["awooop"]["contracts"]["githubPrimaryReadinessCandidate"].keys()), + key, + ) + assert_contains( + "web_messages.en.awooop.contracts.githubPrimaryReadinessCandidate", + list(web_messages_en["awooop"]["contracts"]["githubPrimaryReadinessCandidate"].keys()), + key, + ) + assert_text_contains("iwooos_bridge.component", iwooos_bridge, "IwoooSReadOnlyBridge") assert_text_contains("iwooos_bridge.testid", iwooos_bridge, 'data-testid="iwooos-read-only-bridge"') assert_text_contains("iwooos_bridge.iwooos_link", iwooos_bridge, 'href="/iwooos"')