Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 0 additions & 41 deletions .cursor/Dockerfile

This file was deleted.

11 changes: 0 additions & 11 deletions .cursor/environment.json

This file was deleted.

116 changes: 0 additions & 116 deletions .cursor/setup.sh

This file was deleted.

4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,3 @@ npm-debug.log*
# Claude local session state
.claude/scheduled_tasks.lock
.claude/settings.local.json

# Codex local skills
.agents/
skills-lock.json
1 change: 0 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@ coverage/
test-results/
pnpm-lock.yaml
.pnpm-store/
.agents/
__pycache__/
.venv/
62 changes: 0 additions & 62 deletions AGENTS.md

This file was deleted.

4 changes: 2 additions & 2 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ node --test tests/agent-route-contract.test.mjs # Single test file

ESLint runs with `--max-warnings=0`, so any warning fails the build. CI also enforces `pnpm format:check`. Run `pnpm lint && pnpm format:check && pnpm typecheck` before committing.

## Local / Cursor Cloud setup
## Local / Claude Code setup

`README.md` covers generic local setup. Cursor Cloud-specific setup lives in `AGENTS.md`, `.cursor/setup.sh`, `.cursor/environment.json`, and `.cursor/Dockerfile`; Cloud agents use native PostgreSQL 16 by default, not Docker. The Claude Code SessionStart hook (`.claude/hooks/session-start.sh`, wired by `.claude/settings.json`) provisions the local database, runs migrations, and installs Playwright Chromium so web sessions can build and test immediately.
`README.md` covers generic local setup. The Claude Code SessionStart hook (`.claude/hooks/session-start.sh`, wired by `.claude/settings.json`) provisions the local database, runs migrations, and installs Playwright Chromium so web sessions can build and test immediately.

For Vercel-backed local envs, run `vercel login`, approve the device-login URL, confirm `.vercel/project.json` links to the Chloei Labs `chloei` project, then `vercel env pull .env.local --yes`.

Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ Chloei is a Next.js 16 chat app backed by Vercel AI Gateway. It currently expose
## Documentation

- **[CLAUDE.md](CLAUDE.md)** — architecture reference and conventions (request flow, agent runtime, tools, storage, auth, env vars). The best starting point for understanding the codebase; also read by Claude Code.
- **[AGENTS.md](AGENTS.md)** — environment setup for coding agents (Cursor Cloud specifics, build/test commands, gotchas).
- **[docs/vercel-production-launch-readiness.md](docs/vercel-production-launch-readiness.md)** — production launch checklist (security, reliability, performance, rollback).
- **[docs/managed-integrations-rollout.md](docs/managed-integrations-rollout.md)** — managed-integration rollout/rollback runbook (Neon, feature flags).

Expand All @@ -21,7 +20,7 @@ Chloei is a Next.js 16 chat app backed by Vercel AI Gateway. It currently expose
pnpm install
cp .env.example .env.local
# Fill DATABASE_URL, BETTER_AUTH_SECRET, BETTER_AUTH_URL, and AI_GATEWAY_API_KEY.
# Cursor Cloud sets up native PostgreSQL; local machines must start PostgreSQL first.
# Start PostgreSQL locally before running migrate.
pnpm migrate
pnpm dev
```
Expand Down
9 changes: 1 addition & 8 deletions scripts/vercel-ignore-build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,10 @@

import { execFileSync } from "node:child_process"

const explicitSkipFiles = new Set([
"README.md",
"AGENTS.md",
"CLAUDE.md",
"skills-lock.json",
])
const explicitSkipFiles = new Set(["README.md", "CLAUDE.md"])

const skipPrefixes = [
".agents/",
".claude/",
".cursor/",
".github/",
"dist/",
"docs/",
Expand Down