Skip to content

Hesper-Labs/architect

Architect

Architect

Design specs for AI agents.
An open-source spec authoring studio that turns scattered ideas into the structured project documentation Claude Code, Cursor, Aider, and other AI coding agents need before they can ship code.

A Hesper Labs product.

MIT License Status Tests Built with Browsers

Features · Quick start · Using Claude · Deploy · Documentation · Architecture


Architect editor

Why Architect?

AI coding agents are dramatically more useful when given clean, structured project specs — features, data models, API endpoints, user stories, architecture diagrams, decision records — instead of a vague prompt.

Architect helps you author that spec visually, validate it, and ship it to your AI agent of choice. Local-first, BYOK, no servers, no telemetry.

Without Architect With Architect
Paste a vague description into Claude → hope for the best Author a structured spec, validate gaps, push as CLAUDE.md to your repo
Re-explain context every conversation One canonical artifact every agent reads from
Forget the architecture decisions you made last week ADR + Risk register kept alongside the spec
Diagrams in Notion, models in Linear, decisions in a Slack thread All in one app, exportable as Markdown / JSON / Mermaid

Features

Spec editor + architecture canvas

Editor with canvas + side panel

Left: tool rail with the diagram canvas tools, diagram-type switcher, and modal launchers (history, design tokens, handoff, Claude Code chat). Center: the architecture canvas with drag-and-drop nodes, six diagram types (system / flow / sequence / ER / state / tree), free-form sticky notes, and click-to-connect edges. Right: collapsible spec panel with three tabs — Spec for the structured form, Diagram for node properties, AI for inline Claude review.

First-run welcome wizard

Welcome wizard hero step

Welcome wizard features step

Four-step intro for new users: hero / feature tour / BYOK Claude key setup / "let's create your first project" CTA. Shows once, never again — first-run state lives in localStorage.

New project wizard

New project wizard

Three flows: Blank (with architecture preset — monolith / microservices / serverless / mobile-first / AI agent), From template (six bundled spec templates), Import (.architect.json file you exported earlier). Auto-suggests project name and tagline from the chosen preset.

Project dashboard

Dashboard with project list

Grid or list view, search, sort by modified / name / created, tabs for All / Recent / Demo, per-project menu (rename / export / delete), inline JSON import / export. Pulse demo project loads on first run; safe to delete once you find your footing.

Handoff package — ADR + Risk register

Handoff package

Architecture Decision Records (status, context, decision, consequences, alternatives, deciders) and a Risk Register (likelihood × impact severity, owner, mitigation, status) — both editable, both stored alongside the spec, both flow into the Markdown export.

Export anywhere

Export modal

Five tabs: CLAUDE.md (Markdown for Claude Code), Mermaid (for any agent or doc that renders Mermaid), JSON (machine-readable), XML (for agents that prefer it), ASCII (text fallback for environments without Mermaid), Validate (score + issues with concrete fixes).

Five output paths from the export modal:

  • Download — save as CLAUDE.md, .mmd, .json, .xml, or .txt
  • Copy — clipboard
  • Open in Claude Code — downloads CLAUDE.md and copies a cat > CLAUDE.md … claude shell snippet to start a Claude Code session
  • Open in Claude.ai — copies the spec and opens a fresh claude.ai/new chat in a new tab
  • Push to GitHub — real PAT-based REST flow that creates a feature branch, commits CLAUDE.md, and (optionally) opens a PR against your default branch

AI co-architect (BYOK)

Claude Code chat drawer

Full-context drawer that knows your spec, canvas, and diagram type. Suggests architecture, drafts components, validates designs. Apply suggestions to the canvas with one click via inline [TOOL] blocks. Falls back to canned sample responses when no API key is configured — the panels never look broken.

Command palette

Command palette

⌘K (or Ctrl K) anywhere — fuzzy search across navigate / actions / recent projects. Keyboard-only flow: arrow keys, Enter, Escape.

Settings — every integration in one place

Settings page

BYOK Anthropic API key, GitHub PAT, export defaults, theme. Nothing leaves your browser except a key going to api.anthropic.com or api.github.com when you explicitly use those features.

Light theme

Dashboard, light theme

Editor, light theme

Toggle from the Tweaks panel (bottom-right). Persisted, applies app-wide.

Quick start

git clone https://github.com/Hesper-Labs/architect.git
cd architect
npm install
npm run dev

Open the URL Vite prints (typically http://localhost:5173). The Welcome wizard will guide you through your first project.

Available scripts

Command What it does
npm run dev Vite dev server with hot-module reload
npm run build Production bundle in dist/
npm run preview Serve the production build locally
npm test Run the 95-test Vitest suite
npm run lint ESLint check
npm run format Prettier format
npm run check Run lint + format check + test + build (one-shot)
npm run screenshots Regenerate docs/screenshots/*.png via Playwright (needs dev server running)

Using Claude

Architect supports three handoff paths to Claude — pick whichever your account has:

You have Path What happens
Anthropic API key Settings → Claude API → paste key In-app AI panels (chat, audit, suggestions) call api.anthropic.com directly with your key
claude.ai subscription Export → Open in Claude.ai Spec is copied to clipboard, a new claude.ai/new chat opens — paste with ⌘V
Claude Code CLI Export → Open in Claude Code CLAUDE.md is downloaded and a shell snippet is copied to your clipboard — paste in your terminal or drop the file into your project root and run claude

The Anthropic API key is stored only in localStorage and only sent to api.anthropic.com. See docs/byok-claude.md for details and SECURITY.md for the threat model.

Push to GitHub

Export modal

Settings → GitHub → paste a fine-grained PAT with Contents: read+write and Pull requests: read+write. From the Export modal, hit Push to GitHub: Architect resolves the default branch, creates a feature branch, commits CLAUDE.md, and opens a PR. Real REST calls, no proxy. See docs/github-push.md.

Deploy your own

Architect is a static site — fork it and host anywhere:

Host How
Vercel Import the repo → it auto-detects Vite and ships
Netlify Connect the repo — works out of the box
GitHub Pages npm run build then serve dist/ from the gh-pages branch
Self-hosted Any static file server (Caddy / Nginx / S3+CloudFront / Cloudflare R2)

The vercel.json at the repo root preconfigures SPA rewrites and immutable asset caching.

Tech

  • React 18 + Vite 5
  • Zustand for state, StorageAdapter for swappable persistence
  • JSDoc for type hints (no TypeScript build step)
  • Vitest + jsdom + @testing-library/react for the 95-test suite
  • Playwright for automated screenshots
  • ESLint flat config + Prettier + Husky + lint-staged
  • GitHub Actions CI matrix on Node 20 + 22
  • Dependabot weekly
  • ~75 KB of hand-crafted CSS, no UI framework

See ARCHITECTURE.md for the codebase walkthrough and docs/ for end-user documentation.

Browser support

Modern evergreen browsers released in the last ~18 months:

Browser Minimum
Chrome / Edge 110+
Safari 16+
Firefox 110+
iOS Safari 16+
Chrome Android 110+

The build targets ES2020 and uses color-mix(), :has(), and backdrop-filter. Older browsers may degrade gracefully but aren't supported.

What's intentionally out of scope

Architect is local-first by design. The following won't ship without forking and adding a backend:

  • Multi-user real-time collaboration
  • SSO / SAML / SCIM
  • Audit logs
  • Role-based permissions
  • Hosted SLA

The StorageAdapter interface in src/lib/storage/ is built so a fork can drop in Supabase, Postgres, IndexedDB, or a custom HTTP backend without touching anything else. See docs/extending.md.

Contributing

PRs welcome — see CONTRIBUTING.md. By participating you agree to the Code of Conduct. Security issues go through the private disclosure process.

License

MIT — see LICENSE.


Built with care by Hesper Labs and the open-source community.

About

Open-source spec authoring studio for AI coding agents. Bring your own Claude key, draft a Markdown spec + architecture diagram in the browser, hand off to Claude Code.

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors