compassmock/CLAUDE.md
Nicholai 8b34becbeb
feat(agent): AI agent harness with memory, GitHub, audio & feedback (#37)
* feat(agent): replace ElizaOS with AI SDK v6 harness

Replace custom ElizaOS sidecar proxy with Vercel AI SDK v6 +
OpenRouter provider for a proper agentic harness with multi-step
tool loops, streaming, and D1 conversation persistence.

- Add AI SDK agent library (provider, tools, system prompt, catalog)
- Rewrite API route to use streamText with 10-step tool loop
- Add server actions for conversation save/load/delete
- Migrate chat-panel and dashboard-chat to useChat hook
- Add action handler dispatch for navigate/toast/render tools
- Use qwen/qwen3-coder-next via OpenRouter (fallbacks disabled)
- Delete src/lib/eliza/ (replaced entirely)
- Exclude references/ from tsconfig build

* fix(chat): improve dashboard chat scroll and text size

- Rewrite auto-scroll: pin user message 75% out of
  frame after send, then follow bottom during streaming
- Use useEffect for scroll timing (DOM guaranteed ready)
  instead of rAF which fired before React commit
- Add user scroll detection to disengage auto-scroll
- Bump assistant text from 13px back to 14px (text-sm)
- Tighten prose spacing for headings and lists

* chore: installing new components

* refactor(chat): unify into one component, two presentations

Extract duplicated chat logic into shared ChatProvider context
and useCompassChat hook. Single ChatView component renders as
full-page hero on /dashboard or sidebar panel elsewhere. Chat
state persists across navigation.

New: chat-provider, chat-view, chat-panel-shell, use-compass-chat
Delete: agent-provider, chat-panel, dashboard-chat, 8 deprecated UI files
Fix: AI component import paths (~/  -> @/), shadcn component updates

* fix(lint): resolve eslint errors in AI components

- escape unescaped entities in demo JSX (actions, artifact,
  branch, reasoning, schema-display, task)
- add eslint-disable for @ts-nocheck in vendor components
  (file-tree, terminal, persona)
- remove unused imports in chat-view (ArrowUp, Square,
  useChatPanel)

* feat(agent): rename AI to Slab, add proactive help

rename assistant from Compass to Slab and add first
interaction guidance so it proactively offers
context-aware help based on the user's current page.

* fix(build): use HTML entity for strict string children

ReasoningContent expects children: string, so JSX
expression {"'"} splits into string[] causing type error.
Use ' HTML entity instead.

* feat(agent): add memory, github, audio, feedback

- persistent memory system (remember/recall across sessions)
- github integration (commits, PRs, issues, contributors)
- audio transcription via Whisper API
- UX feedback interview flow with auto-issue creation
- memories management table in settings
- audio waveform visualization component
- new schema tables: slab_memories, feedback_interviews
- enhanced system prompt with proactive tool usage

* feat(agent): unify chat into single morphing instance

Replaces two separate ChatView instances (page + panel) with
one layout-level component that transitions between full-page
and sidebar modes. Navigation now actually works via proper
AI SDK v6 part structure detection, with view transitions for
smooth crossfades, route validation to prevent 404s, and
auto-opening the panel when leaving dashboard.

Also fixes dark mode contrast, user bubble visibility, tool
display names, input focus ring, and system prompt accuracy.

* refactor(agent): rewrite waveform as time-series viz

Replace real-time frequency equalizer with amplitude
history that fills left-to-right as user speaks.
Bars auto-calculated from container width, with
non-linear boost and scroll when full.

* (feat): implemented architecture for plugins and skills, laying a foundation for future implementations of packages separate from the core application

* feat(agent): add skills.sh integration for slab

Skills client fetches SKILL.md from GitHub, parses
YAML frontmatter, and stores content in plugin DB.
Registry injects skill content into system prompt.
Agent tools and settings UI for skill management.

* feat(agent): add interactive UI action bridge

Wire agent-generated UIs to real server actions via
an action bridge API route. Forms submit, checkboxes
persist, and DataTable rows support CRUD operations.

- action-registry.ts: maps 19 dotted action names to
  server actions with zod validation + permissions
- /api/agent/action: POST route with auth, permission
  checks, schema validation, and action execution
- schema-agent.ts: agent_items table for user-scoped
  todos, notes, and checklists
- agent-items.ts: CRUD + toggle actions for agent items
- form-context.ts: FormIdProvider for input namespacing
- catalog.ts: Form component, value/onChangeAction props,
  DataTable rowActions, mutate/confirmDelete actions
- registry.tsx: useDataBinding on all form inputs, Form
  component, DataTable row action buttons, inline
  Checkbox/Switch mutations
- actions.ts: mutate + confirmDelete handlers that call
  the action bridge, formSubmit now collects + submits
- system-prompt.ts: interactive UI patterns section
- render/route.ts: interactive pattern custom rules

* docs: reorganize into topic subdirectories

Move docs into auth/, chat/, openclaw-principles/,
and ui/ subdirectories. Add openclaw architecture
and system prompt documentation.

* feat(agent): add commit diff support to github tools

Add fetchCommitDiff to github client with raw diff
fallback for missing patches. Wire commit_diff query
type into agent github tools.

* fix(ci): guard wrangler proxy init for dev only

initOpenNextCloudflareForDev() was running unconditionally
in next.config.ts, causing CI build and lint to fail with
"You must be logged in to use wrangler dev in remote mode".
Only init the proxy when NODE_ENV is development.

---------

Co-authored-by: Nicholai <nicholaivogelfilms@gmail.com>
2026-02-06 17:04:04 -07:00

9.1 KiB
Executable File

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

compass

a construction project management system built with Next.js 15 + React 19, designed to replace BuilderTrend with a lean, self-hosted, open-source alternative. deployed to Cloudflare Workers via OpenNext.

quick start

bun dev          # turbopack dev server on :3000
bun run build        # production build
bun preview      # test build on cloudflare runtime
bun deploy       # build and deploy to cloudflare workers
bun lint         # run eslint

database commands:

bun run db:generate      # generate drizzle migrations from schema
bun run db:migrate:local # apply migrations locally
bun run db:migrate:prod  # apply migrations to production D1

tech stack

layer tech
framework Next.js 15 App Router, React 19
language TypeScript 5.x
ui shadcn/ui (new-york style), Tailwind CSS v4
charts Recharts
database Cloudflare D1 (SQLite) via Drizzle ORM
auth WorkOS (SSO, directory sync)
ai agent AI SDK v6 + OpenRouter (kimi-k2.5 model)
integrations NetSuite REST API
state React Context, server actions

critical architecture patterns

server actions & data flow

  • all data mutations go through server actions in src/app/actions/
  • pattern: return { success: true } | { success: false; error: string }
  • server actions revalidate paths with revalidatePath() to update client
  • no fetch() in components - use actions instead
  • environment variables accessed via getCloudflareContext()env.DB for D1

database

  • schema split across src/db/schema.ts (core) and src/db/schema-netsuite.ts (integration)
  • drizzle ORM with D1 (SQLite dialect)
  • text IDs (UUIDs), text dates (ISO 8601 format)
  • migrations in drizzle/ directory - add new migrations, never modify old ones

authentication & middleware

  • WorkOS handles SSO, email/password, directory sync
  • middleware in src/middleware.ts checks session and redirects unauthenticated users to /login
  • public paths: /, /login, /signup, /reset-password, /verify-email, /invite, /callback, /api/auth/*, /api/netsuite/*
  • getCurrentUser() from lib/auth.ts returns user info with database lookup fallback

ai agent harness

  • located in src/lib/agent/ - a complete AI-assisted system
    • provider.ts: OpenRouter setup for kimi-k2.5 model
    • tools.ts: queryData, navigateTo, showNotification, renderComponent tools
    • system-prompt.ts: dynamic prompt builder with page/user context
    • catalog.ts: component specs for DynamicUI rendering
    • chat-adapter.ts: re-exports useChat hook + action handlers
  • src/app/api/agent/route.ts: streamText endpoint with 10-step multi-tool loop
  • src/app/actions/agent.ts: D1 persistence (save/load/delete conversations)
  • components: src/components/agent/chat-panel.tsx (side panel), src/components/dashboard-chat.tsx (inline)
  • ai sdk v6 gotchas:
    • inputSchema not parameters for tool() definitions
    • UIMessage uses parts array, no .content field
    • useChat: sendMessage({ text }) not append({ role, content })
    • useChat: status is "streaming"|"submitted"|"ready"|"error", not isGenerating
    • zod schemas must use import { z } from "zod/v4" to match AI SDK internals

netsuite integration

  • full bidirectional sync via REST API
  • key files in src/lib/netsuite/:
    • config.ts: account setup, URL builders
    • auth/: oauth 2.0 flow, token manager, AES-GCM encryption
    • client/: base HTTP client (retry, circuit breaker), record client, suiteql client
    • rate-limiter/: semaphore-based concurrency limiter (15 concurrent default)
    • sync/: sync engine, delta sync, conflict resolver, push logic, idempotency
    • mappers/: customer, vendor, project, invoice, vendor-bill mappers
  • env vars: NETSUITE_CLIENT_ID, NETSUITE_CLIENT_SECRET, NETSUITE_ACCOUNT_ID, NETSUITE_REDIRECT_URI, NETSUITE_TOKEN_ENCRYPTION_KEY, NETSUITE_CONCURRENCY_LIMIT
  • gotchas:
    • 401 errors can mean timeout, not auth failure
    • "field doesn't exist" often means permission denied
    • 15 concurrent request limit shared across ALL integrations
    • no batch create/update via REST (single record per request)
    • sandbox URLs use different separators (123456-sb1 vs 123456_SB1)
    • omitting "line" param on line items adds new line (doesn't update)

typescript discipline

  • strict types: no any, no as, no ! - use unknown with proper narrowing
  • discriminated unions over optional properties: { status: 'ok'; data: T } | { status: 'error'; error: E }
  • readonly everywhere mutation isn't intended: ReadonlyArray<T>, Readonly<Record<K, V>>
  • no enum - use as const objects or union types instead
  • branded types for primitive identifiers to prevent mixing up IDs of different types
  • explicit return types on all exported functions
  • result types over exceptions: return { success: true } | { success: false; error } from actions
  • effect-free module scope: no console.log, fetch, or mutations during import

project structure

src/
├── app/                    # next.js app router
│   ├── (auth)/            # auth pages (login, signup, etc)
│   ├── api/               # api routes (server actions, agent, webhooks)
│   ├── dashboard/         # protected dashboard routes
│   ├── actions/           # server actions (data mutations)
│   ├── globals.css        # tailwind + theme variables
│   ├── layout.tsx         # root layout
│   ├── middleware.ts      # auth + public path checks
│   └── page.tsx           # home page
├── components/            # react components
│   ├── ui/               # shadcn/ui primitives (auto-generated)
│   ├── agent/            # ai chat components
│   ├── netsuite/         # netsuite connection ui
│   └── *.tsx             # app-specific components
├── db/
│   ├── index.ts          # getDb() function
│   ├── schema.ts         # core drizzle schema
│   └── schema-netsuite.ts # netsuite-specific tables
├── hooks/                 # custom react hooks
├── lib/
│   ├── agent/            # ai agent harness
│   ├── netsuite/         # netsuite integration
│   ├── auth.ts           # workos integration
│   ├── permissions.ts    # rbac checks
│   ├── utils.ts          # cn() for class merging
│   └── validations/      # zod schemas
└── types/                # global typescript types

drizzle/                   # database migrations (auto-generated)
docs/                      # user documentation
public/                    # static assets
wrangler.jsonc             # cloudflare workers config
drizzle.config.ts          # drizzle orm config
next.config.ts             # next.js config
tsconfig.json              # typescript config

component conventions

shadcn/ui setup:

  • new-york style
  • add components: bunx shadcn@latest add <component-name>
  • aliases: @/components, @/components/ui, @/lib, @/hooks

ui patterns:

  • use cn() from @/lib/utils.ts for conditional classes
  • form validation via react-hook-form + zod
  • animations via framer-motion or tailwind css
  • icons from lucide-react or @tabler/icons-react (both configured with package import optimization)
  • data tables via tanstack/react-table

environment variables

dev: .dev.vars (gitignored) prod: cloudflare dashboard secrets

required:

  • WORKOS_API_KEY, WORKOS_CLIENT_ID
  • OPENROUTER_API_KEY (for ai agent)
  • NETSUITE_* (if using netsuite sync)

development tips

accessing database in actions

import { getCloudflareContext } from "@opennextjs/cloudflare"
const { env } = await getCloudflareContext()
const db = env.DB // D1 binding

using getCurrentUser() in actions

import { getCurrentUser } from "@/lib/auth"
const user = await getCurrentUser()
if (!user) throw new Error("Not authenticated")

revalidating paths after mutations

import { revalidatePath } from "next/cache"
// after changing data
revalidatePath("/dashboard/projects") // specific path
revalidatePath("/", "layout") // entire layout

querying data in components

  • server components can use getDb() directly
  • client components must call server actions
  • never fetch() from client components - use actions

type guards for discriminated unions

don't use as - write proper type guards:

function isError<E>(result: { success: boolean; error?: E }): result is { success: false; error: E } {
  return !result.success && result.error !== undefined
}

known issues & WIP

  • gantt chart vertical panning: zoom/horizontal pan work, but vertical pan conflicts with frappe-gantt container sizing. needs transform-based rendering approach with fixed header.

open source contribution notes

  • repo at github.com/High-Performance-Structures/compass (private, invite-only)
  • branching: <username>/<feature> off main
  • conventional commits: type(scope): subject
  • PRs are squash-merged to main
  • deployment to cloudflare is manual via bun deploy