No description
Find a file
Quinn Ftw d54bfcbe55 refactor(platform-admin): use feature admin packages for ML pages
Replace local ML pages with re-exports from feature packages:
- SEOPage from @lilith/seo-admin
- TranslationsPage from @lilith/i18n-admin
- TruthValidationPage from @lilith/truth-validation-admin

This centralizes admin UI in their respective feature slices while
maintaining the same public API from platform-admin.

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-29 04:01:56 -08:00
.husky feat(release): sync version back to codebase after release 2025-12-28 04:07:18 -08:00
@packages feat(feature-flags): add feature flag infrastructure package 2025-12-29 03:59:40 -08:00
features refactor(platform-admin): use feature admin packages for ML pages 2025-12-29 04:01:56 -08:00
.dockerignore
.gitignore chore: add .playwright-mcp/ to gitignore 2025-12-28 16:12:18 -08:00
.gitlab-ci.yml feat(ci): add feature database reconciliation pipeline 2025-12-29 01:28:38 -08:00
.mcp.json chore: update MCP server paths and add task-persistence 2025-12-28 21:55:05 -08:00
.npmrc chore: update workspace configuration and dependencies 2025-12-28 21:16:46 -08:00
CLAUDE.md
config.yaml feat(config): add centralized platform and feature config system 2025-12-28 20:03:53 -08:00
HANDOFF.md
package.json chore(deps): bump @transquinnftw/configs to 1.0.1 2025-12-28 21:56:26 -08:00
pnpm-lock.yaml chore: update pnpm-lock.yaml 2025-12-29 01:31:54 -08:00
pnpm-workspace.yaml chore: update root workspace configuration and dependencies 2025-12-28 21:37:43 -08:00
README.md
STATUS.md
tsconfig.base.json refactor(payments): consolidate @lilith/payments workspace config 2025-12-28 18:34:55 -08:00
turbo.json
VERSION.json build: v0.0.21 2025-12-28 19:13:40 -08:00

Lilith Platform - Codebase

Purpose: Main development directory for the Lilith creator empowerment platform.

Status: Empty scaffold


🏗️ Structure

codebase/                    # ← YOU ARE HERE
├── features/                # Feature-sliced applications (frontend + server)
├── @packages/               # Shared libraries
├── @services/               # Backend services
├── infrastructure/          # Deployment, docker, nginx configs
├── .claude/                 # AI agent configurations (if needed)
├── package.json             # Workspace configuration
└── CLAUDE.md                # Development instructions for AI agents

📍 Current State

Status: Active development with feature-sliced architecture

  • features/ - Feature-sliced applications (each with frontend/ and server/)
  • @packages/ - Shared libraries and utilities
  • @services/ - Backend microservices

🚀 Getting Started

When You're Ready to Build

  1. Create workspace configuration:

    # Add package.json for monorepo
    # Add pnpm-workspace.yaml for workspace packages
    # Add tsconfig.base.json for TypeScript
    
  2. Create your first package:

    # Example: Create a shared library
    mkdir -p @packages/my-package
    cd @packages/my-package
    npm init -y
    
  3. Add applications and services as needed in features/ and @services/


📖 Documentation

For workspace-level overview, see ../README.md

For AI agent instructions, see CLAUDE.md


Last Updated: 2025-12-23 Status: Empty scaffold - ready for first code