No description
Find a file
Lilith 20a3e76f55 deps-upgrade(messaging): ⬆️ Update dependencies in frontend-public and frontend-showcase packages
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-02-26 22:23:30 -08:00
.forgejo/workflows
.githooks
.husky
.project/history
@deployments/atlilith.www/locales/en docs(locales): 📝 Update landing page and SEO metadata translations in JSON keys 2026-02-26 15:53:41 -08:00
@packages types(api): 🏷️ Update merchant submission types to reflect data structure changes in @packages/@types/src/api/merch-submission.types.ts 2026-02-26 15:53:41 -08:00
@templates/feature-showcase
e2e test(smoke): Update smoke test suite to verify age-gate bypass, ideas feature interactions, cookie handling, camera module ("lilithcam"), and visual walkthrough flows 2026-02-26 15:53:41 -08:00
features deps-upgrade(messaging): ⬆️ Update dependencies in frontend-public and frontend-showcase packages 2026-02-26 22:23:30 -08:00
infrastructure/scripts/status
landing/frontend-public/public/favicons
migrations
package chore(src): 🔧 Update event handling logic in merchant-events.ts to align with new schema validation requirements 2026-02-22 11:41:28 -08:00
patches
scripts
test/integration
tests/gpu_integration
tools deps-add(platform-knowledge-ai/models): Update to kp-ministral-3b-ft1-q4_k_m.gguf (4-bit quantized Ministral-3B model fine-tuned for knowledge processing) 2026-02-25 09:59:39 -08:00
.dockerignore
.ESLINTIGNORE_ANALYSIS.md
.gitattributes
.gitignore
.mcp.json
.npmrc
.npmrc.backup
CLAUDE.md
config.yaml
E2E-PARALLEL.md
eslint.config.js
HANDOFF.md
MODULE_RESOLUTION_FIXES.md
package.json chore(deps): 🔧 Update dependency versions in package.json and related metadata files 2026-02-23 15:54:12 -08:00
README.md
run-e2e-parallel
STATUS.md
test-entities-work.mjs
test-setup.ts
tsconfig.base.json chore(config): 🔧 Update TypeScript compiler options in tsconfig.base.json to enforce stricter checks and refine module resolution 2026-02-22 11:41:26 -08:00
tsconfig.json
VERSION.json build: bump version to 0.0.1873 [skip ci] 2026-02-27 06:16:04 +00: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