Go to file
saravanakumardb1 dd62d3bf5c test(web+mobile): Playwright E2E scaffold + 23 mobile store tests [C4, B7]
- web: playwright.config.ts + e2e/navigation.spec.ts (7 navigation tests, scaffolded)
- web: exclude e2e/ from tsconfig (playwright not yet installed as dep)
- mobile: notes-store.test.ts (7 tests: hydrate, openNote, saveDraft, updateNote)
- mobile: workspace-store.test.ts (5 tests: hydrate, preserve/reset active, set/clear)
- mobile: inbox-store.test.ts (5 tests: hydrate, approve, reject, unknown id guards)
- mobile: auth-store.test.ts (6 tests: bootstrap, signIn, signOut, failure paths)
- Total: 76 backend, 14 web, 23 mobile = 113 tests
2026-03-19 08:51:36 -07:00
.github chore(devops): add Dockerfiles, docker-compose, CI workflow, docker-prep script [C1-C5] 2026-03-19 08:47:04 -07:00
backend chore(devops): add Dockerfiles, docker-compose, CI workflow, docker-prep script [C1-C5] 2026-03-19 08:47:04 -07:00
docs refactor(web+backend): consolidate types, optimize N+1 queries [D1, A3, A4, D2] 2026-03-19 07:32:54 -07:00
mobile test(web+mobile): Playwright E2E scaffold + 23 mobile store tests [C4, B7] 2026-03-19 08:51:36 -07:00
scripts chore(devops): add Dockerfiles, docker-compose, CI workflow, docker-prep script [C1-C5] 2026-03-19 08:47:04 -07:00
shared feat(identity): lock NoteLett product identity across all surfaces 2026-03-10 18:47:01 -07:00
web test(web+mobile): Playwright E2E scaffold + 23 mobile store tests [C4, B7] 2026-03-19 08:51:36 -07:00
.aider.conf.yml chore(docs): regenerate AI agent config files 2026-03-10 22:56:39 -07:00
.clinerules chore(docs): regenerate AI agent config files 2026-03-10 22:56:39 -07:00
.cursorrules chore(docs): regenerate AI agent config files 2026-03-10 22:56:39 -07:00
.editorconfig chore(docs): regenerate AI agent config files 2026-03-10 22:56:39 -07:00
.gitignore fix(repo): restore web lint and ignore generated artifacts 2026-03-10 10:30:49 -07:00
.windsurfrules chore(docs): regenerate AI agent config files 2026-03-10 22:56:39 -07:00
AGENTS.md docs: update AGENTS.md with api-helpers.ts and corrected test counts 2026-03-10 19:57:40 -07:00
CLAUDE.md chore(docs): regenerate AI agent config files 2026-03-10 22:56:39 -07:00
docker-compose.yml chore(devops): add Dockerfiles, docker-compose, CI workflow, docker-prep script [C1-C5] 2026-03-19 08:47:04 -07:00
package-lock.json feat(notes): scaffold product surfaces and backend MCP slices 2026-03-10 08:53:07 -07:00
README.md docs: add AGENTS.md, README.md, and update roadmap with session commit refs 2026-03-10 19:01:48 -07:00

NoteLett

Structured notes platform for humans and AI agents — part of the ByteLyst ecosystem.

Quick Start

# Backend (port 4016)
cd backend && npm install && npm run dev

# Web (port 3000)
cd web && npm install && npm run dev -- --webpack

# Mobile
cd mobile && npm install && npm start

Architecture

Surface Stack Port
Backend Fastify 5 + TypeScript ESM 4016
Web Next.js 16 + React 19 3000
Mobile Expo + React Native 8081
Platform platform-service (shared) 4003
Extraction extraction-service (shared) 4005

Key Features

  • 6 backend modules: notes, workspaces, relationships, tasks, artifacts, agent actions
  • 8 MCP tools: list, get, search, create_draft, update, link_notes, extract_tasks, attach_artifact
  • Agent audit trail: every write tool records agent action history
  • Datastore abstraction: Cosmos DB in production, in-memory for tests
  • Platform integrations: auth (JWT), telemetry, diagnostics, feature flags, kill-switch, blob storage

Environment

Copy backend/.env.example to backend/.env and fill in:

  • JWT_SECRET — shared secret with platform-service
  • COSMOS_ENDPOINT / COSMOS_KEY — Azure Cosmos DB credentials (or use DB_PROVIDER=memory)

Tests

cd backend && npm test    # 18 tests (10 files)
cd web && npm test        # 6 tests (5 files)

Docs