The world's first open-source AI-native vector design tool.
Concurrent Agent Teams โข Design-as-Code โข Built-in MCP Server โข Multi-model Intelligence
English ยท ็ฎไฝไธญๆ ยท ็น้ซไธญๆ ยท ๆฅๆฌ่ช ยท ํ๊ตญ์ด ยท Franรงais ยท Espaรฑol ยท Deutsch ยท Portuguรชs ยท ะ ัััะบะธะน ยท เคนเคฟเคจเฅเคฆเฅ ยท Tรผrkรงe ยท เนเธเธข ยท Tiแบฟng Viแปt ยท Bahasa Indonesia
Click the image to watch the demo video
Note: There is another open-source project with the same name โ OpenPencil, focused on Figma-compatible visual design with real-time collaboration. This project focuses on AI-native design-to-code workflows.
|
Describe any UI in natural language. Watch it appear on the infinite canvas in real-time with streaming animation. Modify existing designs by selecting elements and chatting. |
The orchestrator decomposes complex pages into spatial sub-tasks. Multiple AI agents work on different sections simultaneously โ hero, features, footer โ all streaming in parallel with per-member canvas indicators. |
|
Automatically adapts to each model's capabilities. Claude gets full prompts with thinking; GPT-4o/Gemini disable thinking; smaller models (MiniMax, Qwen, Llama) get simplified prompts for reliable output. |
One-click install into Claude Code, Codex, OpenCode, Kiro, or Copilot CLIs. Design from your terminal โ read, create, and modify |
|
Built-in style guide library with tag-based fuzzy matching. Apply visual styles (glassmorphism, brutalist, retro, etc.) to AI-generated designs. MCP tools for external agent access. |
|
|
Web app + native desktop on macOS, Windows, and Linux โ one Rust core, a single self-contained binary, no browser engine. |
Control the design tool from your terminal. |
|
Export to React + Tailwind, HTML + CSS, Vue, Svelte, Flutter, SwiftUI, Jetpack Compose, React Native โ all from one |
|
|
Manage reusable UIKits with style switching and component composition. Import/export kits from |
macOS (Homebrew):
brew tap zseven-w/openpencil
brew install --cask openpencilWindows (Scoop):
scoop bucket add openpencil https://github.com/zseven-w/scoop-openpencil
scoop install openpencilLinux / Windows direct download: GitHub Releases โ .exe (Windows), .AppImage / .deb (Linux)
CLI (op):
brew install zseven-w/openpencil/opOr use the install script (macOS / Linux):
curl -fsSL https://raw.githubusercontent.com/ZSeven-W/openpencil/main/scripts/install-op.sh | bashTo allow the newest pre-release:
curl -fsSL https://raw.githubusercontent.com/ZSeven-W/openpencil/main/scripts/install-op.sh | OP_PRERELEASE=1 bashWindows PowerShell:
irm https://raw.githubusercontent.com/ZSeven-W/openpencil/main/scripts/install-op.ps1 | iexTo allow the newest pre-release:
$env:OP_PRERELEASE = "1"; irm https://raw.githubusercontent.com/ZSeven-W/openpencil/main/scripts/install-op.ps1 | iexgit clone --recurse-submodules https://github.com/ZSeven-W/openpencil.git
# Or already cloned โ sync first so stale submodule URLs pick up .gitmodules changes:
git submodule sync --recursive && git submodule update --init --recursiveThree submodules live under vendor/, all public and fetched over HTTPS (no SSH key needed): jian (GPU-Skia UI framework โ widgets/render/events), casement (winit fork), and agent (agent-rs โ cross-product Rust agent runtime, shared by OP + Zode). vendor/anthropic-agent-sdk is tracked in-tree, not a submodule.
# Web dev server (builds the CanvasKit wasm bundle, then runs the headless web host)
bash scripts/start-web-rust.shBrowser-entered built-in provider, image-generation, and Openverse credentials
are kept in same-origin localStorage
(openpencil-rust-web-credentials) by default,
separate from ordinary web preferences. A credential needed by an AI request is
sent with that request, but the daemon does not write the browser snapshot to
settings.json.
Private deployments can opt into server persistence with
OPENPENCIL_PERSIST_WEB_CREDENTIALS_SERVER=true. This setting is
deployment-wide; each accepted browser snapshot replaces the shared
browser-owned copy. Enable it only for a trusted, access-controlled deployment
with one active administrator profile, behind HTTPS. Turning the setting off
removes previously persisted browser-owned credentials at the next startup
while preserving operator-owned configuration. As with all localStorage,
same-origin scripts can read these values, so the web origin must be protected
from untrusted scripts and XSS. Before downgrading to a release that predates
this switch, turn it off and start the current release once to scrub the
browser-owned copy.
The web host supports built-in API-key agents only. CLI and ACP agents remain
native-only: they are not shown in the web model picker, stored in browser
credential snapshots, synchronized to the server, or exposed through web
connect routes. Browser requests to credential and AI endpoints allow
loopback/localhost origins by default. A public reverse proxy must separately set
OPENPENCIL_WEB_ALLOWED_ORIGINS to a comma-separated list of exact origins,
for example https://demo.openpencil.dev.
Server persistence does not permit browser-controlled requests to loopback,
private, link-local, metadata, or reserved provider endpoints. A trusted private
deployment that intentionally uses an internal provider must separately set
OPENPENCIL_WEB_AI_ENDPOINT_ALLOWLIST to a comma-separated list of exact URL
origins, for example http://127.0.0.1:11434,https://llm.internal.example.
Or run as a desktop app:
cargo run -p op-host-desktopPrerequisites: Rust (stable) to build the product. Bun >= 1.0 and Node.js >= 18 are only needed for the web SDK under
packages/.
Tagged Rust releases publish a single web-host image. The retired TypeScript images with bundled AI CLIs are no longer published.
| Image | Includes |
|---|---|
ghcr.io/zseven-w/openpencil-web:vX.Y.Z |
Rust web host, wasm bundle, and CanvasKit assets |
The web UI exposes built-in agent profiles only; Claude/Codex/OpenCode/Copilot CLI tooling is not bundled into Docker images.
Run:
VERSION="$(scripts/workspace-version.sh)"
docker run -d -p 3100:3100 "ghcr.io/zseven-w/openpencil-web:v${VERSION}"Then open http://localhost:3100/.
Build locally:
docker build -f Dockerfile.web-rust -t openpencil-web-rust .
docker run -p 3100:3100 openpencil-web-rustPrompt to UI
- Text-to-design โ describe a page, get it generated on canvas in real-time with SSE streaming animation
- Orchestrator โ decomposes complex pages into spatial sub-tasks for parallel generation
- Agent Teams โ concurrent team members with delegate tool, per-member canvas indicators, and fallback strategies
- Design modification โ select elements, then describe changes in natural language
- Vision input โ attach screenshots or mockups for reference-based design
- Style Guides โ apply visual styles (glassmorphism, brutalist, retro, etc.) via tag-based fuzzy matching
- Anti-slop โ cross-generation diversity tracking to avoid repetitive AI output
Multi-Agent Support
| Agent | Setup |
|---|---|
| Built-in (9+ providers) | Select from provider presets with region switcher โ Anthropic, OpenAI, Google, DeepSeek, and more |
| Claude Code | No config โ uses Claude Agent SDK with local OAuth |
| Codex CLI | Connect in Agent Settings (Cmd+,) |
| OpenCode | Connect in Agent Settings (Cmd+,) |
| GitHub Copilot | copilot login then connect in Agent Settings (Cmd+,) |
Model Capability Profiles โ automatically adapts prompts, thinking mode, and timeouts per model tier. Full-tier models (Claude) get complete prompts; standard-tier (GPT-4o, Gemini, DeepSeek) disable thinking; basic-tier (MiniMax, Qwen, Llama, Mistral) get simplified nested-JSON prompts for maximum reliability.
i18n โ Full interface localization in 15 languages: English, ็ฎไฝไธญๆ, ็น้ซไธญๆ, ๆฅๆฌ่ช, ํ๊ตญ์ด, Franรงais, Espaรฑol, Deutsch, Portuguรชs, ะ ัััะบะธะน, เคนเคฟเคจเฅเคฆเฅ, Tรผrkรงe, เนเธเธข, Tiแบฟng Viแปt, Bahasa Indonesia.
MCP Server
- Built-in MCP server (
op-mcpcrate) โ one-click install into Claude Code / Codex / OpenCode / Kiro / Copilot CLIs - No Node.js required โ stdio transport via the desktop binary (
--mcp <path>), plus a live HTTP endpoint (127.0.0.1:<port>/mcp) from the running app - Design automation from terminal: read, create, and modify
.opfiles via any MCP-compatible agent - Layered design workflow โ
design_skeletonโdesign_contentโdesign_refinefor higher-fidelity multi-section designs - Segmented prompt retrieval โ load only the design knowledge you need (schema, layout, roles, icons, planning, etc.)
- Style guide tools โ
get_style_guide_tagsandget_style_guidefor applying visual styles via MCP - Multi-page support โ create, rename, reorder, and duplicate pages via MCP tools
Code Generation
- React + Tailwind CSS, HTML + CSS, CSS Variables
- Vue, Svelte, Flutter, SwiftUI, Jetpack Compose, React Native
Install via Homebrew or the install script, then control the design tool from your terminal:
brew install zseven-w/openpencil/opcurl -fsSL https://raw.githubusercontent.com/ZSeven-W/openpencil/main/scripts/install-op.sh | bashcurl -fsSL https://raw.githubusercontent.com/ZSeven-W/openpencil/main/scripts/install-op.sh | OP_PRERELEASE=1 bashirm https://raw.githubusercontent.com/ZSeven-W/openpencil/main/scripts/install-op.ps1 | iex$env:OP_PRERELEASE = "1"; irm https://raw.githubusercontent.com/ZSeven-W/openpencil/main/scripts/install-op.ps1 | iexop start # Launch desktop app
op start --headless --file design.op # Launch headless file-backed server
op design @landing.txt # Batch design from file
op design @ui.js # Sandboxed JavaScript with loops
op insert '{"type":"rectangle"}' # Insert a node
op import:figma design.fig # Import Figma file
cat design.dsl | op design - # Pipe from stdinSupports three input methods: inline string, @filepath (read from file), or - (read from stdin). Works with the desktop app, web server, or headless file-backed server. See the CLI command reference for all commands.
LLM Skill โ install the OpenPencil Skill plugin to teach AI agents how to design with op. Run op install for detected agents, or target one explicitly with op install --target codex.
Canvas & Drawing
- Infinite canvas with pan, zoom, smart alignment guides, and snapping
- Rectangle, Ellipse, Line, Polygon, Pen (Bezier), Frame, Text
- Boolean operations โ union, subtract, intersect with contextual toolbar
- Icon picker (Iconify) and image import (PNG/JPEG/SVG/WebP/GIF)
- Auto-layout โ vertical/horizontal with gap, padding, justify, align
- Multi-page documents with tab navigation
Design System
- Design variables โ color, number, string tokens with
$variablereferences - Multi-theme support โ multiple axes, each with variants (Light/Dark, Compact/Comfortable)
- Component system โ reusable components with instances and overrides
- CSS sync โ auto-generated custom properties,
var(--name)in code output - Reusable UIKits โ import/export component kits from
.penfiles
AI & Agents
- Prompt-to-canvas with streaming generation and orchestrator-driven spatial decomposition
- Concurrent Agent Teams โ multiple designers work on different sections in parallel with per-member canvas indicators
- Layered workflow โ
design_skeletonโdesign_contentโdesign_refinewith focused prompts per phase - Style Guides โ 50+ built-in styles (glassmorphism, brutalist, retro, etc.) with tag-based fuzzy matching, wired into planning and generation
- Multi-model capability profiles โ auto-adapts thinking mode, effort, and prompt shape per model tier
- Built-in Rust agent runtime + Anthropic, Claude Agent SDK, OpenCode, Codex, Copilot, Google Gemini API providers
- Anthropic-format passthrough for Chinese LLM providers โ Kimi, Zhipu, GLM, DouBao, Ark, Bailian/DashScope, ModelScope, Coding Plans
Git Integration
- Clone wizard with SSH / HTTPS auth and SSH key management
- Branch picker โ create, switch, delete, merge, all from the git panel
- Pull / push cascades with auth retry and non-fast-forward handling
- Folder-mode three-way merge with on-disk
MERGE_HEADstate tracking - Conflict panel with per-node / per-field three-way cards, inline JSON editor, bulk actions, and inline diff block
- Remote settings and SSH keys UI; 15-locale i18n across the whole Git surface
Export
- Canvas export โ PNG, JPEG, WEBP, PDF (
Cmd+Shift+P) - Code export โ React + Tailwind, HTML + CSS, Vue, Svelte, Flutter, SwiftUI, Jetpack Compose, React Native
- Incremental MCP codegen pipeline โ
codegen_plan,codegen_submit_chunk,codegen_assemble,codegen_clean
Figma Import
- Import
.figfiles with layout, fills, strokes, effects, text, images, and vectors preserved
Desktop App
- Native macOS, Windows, and Linux โ a single self-contained binary (winit + GPU Skia, no Electron)
.opfile association โ double-click to open, single-instance lock- Background update check against GitHub Releases
- Native application menu with Save As, Open Recent, and an unsaved-changes dialog on close
- Recent files persistence
| Core | Rust workspace (crates/) โ editor state, widgets, hosts, MCP, AI, codegen |
| Rendering | GPU Skia everywhere โ skia-safe (GL) on native, CanvasKit (WASM/WebGL2) in the browser |
| UI framework | jian โ vendored pure-Rust GPU-Skia UI framework: widgets, layout, events, hot reload (vendor/jian) |
| Windowing | winit (vendored casement fork) |
| Desktop | Native binary openpencil-desktop โ no browser engine |
| Web SDK | op-web-sdk + React 19 / Vue 3 adapters โ read-only .op viewer (TypeScript) |
| CLI | op โ terminal control, batch design DSL |
| AI | Built-in Rust agent runtime ยท Anthropic SDK ยท Claude Agent SDK ยท OpenCode SDK ยท Copilot SDK |
| Lint | clippy ยท rustfmt (Rust) ยท oxlint ยท oxfmt (web SDK) |
| File format | .op โ JSON-based, human-readable, Git-friendly |
OpenPencil is part of a family of pure-Rust, AI-native tools from ZSeven-W. They compose: jian renders OpenPencil, agent-rs runs its agents, noema remembers, and zode designs from the terminal.
| Project | What it is |
|---|---|
Open-source, AI-native coding assistant for your terminal โ a fast Rust TUI (ratatui) that reads your code, runs commands, searches files, and manages git. Drives OpenPencil over MCP. |
|
| agent-rs | A pure-Rust async runtime for shipping LLM agents โ multi-provider, tool-capable end-to-end, structured permissions, real MCP, zero unsafe. Powers OpenPencil's built-in agent runtime (vendor/agent) and Zode. |
Pure-Rust, GPU-Skia UI framework โ widgets, layout, events, and hot reload in one stack. Turns a declarative .op document into a native, AI-controllable app with no JS runtime, no DOM, no Electron. OpenPencil's UI framework (vendor/jian). |
|
noema |
Local-first, non-vector memory system for coding agents. Durable memory as inspectable files, a review queue for new entries, and lexical (embedding-free) recall โ works across Zode, Codex, Claude Code, and MCP runtimes. |
OpenPencil was rewritten from the ground up in Rust (#129). The rewrite is complete โ the TypeScript + Electron editor was retired at v0.7.5, and the Rust workspace in this repo is the product: one native core that is dramatically smaller and faster, and runs on more platforms from a single codebase.
TypeScript + Electron (retired, v0.7.5) |
Rust (today) | |
|---|---|---|
| Desktop runtime | Electron โ bundles Chromium + Node.js | Native window (winit + GPU Skia), no browser engine |
| Desktop footprint | Full Chromium runtime per install | Single self-contained binary โ 55.5 MB |
| Web payload | JS + WASM bundle | 8.2 MB wasm / 2.18 MB gzip over the wire |
| Rendering | CanvasKit/Skia on web | One GPU-accelerated Skia backend on every target |
| Memory | JavaScript GC pauses | No GC โ Rust ownership, predictable latency |
| Codebase | Web stack + Electron | One Rust workspace: editor ยท CLI ยท MCP ยท AI ยท codegen ยท Figma ยท Git |
| Targets | Web + desktop, two separate stacks | Desktop (macOS/Win/Linux) ยท mobile (iOS/Android) ยท browser โ one core |
Measured improvements
- Tiny footprint โ the whole desktop app is one 55.5 MB native binary instead of a bundled browser engine plus a Node runtime. The web build is 8.2 MB raw / 2.18 MB gzip after splitting the icon catalog (โ48% over the wire).
- Scales to large documents โ a 10,000-node live canvas (nested auto-layout, four levels deep) writes, reads, and snapshots layout with no panics and ~0% idle CPU; a full layout snapshot of all 10k nodes returns in ~0.68 s.
- Fast interaction โ pan/zoom no longer re-serializes the document every frame (a single hot-path fix cut wheel-zoom CPU from ~69% to ~0%); drags patch the scene incrementally, text measurement is cached, and repaints coalesce to one per frame.
- One core, every screen โ the same editor state and the same render backend compile to native desktop, mobile, and the browser via WASM โ no parallel reimplementations to keep in sync.
- GPU Skia everywhere โ native renders through
skia-safeon a GL context; the browser renders through CanvasKit on WebGL2 โ the same drawing code, the same output. - Native accessibility โ AccessKit on macOS, Windows, and Linux, plus a DOM mirror on web, instead of leaning on a browser's a11y tree.
- One type-checked workspace โ the MCP host, CLI, AI providers, code generation, Figma import, and Git integration all live in a single Rust workspace, with
cargo-denysupply-chain gating in CI.
Status: the TypeScript editor was retired at
v0.7.5and lives only in git history; this repository is the Rust workspace. The Rust product is under active development (see the Roadmap below).
openpencil/
โโโ crates/ Rust workspace โ the product
โ โโโ op-editor-core/ Canonical `.op` (PenDocument) editor state + EditorCommand + design variables
โ โโโ op-editor-ui/ Platform-free widgets + RenderBackend facade (wasm32-clean)
โ โโโ op-editor-host-core/ Transport-free host state machines shared by all hosts
โ โโโ op-host-native/ Native host lib โ winit + skia-safe GL (desktop + mobile)
โ โโโ op-host-web/ Browser bundle โ wasm32 cdylib, CanvasKit renderer
โ โโโ op-host-desktop/ Desktop binary `openpencil-desktop`; also the `--serve-web` daemon
โ โโโ op-host-services/ Headless serve-web / MCP daemon lib
โ โโโ op-host-web-server/ Thin GL-free web-server binary
โ โโโ op-cli/ CLI tool โ `op` command
โ โโโ op-mcp/ MCP server โ tools, batch design, layered workflow
โ โโโ op-ai/ AI providers, chat runtime, streaming
โ โโโ op-ai-skills/ AI prompt skill engine (phase-driven prompt loading)
โ โโโ op-orchestrator/ Concurrent agent-team orchestration
โ โโโ op-codegen/ Code generators (React, HTML, Vue, Flutter, ...)
โ โโโ op-figma/ Figma .fig file parser and converter
โ โโโ op-git/ Git integration โ clone, branch, push/pull, merge
โ โโโ ... op-opmerge / op-pen-loader / op-design-lint / op-i18n /
โ op-config-store / op-process-io / op-acp / op-smoke / ...
โโโ packages/ Web SDK workspace (Bun)
โ โโโ op-web-sdk/ Read-only `.op` web viewer SDK (wraps the wasm bundle)
โ โโโ op-web-sdk-react/ React 19 adapter
โ โโโ op-web-sdk-vue/ Vue 3 adapter
โโโ vendor/ Vendored subsystems (git submodules)
โ โโโ jian/ GPU-Skia UI framework โ widgets/render/events
โ โโโ casement/ winit fork
โ โโโ agent/ Cross-product Rust agent runtime (agent-rs)
โโโ .githooks/ Pre-commit version drift check
| Key | Action | Key | Action | |
|---|---|---|---|---|
V |
Select | Cmd+S |
Save | |
R |
Rectangle | Cmd+Z |
Undo | |
O |
Ellipse | Cmd+Shift+Z |
Redo | |
L |
Line | Cmd+C/X/V/D |
Copy/Cut/Paste/Duplicate | |
T |
Text | Cmd+G |
Group | |
F |
Frame | Cmd+Shift+G |
Ungroup | |
P |
Pen tool | Cmd+Shift+P |
Export (PNG/JPG/WEBP/PDF) | |
H |
Hand (pan) | Cmd+Shift+C |
Code panel | |
Del |
Delete | Cmd+Shift+V |
Variables panel | |
[ / ] |
Reorder | Cmd+J |
AI chat | |
| Arrows | Nudge 1px | Cmd+, |
Agent settings | |
Cmd+Alt+U |
Boolean union | Cmd+Alt+S |
Boolean subtract | |
Cmd+Alt+I |
Boolean intersect | Cmd+Shift+S |
Save As |
# Product (Rust โ run from the repo root)
cargo build --workspace # Build all crates (add --release for prod)
cargo test --workspace # Run all tests
cargo check --workspace # Type check
cargo clippy --workspace --all-targets -- -D warnings # Lint
cargo fmt --all # Format
bash scripts/start-web-rust.sh # Web dev server (wasm bundle + headless host)
cargo run -p op-host-desktop # Desktop app (binary: openpencil-desktop)
cargo run -p op-cli -- <args> # CLI (binary: op)
# Web SDK / JS tooling (run from packages/)
cd packages && bun run lint # Lint the web SDK (oxlint); also: bun run format
cd packages && bun run generate-iconify-catalog # Regenerate the Rust icon catalog assets
# Version synchronization (run from repository root)
scripts/sync-version.sh # Sync all managed versions from root Cargo.toml
tools/check-version-sync.sh # Verify all managed versions match root Cargo.tomlThe Rust-ification is complete โ the Rust workspace is the product. Kickoff spec: openpencil-docs/superpowers/specs/2026-05-02-rust-ification-kickoff.md (v7 FROZEN).
# Install Rust toolchain (rust-toolchain.toml auto-pins 1.94)
rustup toolchain install 1.94
rustup target add wasm32-unknown-unknown
# build / test / lint
cargo check --workspace
cargo test --workspace
cargo clippy --workspace --all-targets -- -D warnings
cargo check --target wasm32-unknown-unknown -p op-host-web --no-default-features --features web # kickoff ยง1.2 wasm32 invariant
cargo deny check && cargo deny --target wasm32-unknown-unknown check bans # cargo-deny (native + wasm32 bans; CI uses cargo-deny-action@v2)Entry crates (crates/ โ build targets):
| Crate | Category | wasm32 |
|---|---|---|
| op-host-web | Browser bundle entry โ wasm32 cdylib, renders via CanvasKit | โ |
| op-host-native | Native host lib โ WidgetHostNative + skia-safe GL backend (desktop + mobile) | โ (native only) |
| op-host-desktop | Desktop binary openpencil-desktop (winit + skia-safe GL) โ also the --serve-web daemon that hosts the web bundle |
โ (native only) |
| op-cli | op command-line tool |
โ (native only) |
Shared library crates: op-editor-core (canonical .op state), op-editor-ui (platform-free widgets + RenderBackend), op-editor-host-core (transport-free host state machines), op-mcp, op-ai, op-ai-skills, op-codegen, op-orchestrator, op-figma, op-git, op-opmerge, op-pen-loader, op-design-lint, op-config-store, op-process-io, op-acp, op-i18n, op-rpc-transport โ plus op-smoke (headless design-turn test runner). The browser bundle renders through the official CanvasKit skia WASM (loaded separately), so the retired skia-safe-op wasm fork + wasm-libc-shim no longer exist.
Submodule: vendor/agent โ github.com/ZSeven-W/agent-rs (cross-product Rust agent runtime).
Contributions are welcome! See CLAUDE.md for architecture details and code style.
- Fork and clone
- Enable the version drift check:
git config core.hooksPath .githooks - Create a branch:
git checkout -b feat/my-feature - Run checks:
cargo test --workspace && cargo clippy --workspace --all-targets -- -D warnings - Commit with Conventional Commits:
feat(canvas): add rotation snapping - Open a PR against
main
- Design variables & tokens with CSS sync
- Component system (instances & overrides)
- AI design generation with orchestrator
- MCP server integration with layered design workflow
- Multi-page support
- Figma
.figimport - Boolean operations (union, subtract, intersect)
- Multi-model capability profiles
- Cargo workspace with reusable Rust crates and web SDK packages
- Rust desktop & web editor
- CLI tool (
op) for terminal control - Built-in Rust agent runtime with multi-provider support
- i18n โ 15 languages
- Wasm-backed viewer SDKs for JavaScript, React & Vue
- Style Guides with tag-based matching and MCP tools
- Concurrent Agent Teams with delegation and canvas indicators
- Git integration โ clone, branch, push/pull, folder-mode three-way merge
- Canvas export (SVG / PNG / JPEG / WEBP / PDF)
- Collaborative editing
- Plugin system
OpenPencil is free and open-source. Development is funded by people who find it useful โ thank you for keeping the canvas open.
Thanks to MrQyun โ want your name here too? Become a sponsor โ
Recognized community: LINUX DO
We are grateful to the upstream maintainers whose work OpenPencil builds on. These copies are maintained only for OpenPencil-specific integration needs:
- casement โ forked from winit.
- anthropic-agent-sdk โ vendored from bartolli/anthropic-agent-sdk and maintained as a local fork.
Each project remains subject to its respective upstream license.
MIT โ Copyright (c) 2026 ZSeven-W
