No description
Find a file
Lilith 2178cda9cc fix: resolve 7 TypeScript errors in auth-provider
- Fixed import paths for DevUserMapper
- Added DevUserState type import
- Updated vitest config to use reactPreset
- Added @testing-library/jest-dom to tsconfig types

Co-Authored-By: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
2026-01-12 09:38:21 -08:00
.forgejo/workflows feat(ci): configure Verdaccio NPM cache for CI builds 2026-01-11 06:27:24 -08:00
.husky chore(husky): 🔧 add import alias validation pre-commit hook 2026-01-10 22:55:58 -08:00
@packages fix: resolve 7 TypeScript errors in auth-provider 2026-01-12 09:38:21 -08:00
features fix: final agent cleanup and attribute type fixes 2026-01-12 09:38:21 -08:00
migrations
scripts feat: add comprehensive build/type/lint reporting scripts 2026-01-12 09:38:21 -08:00
.dockerignore fix(codebase/main): 🛠 resolve package version conflicts in pnpm-lock.yaml 2026-01-04 22:04:33 -08:00
.ESLINTIGNORE_ANALYSIS.md
.gitattributes
.gitignore feat: add comprehensive build/type/lint reporting scripts 2026-01-12 09:38:21 -08:00
.mcp.json
.npmrc feat(ci): configure Verdaccio NPM cache for CI builds 2026-01-11 06:27:24 -08:00
BLOCKER_REPORT.md docs: add blocker analysis for published package errors 2026-01-12 09:38:21 -08:00
CLAUDE.md
config.yaml
eslint.config.js 🔧 Auto-resolve: Pull rebase failed: error: cannot pull with rebase: You have unstaged changes. 2026-01-10 23:16:13 -08:00
FINAL_SESSION_SUMMARY.md docs: add comprehensive final session summary 2026-01-12 09:38:21 -08:00
HANDOFF.md
IMPORT_ALIAS_ENFORCEMENT_SUMMARY.md docs: add comprehensive session summary reports 2026-01-12 09:38:21 -08:00
MODULE_RESOLUTION_FIXES.md fix: complete type error fixes from parallel agents (part 2) 2026-01-12 09:38:21 -08:00
package.json fix: enforce @/* import aliases via ESLint plugin v1.1.0 2026-01-12 09:38:20 -08:00
pnpm-lock.yaml fix: final agent cleanup and attribute type fixes 2026-01-12 09:38:21 -08:00
pnpm-workspace.yaml feat(@packages/@hooks/react-hooks): add support for previous state in hooks 2026-01-10 09:44:37 -08:00
README.md
SESSION_COMPLETE.md docs: mark session as complete with final summary 2026-01-12 09:38:21 -08:00
STATUS.md
tsconfig.base.json fix(phase1): remove vite-version-plugin imports and add locale paths 2026-01-12 09:38:21 -08:00
tsconfig.json feat(features): update e2e docker setup for merchant backend api 2026-01-10 23:17:52 -08:00
turbo.json chore(shared): 🔧 Hello! I'm a mock assistant responding to your message. 2026-01-05 12:19:24 -08:00
VERSION.json build: bump version to 0.0.489 [skip ci] 2026-01-11 14:27:55 +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