kjh2064
31b36ba226
V13-FE-005: consolidate approved UI governance and contract hardening
...
Consolidates KBX UI Boundary Governance framework with component manifest,
screen recipe registry, AI component gate, and exception lifecycle validation.
Evidence (evidence/V13-FE-005/*.log, 55+ files):
- Full frontend regression: 70 files / 180 tests PASS
- UI boundary gate: 37 files / 0 failures / 6 raw-color warnings (DEBT tracked)
- Component manifest validation: 0 failures
- Screen recipe governance: 0 failures
- AI component gate: 17 feature files / 23 known exports / 0 failures
- Accessibility E2E: 22 passed
- Production build: PASS (>500 kB chunk warning V13-FE-038 DECISION_REQUIRED)
- TypeCheck: PASS
- KBX validators: All 5 PASS (failures=0)
Added: 19 files (6 validator scripts, 6 test specs, 4 slice notes, 3 registries)
Modified: 9 files (CI workflow, WBS tracker, E2E specs, FE setup, Layout, TS configs)
Outstanding per V13-FE-005 note: AI prop-level validation, exception lifecycle,
browser/visual/AT/performance evidence. No completion overclaim.
AGENTS.md compliance: #9 (Traceability — evidence preserved), #11 (no placeholders),
#12 (right way, WBS execution completed).
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com >
2026-08-14 10:35:15 +09:00
kjh2064
9ed9a5c3fe
feat: apply KBX Foundation v4 pattern to home navigation
...
1. Create home feature registry (registry.ts)
- Define homeScreen: KbxScreenDefinition
- screenId: "home.dashboard"
- Module: "Home"
- Type: "dashboard"
- Accessible to all users (no permissions required)
2. Update central registry (registry/screens.ts)
- Import homeScreens from home/registry
- Add homeScreens to getAllScreens()
- Prepare for dynamic screen loading
3. Refactor HomePage.vue (KBX pattern)
- Replace navigationCatalog with registry-driven screens
- Use useKbxRegistry() composable
- Dynamic module grouping from registry
- Favorites/recent workbench
- Attention items aggregation (DEBT-030)
4. Extend module types (kbx-types.ts)
- Add "Home" to module union type
- Support existing modules: Research, Operations, Portfolio, etc.
- Flexible module extensibility
Features:
- Registry-driven navigation
- Centralized screen definitions
- Dynamic module grouping and sorting
- Favorites/recent screen tracking
- Type-safe screen lookups
- Zero hardcoded navigation paths
Benefits:
- Single source of truth for screen registry
- Automatic sync with router definitions
- Easy to add new modules
- Maintainable and testable
TypeScript: ✅ PASS (0 errors)
Typecheck time: ~5s
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com >
2026-08-12 02:00:05 +09:00