No description
Find a file
Lilith 82a305edb7 refactor(frontend-dev): use published @lilith/ui-* packages
Replace local settings components with published packages:
- @lilith/ui-forms@1.1.0: LabeledSlider (as Slider), TagInput (as EditableTagList), WeightSlider
- @lilith/ui-primitives@1.2.0: SeverityBadge
- @lilith/ui-feedback@1.1.0: PillTabs (as TabGroup)

Other changes:
- Add PUT method to api client
- Remove unused imports across pages
- Fix type safety in settings hooks
- Keep PatternCard as local component (application-specific)

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-02 08:45:49 -08:00
.forgejo/workflows 🔧 Add CI version bumping to staging deploy workflow 2026-01-02 05:39:25 -08:00
.husky 🔧 Add auto-rebase pre-push hook for CI version bumps 2026-01-02 07:46:47 -08:00
@packages 🐛 Fix TypeScript null assertion in attribute hooks 2026-01-02 07:41:17 -08:00
features refactor(frontend-dev): use published @lilith/ui-* packages 2026-01-02 08:45:49 -08:00
migrations 🔧 Fix all references after directory renames 2025-12-31 18:11:32 -08:00
.dockerignore 🔧 Update project configuration 2025-12-30 01:37:06 -08:00
.gitattributes 🔧 Add Git LFS tracking for analytics GeoIP databases 2025-12-30 01:34:22 -08:00
.gitignore 🔧 Add runtime gitignore + truth validation pre-commit hook 2025-12-31 05:20:08 -08:00
.mcp.json feat(landing): device-tier detection + perf optimizations + path fixes 2025-12-29 21:35:07 -08:00
.npmrc fix(ci): configure Forgejo npm registry for @lilith/* packages 2025-12-31 18:20:48 -08:00
CLAUDE.md
config.yaml
HANDOFF.md 🔧 Fix all references after directory renames 2025-12-31 18:11:32 -08:00
package.json ⬆️ Update dependencies and workspace configurations 2026-01-02 03:09:32 -08:00
pnpm-lock.yaml ⬆️ Update pnpm-lock.yaml with new dependencies 2026-01-02 08:45:48 -08:00
pnpm-workspace.yaml 🔧 Update webmap router, analytics deps, and workspace config 2026-01-01 04:17:56 -08:00
README.md
STATUS.md
tsconfig.base.json 🔧 Add API proxy for landing backend on staging 2026-01-02 04:16:12 -08:00
turbo.json
VERSION.json build: bump version to 0.0.38 [skip ci] 2026-01-02 15:47:30 +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