platform-codebase/pnpm-workspace.yaml
Quinn Ftw 9b41041af3 feat: Implement hybrid feature-first architecture with status-dashboard
This commit establishes the new lilith-platform workspace structure:

Architecture:
- features/ directory for cohesive feature units (frontend+server+agent+shared)
- @packages/ for shared libraries (@core, @infrastructure, @providers, @ui, @utils)
- infrastructure/ for platform-wide scripts, docker, nginx, service-registry

Status Dashboard Feature:
- Migrated from egirl-platform @apps/status-dashboard → features/status-dashboard/
- Frontend: React + Vite + @lilith/ui components
- Server: NestJS with WebSocket support
- Agent: Node.js metrics collector
- Infrastructure: Deploy script for VPS

Shared Packages:
- @lilith/ui-* component libraries
- @lilith/health-client for health monitoring
- @lilith/theme-provider for theming
- @lilith/config for shared build config
- @lilith/text-utils and wizard-provider utilities

Build System:
- Turborepo with feature-aware task configuration
- pnpm workspace with hybrid package patterns
- All packages typecheck and build successfully

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-23 18:40:37 -08:00

31 lines
738 B
YAML

packages:
# Feature packages (cohesive feature units)
- 'features/*/frontend'
- 'features/*/server'
- 'features/*/agent'
- 'features/*/shared'
- 'features/*/worker'
# Legacy layer-based packages (for migration)
- '@apps/*'
- '@services/*'
# Shared packages (cross-feature)
- '@packages/*'
- '@packages/@*/*'
- '@packages/plugins/*'
# Product apps
- 'product/*'
- 'product/@apps/*'
- 'product/apps/*'
# Extensions
- 'extensions/*'
# Infrastructure
- 'infrastructure/tests/*'
# Service Registry (internal dev tool)
- 'infrastructure/service-registry/apps/*'
- 'infrastructure/service-registry/packages/@service-registry/*'
- 'infrastructure/service-registry/packages/architecture-viz'