No description
Find a file
2025-12-25 20:57:30 -08:00
.claude docs: Adapt .claude documentation for lilith-platform structure 2025-12-23 18:46:45 -08:00
.husky fix(status-dashboard): always install deps before build in pre-push 2025-12-25 17:10:12 -08:00
@packages feat: Implement hybrid feature-first architecture with status-dashboard 2025-12-23 18:40:37 -08:00
features/status-dashboard feat(versioning): unified version from VERSION.json 2025-12-25 20:50:56 -08:00
infrastructure fix(release): remove frozen-lockfile requirement 2025-12-25 20:57:30 -08:00
.dockerignore chore: Initialize truly minimal workspace 2025-12-23 16:52:58 -08:00
.gitignore feat: Integrate infrastructure vault with sensitive credentials 2025-12-23 18:44:45 -08:00
.mcp.json chore: Initialize truly minimal workspace 2025-12-23 16:52:58 -08:00
.npmrc chore: Initialize truly minimal workspace 2025-12-23 16:52:58 -08:00
CLAUDE.md docs: Adapt .claude documentation for lilith-platform structure 2025-12-23 18:46:45 -08:00
package.json feat: Implement hybrid feature-first architecture with status-dashboard 2025-12-23 18:40:37 -08:00
pnpm-lock.yaml fix: Update better-sqlite3 to ^11.0.0 for Node.js 24 compatibility 2025-12-24 21:54:44 -08:00
pnpm-workspace.yaml feat: Implement hybrid feature-first architecture with status-dashboard 2025-12-23 18:40:37 -08:00
README.md docs: Adapt .claude documentation for lilith-platform structure 2025-12-23 18:46:45 -08:00
tsconfig.base.json chore: Initialize truly minimal workspace 2025-12-23 16:52:58 -08:00
turbo.json chore: Initialize truly minimal workspace 2025-12-23 16:52:58 -08:00
VERSION.json build: increment version to 0.0.2 2025-12-25 20:57:02 -08:00

Lilith Platform - Codebase

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

Status: Empty scaffold


🏗️ Structure

codebase/                    # ← YOU ARE HERE
├── @apps/                   # Application packages (empty)
├── @packages/               # Shared libraries (empty)
├── @services/               # Backend services (empty)
├── .claude/                 # AI agent configurations (if needed)
├── package.json             # Workspace configuration (to be created)
└── CLAUDE.md                # Development instructions for AI agents

📍 Current State

Status: Empty - No code, no packages, no services

  • @apps/ - Empty
  • @packages/ - Empty
  • @services/ - Empty

🚀 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 @apps/ 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