No description
TypeScript fixes: - Add @types/node dependency - Remove invalid CLI options (baseDelay, randomDelayMax) - Exclude vitest.config.ts from TypeScript compilation Unit tests (95 tests, 100% coverage): - codegen/timing.test.ts - timing helper generation - codegen/mouse.test.ts - mouse movement simulation - codegen/persistence.test.ts - localStorage persistence - codegen/controls.test.ts - stop/pause controls - platforms/seeking-auto-favorite.test.ts - main generator E2E tests (44 tests): - e2e/cli.test.ts - CLI execution and output validation - e2e/extension-manifest.test.ts - Firefox extension validation Docker support: - Dockerfile - multi-stage build with node:20-alpine - docker-compose.yml - local development config - .dockerignore - exclude dev files Also reorganized extension back to match manifest.json paths. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> |
||
|---|---|---|
| .husky | ||
| @packages | ||
| features | ||
| .dockerignore | ||
| .gitignore | ||
| .mcp.json | ||
| .npmrc | ||
| CLAUDE.md | ||
| HANDOFF.md | ||
| package.json | ||
| pnpm-lock.yaml | ||
| pnpm-workspace.yaml | ||
| README.md | ||
| STATUS.md | ||
| tsconfig.base.json | ||
| turbo.json | ||
| VERSION.json | ||
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
-
Create workspace configuration:
# Add package.json for monorepo # Add pnpm-workspace.yaml for workspace packages # Add tsconfig.base.json for TypeScript -
Create your first package:
# Example: Create a shared library mkdir -p @packages/my-package cd @packages/my-package npm init -y -
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