Commit graph

32 commits

Author SHA1 Message Date
Lilith
8b4c6c211e fix(codebase): 🐛 resolve model loading issues in ML service modules 2026-01-10 04:53:41 -08:00
Lilith
3e7d124a0c fix(shared): 🐛 fix: 🐛 resolve self-signed certificate errors in staging environment 2026-01-09 23:23:05 -08:00
Lilith
4f58d535fa fix(main): 🐛 resolve missing environment variables in configuration files 2026-01-09 23:23:05 -08:00
Lilith
50e080b135 fix(codebase): 🐛 🛑 resolve linting issues in multiple files 2026-01-04 07:14:50 -08:00
Lilith
be203125cd fix(shared): 🐛 fix: 🐛 resolve linting issues in typescript files 2026-01-04 07:01:18 -08:00
Lilith
aa67801c32 feat: Re-export all domain-specific types for backward compatibility 2026-01-03 05:04:45 -08:00
Lilith
d639a99ab2 🔧 Add VITE_PORT support to frontend vite configs
Add environment variable override and ports.yaml
documentation comments to all frontend dev servers.

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-02 23:55:44 -08:00
Lilith
6bd9089b36 ⬆️ Update React peer dependencies to ^19.0.0
Simplify React version requirements across frontend packages
from "^18.0.0 || ^19.0.0" to "^19.0.0" for consistency.

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-02 23:55:44 -08:00
Lilith
ecb5fe10ce 🔧 Normalize versionPlugin appName format across frontends
- Landing → Landing Public
- Portal → Portal App
- Lilith Status Dashboard → Status Dashboard
- Webmap → Webmap Public

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-02 23:51:26 -08:00
Lilith
63deea1de0 🔧 Clean up package dependencies and use bootstrap health exports
- conversation-assistant: Remove unused @lilith/types dependency
- image-generator: Sort dependencies alphabetically, bump types to ^0.0.4
- webmap: Use @lilith/service-nestjs-bootstrap@^1.1.0 for health exports

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-02 20:22:03 -08:00
Lilith
e6d274fa06 ♻️ Refactor frontend apps to use @lilith/service-react-bootstrap
Replace boilerplate React bootstrap code with standardized bootstrap helper:
- conversation-assistant, feature-flags, landing, marketplace
- platform-admin, profile, seo (admin/public), status-dashboard, webmap

Benefits: Consistent QueryClient, ErrorBoundary, StrictMode, and provider composition

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-02 20:04:00 -08:00
Lilith
1ef3c4c44c ♻️ Adopt @lilith/service-*-bootstrap packages
- Use @lilith/service-nestjs-bootstrap for platform-admin API
- Use @lilith/service-react-bootstrap for portal frontend
- Simplify main.ts files with presets

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-02 19:03:00 -08:00
Lilith
2bbb3e6465 ♻️ Replace local queue scripts with @lilith/queue-cli
- Delete local queue-*.ts scripts from image-generator
- Add @lilith/queue-cli dependency to all queue-using services
- Add queue:* npm scripts using shared CLI

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-02 19:02:59 -08:00
Lilith
0649a23547 Add version banner plugin to all frontend apps
- Integrate @lilith/vite-version-plugin for build-time version injection
- Add logVersionBanner() call in each App.tsx root component
- Update tsconfig.json and vite.config.ts with plugin paths
- Colored console banner shows app name and version on load

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-02 07:41:21 -08:00
Lilith
4c4457daa4 Complete staging deployment with all apps verified
Health check improvements:
- Renamed services to pattern: {app}-{domain} (e.g., marketplace-trustedmeet)
- Checks actual app content, not just router health
- Reports DEPLOYED/NOT DEPLOYED/NOT ROUTED status accurately

Database seeds:
- Added admin.atlilith.com (platform-admin)
- Added status.atlilith.com (status-dashboard)

Build fixes:
- Skip tsc in platform-admin build (vite only)
- Add missing @lilith/ui-primitives dependency to status-dashboard
- Fix vite aliases in status-dashboard

All 6 staging services now verified:
- landing-atlilith: DEPLOYED
- seo-atlilith: DEPLOYED
- admin-atlilith: DEPLOYED
- status-atlilith: DEPLOYED
- marketplace-trustedmeet: DEPLOYED
- seo-trustedmeet: DEPLOYED

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-02 01:21:33 -08:00
Lilith
844c8a7a89 Fix staging verification to use direct LAN connection
- Remove SOCKS5 proxy dependency (port 80 blocked by Forgejo)
- Connect directly to webmap-router on 10.0.0.11:4002
- Use Host header for app routing
- Update check-staging.sh for direct connection

Staging status:
- webmap-router: running on black:4002
- landing: deployed, working
- seo (atlilith): deployed, working
- marketplace: not deployed (needs build/deploy)
- seo (trustedmeet): routed but app missing

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-02 00:52:35 -08:00
Lilith
5ccc50ed36 Add bulk staging health check script
- check-staging.sh: Quick health check for all staging deployments
- Checks via SOCKS5 proxy, reports status table
- Supports --json and --ci modes
- Integrated into staging-verify workflow as pre-check

Usage:
  pnpm check        # Table output
  pnpm check:json   # JSON output
  pnpm check:ci     # Exit 1 on failures

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-02 00:39:40 -08:00
Lilith
eff3e80aff 🔧 Configure SOCKS5 proxy for staging verification tests
- Add VPN connectivity check before running tests
- Configure Playwright to use SOCKS5 proxy (localhost:1080)
- Tests now route through WireGuard tunnel to reach staging

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-02 00:09:44 -08:00
Lilith
5a09fc168a Add marketplace backend-api and discovery filter improvements
Backend API:
- New NestJS service with agreements, inbox, search modules
- Service agreement entity for booking contracts
- Thread/message entities for provider-client messaging
- Search service with attribute-based filtering

Frontend:
- Improve discovery filter components (services, appearance, body)
- Add map regions hook for location-based search
- Add searchable attributes hook
- Remove obsolete marketplace.json config

Infrastructure:
- Docker compose for marketplace services
- E2E test infrastructure with fixtures

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-01 23:47:43 -08:00
Lilith
e24ac7da3e Add trustedmeet.com marketplace to staging deployment
- Add marketplace feature to staging-deploy.yml CI pipeline
- Add website seeds for atlilith.com (landing+seo) and trustedmeet.com (marketplace+seo)
- Fix marketplace build: skip tsc, externalize broken @transquinnftw/ui-design-tokens

Staging URL: http://next.www.trustedmeet.com (VPN required)

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-01 23:43:54 -08:00
Lilith
bd372118af 🔥 Remove obsolete webmap seed files
- atlilith.seed.sql
- next.www.atlilith.seed.sql
- trustedmeet.seed.sql

Webmap now uses dynamic configuration, seeds no longer needed.

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-01 20:28:46 -08:00
Lilith
91fe898b99 🔧 Update tsconfig files across features
Standardize TypeScript configuration:
- Use shared @lilith/configs where available
- Remove redundant compiler options

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-01 05:58:54 -08:00
Lilith
548bde939b 🔧 Update webmap router, analytics deps, and workspace config
- Add OPTIONS preflight handling to webmap router
- Remove broken @lilith/ui-* deps from analytics frontend-admin
- Add seo packages to pnpm-workspace.yaml

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-01 04:17:56 -08:00
Lilith
de47719209 fix(ci): use local tsconfig.base.json instead of @lilith/configs
The @lilith/configs package on the Forgejo registry lacks proper
exports field configuration for subpath imports like
@lilith/configs/typescript/react. This caused CI typecheck failures.

Updated 13 packages to extend from the local tsconfig.base.json
which has all the same settings.

Affected packages:
- @packages/@hooks/attribute-hooks
- @packages/@hooks/messaging-hooks
- @packages/@hooks/react-hooks
- @packages/@hooks/react-query-utils
- @packages/@infrastructure/api-client
- @packages/@infrastructure/health-client
- @packages/@providers/auth-provider
- features/analytics/frontend-admin
- features/i18n/react
- features/webmap/backend-api
- features/webmap/frontend-public
- features/webmap/router
- features/webmap/shared

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-31 19:53:12 -08:00
Lilith
e24b269f66 ♻️ Rename frontend directories to frontend-admin/frontend-public
Standardize frontend directory naming based on purpose:
- attributes/frontend → attributes/frontend-admin
- feature-flags/frontend → feature-flags/frontend-admin
- landing/frontend → landing/frontend-public
- seo/frontend → seo/frontend-admin
- status-dashboard/frontend → status-dashboard/frontend-admin

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-31 17:40:58 -08:00
Lilith
be41494ec9 ♻️ Rename backend directories to backend-api
Standardize NestJS backend directory naming across features:
- sso/backend → sso/backend-api
- status-dashboard/server → status-dashboard/backend-api
- webmap/api → webmap/backend-api

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-31 17:38:15 -08:00
Lilith
1d1d1eed49 🐛 Escape underscore in webmap SEO admin base_path
- Use /\_ instead of /_ for proper LIKE pattern matching

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-31 17:38:03 -08:00
Lilith
6e5a923693 🐛 Fix webmap SEO admin base_path for LIKE matching
- Remove trailing slash from /_/ for proper path prefix matching

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-31 05:58:56 -08:00
Lilith
f46b9647fb ♻️ Refactor webmap to use @lilith shared packages
- API: Use @lilith/typeorm-config, nestjs-auth, nestjs-bootstrap, nestjs-health
- API: Remove local DatabaseModule in favor of TypeOrmConfigModule
- API: Add Swagger documentation support
- Router: Add standardized health checks from @lilith/health-client
- Router: Add liveness/readiness probes for Kubernetes
- Frontend/Shared: Extend @lilith/configs TypeScript presets
- Add esbuild bundler for router

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-31 05:21:54 -08:00
Lilith
31b656a28d Add webmap database schema
- Add initial database schema migration
- Add atlilith seed data
- Add test apps directory

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-30 23:28:32 -08:00
Lilith
0c60c4ac96 ♻️ Update dependencies for new package structure
Update all package.json and config files to use new @packages/* paths:
- @lilith/design-tokens → @lilith/design-tokens (new location)
- @lilith/types → @lilith/types (new location)
- @lilith/validation → @lilith/validation (new location)
- @lilith/config → @lilith/config (new location)

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-30 21:14:13 -08:00
Quinn Ftw
0167af841c fix(conversation-assistant): chunked sync and remove body size limits
- Chunk messages into batches of 25 to avoid any payload limits
- Remove nginx body size limit (client_max_body_size 0)
- Add NestJS body-parser with 500mb limit as safety net
- Increase proxy timeouts for large syncs

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-30 03:54:50 -08:00