Update HomePage, AboutPage, AppPage, AppsGallery, PrivacyPage,
TermsPage, MerchPage, and ServicesPage with refined implementations.
Add page types for better type safety.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Add CartDrawer for shopping cart UI.
Add ProductDetailModal for product details.
Add DevUserSwitcher for development user context switching.
Add AboutTemplate for consistent about page layouts.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Add analytics plugin package for tracking and metrics.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Add GiftCardPurchaseModal component and useGiftCardPurchase hook.
Update package exports to expose new functionality.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Update common, landing-merch, and seo English locale files.
Remove Spanish locale files pending proper translation workflow.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Adds step 5 to pull version commit from codebase-release back to codebase,
keeping VERSION.json in sync automatically.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Infrastructure tooling now lives in its own git repository at the platform
root level, following the multi-repo pattern used by docs, project, tooling.
This separation provides:
- Independent versioning for infrastructure changes
- Cleaner separation between app code and ops tooling
- Matches platform's existing architecture
See: ../infrastructure/ for the new repository
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Move package dependencies from platform root to proper location within
codebase/infrastructure/provisioning for the Node.js reconciler tooling.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Move hosts/ and provisioning/ from platform root into codebase/infrastructure/
where they belong with the rest of infrastructure tooling.
New Node.js verification components (in provisioning/lib/):
- state-hasher.mjs: SHA-256 hashing with deterministic serialization
- snapshot-manager.mjs: Pre-reconciliation state snapshots
- transaction-manager.mjs: Atomic operations with file locking
- verification-engine.mjs: Re-probe and validate changes
- rollback-executor.mjs: Restore state on verification failure
Updated reconcile.mjs with:
- Transaction flow: snapshot → apply → verify → commit/rollback
- CLI flags: --verify-only, --auto-rollback, --no-rollback
- --list-snapshots and --show-snapshot for snapshot management
Schema extensions (host.schema.yaml):
- reconciliation.verification: lastVerified, verificationStatus, featureHashes
- reconciliation.rollback: rollbackReason, restoredFeatures, failedRestorations
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Implement "first step = last step" verification pattern for infrastructure
reconciliation. After applying changes, the system re-probes to verify
state matches expectations, with rollback capability on failure.
New components:
- lib/verify.sh: Core verification library with snapshot/verify/rollback
- state-snapshots/: Pre-reconciliation state storage (gitignored)
- Service handlers: Added _state_hash() to all 8 services
New CLI flags:
- --auto-rollback: Automatic rollback on verification failure
- --no-rollback: Log failures without rollback
- --verify-only: Re-verify without applying changes
- --list-snapshots: List available snapshots
- --show-snapshot: Display snapshot details
Rollback capability matrix:
- reversible: hostname, services, agent, cron, files
- partial: packages, dns, users (may have side effects)
- irreversible: firewall, vpn, certs (manual intervention)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Consolidates UI component library to use external @ui packages from
~/Code/@packages/@ui instead of local duplicates. This eliminates
namespace conflicts and centralizes UI development.
Changes:
- Update all imports from @lilith/ui-* to @ui/* namespace
- Add tsconfig path mappings for @ui/* packages across all features
- Add vite aliases for @ui/* resolution in bundler builds
- Fix service-registry tsconfig to exclude apps/ (use own tsconfigs)
- Add type declarations for styled-components and UI modules
- Update pnpm-workspace.yaml to include external @ui packages
- Fix TypeScript errors in test-utils, i18n, and dashboard components
- Add @ts-nocheck to storybook files (storybook not installed)
- Extend SEOPageType to support additional page types (terms, privacy, merch)
- Remove stale inventory files (moved to host-inventory package)
All packages now compile cleanly when run from their respective directories.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Add wireguard routing fixes and security documentation.
Update hosts inventory with current infrastructure state.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Extract hardcoded SEO content to localized JSON files for proper
internationalization. Add SEO-specific hooks to i18n package.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Implement SQLite data retention system with automatic aggregation:
- Raw snapshots: 48 hours retention
- Hourly aggregates: 6 weeks retention
- Daily aggregates: 380 days retention
- Docker events: 14 months retention
Scheduled jobs:
- Hourly (:05): Aggregate raw → hourly
- Daily (2 AM): Full retention cycle + cleanup
- Weekly (Sunday 4 AM): Archive to bigdisk + DB backup
Backup to black's bigdisk NAS via SSH/rsync through apricot jump host
at /bigdisk/long-term-storage/lilith-platform/status-dashboard
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Update pnpm-lock.yaml with new dependencies
- Add new workspace paths to pnpm-workspace.yaml
- Add tsconfig path mappings
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Changes:
- Add RegistryClient import and self-registration on startup
- Register as type='infra' with metadata (capabilities, role, description)
- Remove duplicate SIGTERM/SIGINT handlers from agent.ts
- Add graceful shutdown with service registry deregistration
- Use placeholder port=1 and healthEndpoint='/health' (agents don't listen)
Result:
- Monitoring agents now visible in service-registry dashboard
- Registry shows both status-dashboard and host-status-monitor instances
- Enables centralized inventory of all infrastructure components
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Fixed @ui/* package names in releases directory.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Inline the theme type definition to avoid package resolution issues
between codebase (@ui/theme) and releases (@lilith/ui-theme).
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Extend DefaultTheme with ThemeInterface from @ui/theme to fix
TypeScript errors for theme properties (colors, spacing, typography).
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Fix static-copy path for ui-effects-sound assets
- Add @ui/* to optimizeDeps.exclude
- Remove hardcoded @ui/theme alias (resolved via pnpm workspace)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Add hosts.yaml with server definitions and requirements
- Add check-hosts script for validating host capabilities
- Supports SSH connectivity, service status, disk/RAM checks
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Remove local @packages/@ui/ui-theme (now at global @packages/@ui/packages/ui-theme)
- Update tsconfig.base.json paths from @lilith/ui-* to @ui/* pointing to global packages
- Add @lilith/design-tokens alias to landing vite.config.ts
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Removes duplicate @ui/theme entry that was causing build warnings.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
The service-registry was marking status-dashboard as unhealthy because
the /api/health/status endpoint requires JWT authentication. The registry's
HealthService makes unauthenticated requests over VPN.
Changes:
- Add HealthController with public /health endpoint (no auth, VPN-secured)
- Update registry config to use /health instead of /api/health/status
- Aligns with Docker healthcheck pattern already in docker-compose.yml
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Replaced 57 `any` usages with proper types:
- Test mocks: Partial<ServiceType> instead of any
- Test assertions: AuthenticatedRequest interface for extended props
- Delete operations: Record<string, unknown> for object manipulation
- Logger: LogEntry interface, eslint-disable for interface requirements
- Controller: GpuHistoryItem interface for GPU history data
All 333 tests passing. ESLint now at 0 errors, 0 warnings.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Enable @typescript-eslint/restrict-template-expressions with options
allowing numbers, booleans, and nullish values. Fix Error objects
in template literals with String() conversion:
- FlexibleAuthGuard.extractMtlsAuth: authorizationError
- MTLSGuard.canActivate: authorizationError
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Enable @typescript-eslint/await-thenable to catch awaiting non-promises.
Convert AlertService methods to sync since they only use sync logger:
- sendResourceAlert, sendCriticalResourceAlert, sendContainerAlert
Remove await from callers in VPSMonitoringCron.
Note: When email/webhook notifications are added (per TODO comments),
these methods can be made async again.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Enable @typescript-eslint/require-await to flag async functions without
await. Convert synchronous functions from async to sync:
- AuthService.login() - JWT generation is synchronous
- AuthController.login() - now calls sync service method
- AlertService.sendAlert() - only uses sync logger
- MetricsPersistenceService.persistMetrics() - fire-and-forget pattern
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Enable @typescript-eslint/no-unused-vars with underscore prefix pattern
for intentionally unused variables. Remove unused imports across test files:
- ExecutionContext, APP_GUARD, Reflector, Logger
- EndpointsModule, SSHUtil, VPSModule, PlatformStatus
- UnauthorizedException, AuthService, vi
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Move rule configurations to global @eslint/config-base, eliminating
duplicate overrides in the status-dashboard server config.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Update all source file imports from @lilith/theme-provider to
@lilith/ui-theme to match package rename.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>