Instructions for Claude Code and other AI coding agents working in this repository. Read this before making changes.
AGENTS.md is the canonical public agent guide. This file mirrors it for Claude Code. Maintainer-local docs/VISION.md, docs/PRINCIPLES.md, and docs/v0.2-plan.md may contain fresher planning details when present, but public contributors and bots must not assume those files exist.
Open CoDesign is an open-source desktop design agent. It turns prompts, local files, skills, scaffolds, brand systems, and model output into design artifacts on the user's laptop.
The v0.2 direction is no longer a single-prompt generator. Each design is a long-running pi session with a real workspace. The agent can read and edit files, run permissioned commands, ask structured questions, preview artifacts, expose tweak controls, generate images when the configured model supports it, and produce DESIGN.md design-system artifacts.
The original inspiration was Claude Design. The product boundary is now clearer: Open CoDesign borrows proven coding-agent mechanics, then adds design-specific tools and a local-first workspace model.
docs/ is mostly maintainer-local and gitignored. Some public research notes may exist, but internal plans, handoffs, and roadmap files usually do not. Do not cite docs/** in public PR review comments unless the exact file exists in the public checkout and is directly relevant.
These are project commitments, not preferences:
- No bundled model runtimes. Do not ship Ollama, llama.cpp, Python, browser binaries, or model weights inside the installer. Use system installs or lazy-download with user-visible consent.
- BYOK only. No hosted account, proxied API, or telemetry by default. User credentials stay in human-readable local config.
- Local-first storage. v0.2 uses pi JSONL sessions plus real workspace files. Existing v0.1 SQLite data may be migrated, but do not add new SQLite tables for sessions, chat history, comments, snapshots, or design files.
- Every design has a workspace. No sealed/open split in v0.2. The workspace filesystem is the source of truth for artifacts and assets.
- MIT-compatible permissive licenses only. Reject GPL, AGPL, SSPL, proprietary deps, and unclear copied assets. Check licenses before adding scaffolds, brand refs, or package deps.
- Lazy-load heavy features. PPTX export, web capture, scaffolds, skills, brand refs, and image generation must load on demand rather than at app start.
- Reuse pi primitives first.
pi-coding-agentowns sessions, built-in tools, bash execution, event streaming, model registry, provider registration, and capability data unless a design-specific need proves otherwise. - Brand values are data, not model memory. Use
DESIGN.md, user files, official CSS/SVG/screenshots, or brand URLs. Do not invent brand hex values from memory. - PRs should satisfy Principles 5b: compatible, upgradeable, no bloat, elegant.
- Use
pi-coding-agentandpi-ai. - Use pi built-ins for
read,write,edit,bash,grep,find, andls. - Gate tools through the pi
tool_callhook and the Open CoDesign permission UI. - Read capabilities from pi
Model<T>fields such asinput,reasoning,cost,contextWindow, andmaxTokens. - Register custom providers through
pi.registerProvider(). Do not build a parallel provider SDK layer. - All LLM calls go through
pi-ai; do not import provider SDKs directly in app code.
- Design equals pi session.
- Session history lives under app user data as pi JSONL.
- Design files, generated HTML/JSX/CSS, assets, exports,
AGENTS.md, andDESIGN.mdlive in the user workspace. - Workspace settings live in
.codesign/settings.jsonwithschemaVersion. settings.local.jsonis personal and should stay gitignored.- v0.1 SQLite is legacy data to migrate, not the v0.2 storage model.
The v0.2 tool surface is pi's seven built-ins plus Open CoDesign design tools:
ask(questions)renders structured questions and waits for the user.scaffold(kind, path)copies a curated starter into the workspace.skill(name)lazy-loads skill text from a manifest.preview(path)renders artifacts and returns console errors, asset errors, DOM outline, metrics, and screenshots for vision models.gen_image(prompt, path)writes generated images to disk when capability and provider config allow it.tweaks(blocks)declares editable controls across files.todos(items)shows task state for complex turns.done(path)ends a turn after preview self-check.
Do not reintroduce a verifier subagent, snip tool, custom bash tool, custom list-files tool, or agent-written working memory for v0.2 unless the plan changes.
DESIGN.mdfollows the Google spec and can be both input and output.- Agent-generated multi-screen work should keep visual consistency by updating
DESIGN.mdas tokens emerge. - Built-in brand refs must include attribution, source, license metadata, and a "not affiliated" note.
- Built-in skills use the agentskills-style
SKILL.mdformat. - Skill and scaffold manifests should carry license and source metadata.
- Package manager:
pnpmonly. Never usenpmoryarn. - Build orchestration: Turborepo.
- Lint and format: Biome.
- Tests: Vitest for unit tests, Playwright for E2E.
- TypeScript: strict mode,
verbatimModuleSyntax, bundler resolution, noany. - Commits: Conventional Commits.
- Versioning: Changesets. Do not hand-edit
CHANGELOG.md. - Node: 22 LTS, pinned by
.nvmrcandengines. - Exact package versions live in
package.json, workspace manifests, andpnpm-lock.yaml. Read those files instead of trusting stale docs.
- React + Vite + Tailwind v4 + CSS variables.
- State uses Zustand. Do not introduce Redux, Recoil, or MobX.
- Components use Radix primitives and custom shadcn-style wrappers in
packages/ui. - Icons use
lucide-react. - Forms use native
<form>andFormData. - Animations use Tailwind transitions. Do not introduce framer-motion or motion.
- App chrome must use
packages/uitokens. Artifact output may define its own visual system. - Sandbox preview remains Electron iframe
srcdocplus runtime tooling.
apps/
desktop/ # Electron app shell, main process, renderer
packages/
core/ # Agent orchestration, prompts, design tools
providers/ # pi integration and provider compatibility shims
runtime/ # Sandbox renderer and preview runtime
ui/ # Shared app UI tokens and components
artifacts/ # Artifact schemas and bundle formats
exporters/ # PDF / PPTX / ZIP exporters, lazy-loaded
templates/ # Built-in examples and starter templates
shared/ # Shared types, utils, schemas
docs/ # Mostly maintainer-local plans/research; many files are gitignored
examples/ # Public demo reproductions
- Read
AGENTS.mdorCLAUDE.mdfirst, depending on your agent runtime. - For non-trivial architecture or product work, also read
docs/VISION.md,docs/PRINCIPLES.md, anddocs/v0.2-plan.mdwhen they exist locally. - Use planning files in
.claude/workspace/or your agent's local workspace for tasks spanning more than five tool calls or more than three files. - Use git worktrees for parallel or unrelated feature work. Do not mix two unrelated branches in one checkout.
- Check
docs/RESEARCH_QUEUE.mdwhen it exists before touching sandbox, inline comments, tweaks, PPTX, pi capabilities, scaffolds, skills, or brand refs. - Keep edits scoped. Avoid drive-by refactors.
- Before adding a dependency, check license, install size, alternatives, and whether it can be a peer dep.
- Add or update Vitest coverage for feature work. Broaden tests when changing migrations, permissions, tool hooks, or shared contracts.
- Prefer manifest and switch logic over registries until two real callers need more.
- Comment only when the reason would surprise the next maintainer.
Open CoDesign uses one permission model with tiers:
- Tier 0: workspace-local reads/writes, simple file commands, and read-only git may run without interruption.
- Tier 1: installs, build commands, non-local network fetches, and cwd-external commands ask once and can be allowlisted.
- Tier 2: publishing, pushing, sudo, and high-blast-radius commands ask every time.
- Tier 3: destructive system commands,
curl | sh, and system-directory writes are blocked without override.
Do not hide blocked tool calls. Show the command, path, tier, and reason.
- Adding
node_modules, build outputs,.env*, generated release artifacts, or private local files to git. - Importing
@anthropic-ai/sdk,openai,@google/genai, or other provider SDKs in app code. - Writing tests that mock the LLM at the SDK level. Mock at the core or pi boundary.
- Adding tracking, analytics, account flows, cloud sync, or auto-update without explicit opt-in UX.
- Hard-coding user paths. Respect XDG, Electron
app.getPath(), and workspace roots. - Adding new SQLite-backed feature state for v0.2 session/design data.
- Introducing
projectas a product abstraction in v0.2. Multiple sessions can share a workspace, but the sidebar lists sessions. - Exposing session branching UI, undo/version rollback, MCP support, or community skill installation in v0.2 unless the plan changes.
- Using
console.*inapps/desktop/src/main/**,packages/core/**,packages/providers/**,packages/exporters/**, orpackages/shared/**. Use the project logger.
pnpm i
pnpm dev
pnpm test
pnpm test:e2e
pnpm lint
pnpm typecheck
pnpm build
pnpm changeset