* feat(items): one shared parse for a --field key=value entry (BUG-2870) Six sites parsed that entry independently — item create, list, update, move and copy in cmd/pad, plus ingestFieldKVP on the remote /mcp door — in four spellings, and they disagreed about what it meant. The CLI sites used both halves verbatim, so `--field " effort=l"` stored an undeclared field named " effort" and left the declared `effort` untouched; the remote door trimmed both halves and wrote `effort`. Same call, two stored keys, decided by which transport the caller was on. This is the helper only; the call sites move over in the commits that follow. Two rules, deliberately asymmetric, per the day-60 ruling: - a KEY whose trimmed form differs from what was written is REFUSED at every door, rather than silently retargeted to a different field; - a VALUE is carried VERBATIM at every door, because trimming reinterprets a caller's bytes and on a text field the space is content. A padded value against a typed field is refused one layer down by validation, naming the field — measured, not assumed. ErrFieldEntryMalformed is returned rather than handled because the six sites deliberately disagree about a malformed entry (four skip it, copy hard-errors) and unifying that is a separate decision. Claude-Session: https://claude.ai/code/session_01HeChkgZVYb3NTgTcckF5KR * fix(cli,mcp): all six --field parse sites go through the one helper (BUG-2870) item create, list, update, move and copy in cmd/pad, plus ingestFieldKVP on the remote /mcp door, now call items.SplitFieldEntry instead of each rolling its own split. A padded key is refused at every door; a value reaches every door verbatim. Two sites keep something specific to them, both documented in place: - `item list` is a READ filter, and it takes the same key rule deliberately: a padded key there filters on a field nobody declared and returns empty, which is indistinguishable from "no rows match". - `item move` gets KEY normalisation only. Its values stay strings because the server types a declared field on that path too, so a clean `--field n=3` already stores the number 3 — measured before the change. Each site keeps its historical disposition toward a MALFORMED entry (four skip silently, copy hard-errors), which is why the helper classifies that case rather than deciding it. NOT YET EVIDENCE: ./internal/mcp, ./cmd/pad and ./internal/items all pass, and that green does not show the divergence closed — the three BUG-2850 pinned tests exercise the catalog conflict pass, which never reaches ingestFieldKVP. The door-level test and the re-grounding of that pass are the next commits. Claude-Session: https://claude.ai/code/session_01HeChkgZVYb3NTgTcckF5KR * test(cli,mcp): pin the door-parity claim at both doors (BUG-2870) Nothing in the suite asserted what the remote door STORED for a padded entry — the three BUG-2850 tests that cite its trimming all exercise the catalog conflict pass, which never reaches ingestFieldKVP. So the previous commit's green was not evidence for the thing it changed. Three files now hold the claim: internal/items pins the rule, internal/mcp pins the remote door, cmd/pad pins the CLI door, and each cites the other two. Padded key refused at both; padded value carried verbatim at both; a refusal aborts the call rather than dropping one entry, and on the CLI it happens before any request reaches the server. Claude-Session: https://claude.ai/code/session_01HeChkgZVYb3NTgTcckF5KR * fix(mcp): re-ground the conflict pass on the new door behaviour (BUG-2870) The pass's rules were derived from ingestFieldKVP trimming, so changing the door without changing the layer built on it would have been the same one-door lapse a level up. - parseFieldArray splits through items.SplitFieldEntry: a padded key is REFUSED before dispatch on both transports, and values are indexed RAW, because raw is now what both doors write. - Both comparison sites compare raw for the same reason. The round-19 "COMPARED TRIMMED" rule is superseded and its comment says so. - detectFieldConflicts PROPAGATES the parse refusal instead of returning nil. It swallowed it as "the caller owns this error surface", which was true when the only possible error was a shape error — reshapeItemFields returns early with no `fields` object, so on the no-`fields` path (this bug's path) nobody owned it and a padded entry turned back into a success. - A padded entry is refused in the pass rather than skipped. Skipping dropped it from conflict detection entirely, turning four existing refusals into successes. The last two were caught by the BUG-2850 tests, not by reasoning: the first shape of this commit passed a full package build and turned four guards off. Seven tests still fail. They assert the OLD door behaviour and are the specification being changed; each gets read on its own next, and is either kept because the behaviour survives or replaced by a test stating the new behaviour that cites the old name. Claude-Session: https://claude.ai/code/session_01HeChkgZVYb3NTgTcckF5KR * test(mcp): restate the seven BUG-2850 pins on the new rule (BUG-2870) Each was read on its own and either kept or replaced; every replacement names the test it replaces and why the old assertion was right at the time, so the deletion is traceable rather than a green that appeared. - padded value is not a conflict → IS a disagreement now that no door trims (" done" and "done" are two values), with an equal-values control leg. - padded entries still caught (hierarchy) → refused EARLIER, by the padded-key rule, before the alias pass observes both keys. The alias guard keeps its three unpadded cases, which is what stops this being a hole. - PaddedEqualDuplicateIsCanonicalized → IsRefused, plus a canonical control that still emits --field exactly once. - MixedCanonicalAndPaddedDuplicatesCollapse → Refused. The round-8 finding survives: one canonical entry still does not make its padded sibling harmless, it is refused rather than swallowed. - PaddedEntryAloneIsUntouched → IsRefused. That test pinned a DEFERRAL, in its own words "BUG-2870's business, not this PR's". This is that business. - "fields carries the key — canonicalized, so accepted" → still refused, since nothing canonicalizes now; the per-key question it defended is still tested by the two legs beside it, and a canonical control was added. - ReEmittedValueKeepsItsWhitespace → the re-emission path is gone, so it becomes a refusal test that also asserts the ADVISED form is accepted with its value untouched. The property it defended is pinned at both doors. Claude-Session: https://claude.ai/code/session_01HeChkgZVYb3NTgTcckF5KR * test(server): pin that a move override is typed server-side (BUG-2870) The fact the ruling turned on, and the easiest one in this unit to lose: it is invisible from cmd/pad, where moveCmd plainly sends a string. - a declared number field given the STRING "3" through field_overrides ends up as the NUMBER 3, which is why move needs the shared KEY parse and no client-side typing; - a padded " 3" is REFUSED with a 400 and the item does not move, which is the answer the remote door will now give too instead of trimming and succeeding. t.Parallel per CONVE-2086 — both build their own server through testServer, so each has its own database, limiter and bus. Claude-Session: https://claude.ai/code/session_01HeChkgZVYb3NTgTcckF5KR * chore(mcp): bump tool surface to 0.30 and sync the docs the guards enforce (BUG-2870) Claude-Session: https://claude.ai/code/session_01HeChkgZVYb3NTgTcckF5KR * refactor(mcp): remove the canonicalization the door change made unreachable (BUG-2870) Two mechanisms existed to make a padded entry reach both doors as the same write: the nonCanonical conflict guard (round 16) and the re-emission path that rewrote a padded entry to canonical form (rounds 7/8). Both are dead now — items.SplitFieldEntry refuses a padded key, so every entry that parses satisfies `entry == key + "=" + value` BY CONSTRUCTION. Removing each changed no test. That is consistent with "dead" and with "untested" alike, so the construction argument above is what settles it — recorded in the comments that replace them, along with what the removed guard was defending and where that premise is enforced now. Rewriting a caller's key was also the behaviour this bug is about, applied by us rather than by a door: canonicalization silently changed the key the caller wrote. Refusing says so instead. Claude-Session: https://claude.ai/code/session_01HeChkgZVYb3NTgTcckF5KR * docs(mcp): put the trimming narrations in the past tense (BUG-2870, CONVE-23) Six comments described the old door behaviour in the present tense ("HTTP trims and writes effort"), which reads as a claim about the code as it stands. The rounds they narrate still explain why the surrounding rules exist, so they are re-tensed rather than deleted. Two references were checked and left alone because they are still true: ingestFieldKVP does still store every field value as a STRING (coerce.go's BUG-2850 note, and the github_pr hint in dispatch_http.go). This change stopped it TRIMMING, not stringifying. Claude-Session: https://claude.ai/code/session_01HeChkgZVYb3NTgTcckF5KR * docs: sync CLAUDE.md to tool surface 0.30 (BUG-2870) The drift guards cover instructions.md and README.md but not this file, and its own 0.27 entry records the consequence: 'This entry was missing from CLAUDE.md — the 0.27 unit swept instructions.md and README.md and not this file.' The unit that makes a version line stale is the unit that owes it. Both markers updated, and the entry states the two behaviour changes in the terms they were ruled: /mcp refuses what it silently accepted, and the swallowed parseFieldArray refusal that was landing four refusals as successes on the no-fields path. Claude-Session: https://claude.ai/code/session_01HeChkgZVYb3NTgTcckF5KR * fix(mcp): finish the removal, and correct a claim I made twice (BUG-2870) Codex round 1: no P1/P2, two nits, both real. 1. The re-emission removal was incomplete. `reEmitFields` and the branch that appended its entries survived with nothing populating the map, and two comments still described canonical re-emission as something this code does. Unreachable, but my own commit message had said the path was removed, so the code contradicted the claim. Removed, and the round-16/17 paragraphs that decided WHEN to canonicalize go with it — they answered a question that no longer arises. 2. "The only behaviour change is /mcp refusing what it silently accepted" is WRONG, and it was in version.go, README.md and CLAUDE.md. Every door refuses a padded key now; they were merely accepting it differently — /mcp trimmed it and wrote the declared field, the CLI stored a ghost field beside it. What is /mcp-only is the VALUE half. Corrected in all three, with the correction itself recorded in the version.go entry so the next reader sees the claim was checked rather than a sentence that quietly changed shape. Claude-Session: https://claude.ai/code/session_01HeChkgZVYb3NTgTcckF5KR * docs(mcp): rename the predicate to the question it asks (BUG-2870) Codex round 2: no P1/P2, three nits, all naming and prose. - `canonicalized` is renamed `coveredByFieldsObject`. Nothing canonicalizes anything any more, and the only thing that predicate ever asked was whether the `fields` object carries THIS key — it kept the old name only because the guard it used to feed had been removed a commit earlier. - parseFieldKVP's doc said invalid entries are skipped silently. True of a MALFORMED entry, false of a padded key, which now aborts the call. - Three test comments still described re-emission as live, and version.go described this door's trimming in the present tense. Nothing in these two rounds was a defect in the change itself; both rounds found prose describing a version of the code that stopped existing partway through the unit, which is the failure mode a re-grounding pass invites. Claude-Session: https://claude.ai/code/session_01HeChkgZVYb3NTgTcckF5KR * docs(mcp): last of the prose that outlived the code (BUG-2870) Codex round 3: no P1/P2, prose only. - the predicate's own comment still asked 'will anything canonicalize THIS key'; it asks whether the fields object carries the key, and always did; - two test comments described re-emission and trimmed comparison as current. Both tests are kept — what they pin is narrower now and still worth pinning — with the change in what they mean written down. Deliberately NOT changed: the comments and replacement-test names that cite the OLD test names. Codex reads them as stale terminology; they are the traceability the restatement commit was asked for, so a reader can find what each replacement replaced. Claude-Session: https://claude.ai/code/session_01HeChkgZVYb3NTgTcckF5KR * docs(items): the coercion note names what the door does now (BUG-2870) Codex round 4. The paragraph described ingestFieldKVP as doing `dst[key] = val` unconditionally. Its CLAIM — every value arrives at the server as a string — is still true and is the reason this file exists; the description of the line is not, since that door now parses through items.SplitFieldEntry. Restated so the still-true part is not carried by a sentence a reader can falsify. Claude-Session: https://claude.ai/code/session_01HeChkgZVYb3NTgTcckF5KR
76 KiB
Pad — Development Guide
What This Is
Pad is a project management tool for developers and AI agents. Single Go binary with embedded SvelteKit web UI, SQLite storage, and multi-agent skill support (Claude Code, Cursor, Windsurf, Codex, OpenCode, Copilot, Amazon Q, Junie).
Related repo: The marketing website (getpad.dev) lives at ../pad-web — a separate SvelteKit site deployed to Vercel.
Architecture
- Backend: Go (cmd/pad/main.go) → REST API (internal/server/) → SQLite (internal/store/)
- Frontend: SvelteKit 2 + Svelte 5 (web/src/) → static build embedded in Go binary
- Data model: Workspaces → Collections (typed with JSON schemas) → Items (structured fields + rich content)
- CLI: Cobra commands in cmd/pad/main.go, HTTP client in internal/cli/
- Agent skill: Single natural-language
/padskill in skills/pad/SKILL.md
Build & Install
make build # Build web UI + Go binary (./pad)
make install # Build, kill server, install to ~/.local/bin/pad, restart
make build-go # Build Go only (skip web — faster when only backend changes)
make test # Run Go tests
make web # Build web UI only
make dev-web # Run SvelteKit dev server (hot reload on :5173)
After making changes, always run make install to rebuild the binary, install it, and restart the server. The web UI at http://localhost:7777 will reflect the changes.
Quick iteration loop
- Backend only:
make install(skips web rebuild if no frontend changes — edit Makefile to usebuild-goinstead ofbuildin the install target) - Frontend only:
make web && make installor usemake dev-webfor hot reload during development - Full rebuild:
make install
Working in a git worktree
Agent sessions take a git worktree per task rather than sharing the main checkout (a shared checkout means a shared stash stack, branch state, and dirty files across sessions). Three rules keep web tooling working there:
-
Symlinking
web/node_modulesto the main checkout's copy is fine (and fast). Vitest,vite build, andnpm run checkall work through the symlink. -
A fresh worktree has no
web/.svelte-kit(gitignored, generated). Runnpx svelte-kit syncinweb/before any vitest/vite command — ornpm run check, which syncs first. Without it, vitest fails withFailed to load tsconfig '.svelte-kit/tsconfig.json': Tsconfig not foundregardless of hownode_moduleswas set up. (This missing generated dir was historically misdiagnosed as a symlink problem —npm ci"fixed" it only because itspreparescript runssvelte-kit sync.) -
A fresh worktree has no
web/buildeither, and that one breaks the GO gates rather than the web ones.embed.godoes//go:embed all:web/build, somake testandmake lintfail withpattern all:web/build: no matching files foundbefore a single test runs —go build ./...dies first, two packages report[setup failed], and it reads as a broken tree rather than a missing generated directory.npx vite buildinweb/fixes it (make webwould too, and is FORBIDDEN here — see the next rule). -
Never run
npm ciin a worktree whoseweb/node_modulesis a symlink — including via make.npm cilives in thewebtarget, so every target whose dependency chain reaches it is off-limits too: currentlyweb,build,install,serve,web-check, andcheck(viaweb-check). Everything else —build-go,dev,restart,test,test-pg,lint,vuln,web-test,web-audit,dev-web,clean— never reachesnpm ci.npm cideletes through the symlink into the shared tree, breaking every other worktree and session at once with a confusingvitest: not found. If you want a real, isolatednode_modulesinstead of a symlink,npm ciin an un-symlinkedweb/is ~5s on a warm cache and regenerates.svelte-kitas a side effect. -
make test-pgis safe to run from several worktrees at once (TASK-2708). It used to bind the Postgres test container to a fixed host port, so a second worktree failed withport is already allocatedand a stack orphaned by a removed worktree blocked the port for everyone. Docker now assigns the port and the Makefile reads it back, so each worktree gets its own container on its own port under its own compose project. If you have been starting a private container by hand to avoid the collision, you no longer need to. Two other things that target now does: it REFUSES to run, with aNO TESTS EXECUTEDbanner, when the database is unreachable —go testexiting 2 with zero FAIL lines had already been mistaken for a pass once — and it says so explicitly when the database dies mid-run, so the failures read as infrastructure rather than as evidence about the code. To reap a stack whose worktree was deleted before teardown:docker ps --filter name=padtest-lists them and the container name carries the compose project, sodocker compose -p <that-project> down -vreaps it from anywhere. From inside the worktree,make test-pg-projectprints the name andmake test-pg-downdoes it for you. (The project ispadtest-<basename>-<checksum-of-the-absolute-path>— NOT the bare directory name, which would collide between two checkouts sharing a basename.)
web/vitest.config.ts's server.fs.allow note covers the other worktree wrinkle (symlink realpaths vs the dev-server file-serving guard) and points back at this section.
Key Directories
cmd/pad/main.go — CLI entry point, all Cobra commands
internal/
server/ — HTTP API handlers, SSE, middleware
store/ — SQLite CRUD, migrations, FTS
models/ — Go types (Collection, Item, View, etc.)
items/ — Field validation against schemas
collections/ — Default definitions, workspace templates
cli/ — HTTP client, formatting helpers
events/ — EventBus for real-time SSE
config/ — Workspace detection, .pad.toml
diff/ — Version diff storage
webhooks/ — Webhook dispatcher with HMAC signing
email/ — Transactional email via Maileroo
links/ — Wiki-link parsing
web/src/
routes/ — SvelteKit pages
lib/api/client.ts — TypeScript API client
lib/types/index.ts — TypeScript types
lib/stores/ — Svelte 5 rune stores
lib/components/ — Reusable UI components
skills/pad/SKILL.md — Claude Code skill (embedded in binary)
API
REST API at /api/v1/. Key endpoints:
GET/POST /workspaces/{ws}/collections— collection CRUDGET/POST /workspaces/{ws}/collections/{coll}/items— item CRUDGET/PATCH/DELETE /workspaces/{ws}/items/{slug}— item by slug- Write responses (create/update) may carry
warnings.undeclared_fields(BUG-2850) — field keys stored in the item'sfieldsblob that the collection's schema does not declare. They are ACCEPTED, not refused: a census found 168 live values under 14 such keys, and refusing them would break read-modify-write on items nobody edited wrongly. The element is additive andomitempty, so a clean write is byte-identical to before; system-written metadata (implementation_notes,decision_log,github_pr,convention) is excluded. The CLI prints the same list to stderr, never stdout, so--format jsonstays parseable - Write responses may also carry
warnings.dropped_fields(TASK-2878) — schema-declared keys the write DISCARDED. Today one case: arelationfield whose schema DEFAULT is not a reference.ValidateFieldsassigns a default and skips its own type check, so an injected default is the only route by which a non-string reaches a relation field; a caller-supplied one is type-checked and refused. Dropped rather than refused because nobody in the request typed it. Additive andomitempty
- Write responses (create/update) may carry
POST /workspaces/{ws}/items/{slug}/copy/preflight— cross-workspace copy dry run: what would carry / drop / need a value, plus the full warning set. Read-only and safe to call repeatedly (PLAN-2357)POST /workspaces/{ws}/items/{slug}/copy— cross-workspace copy; witharchive_sourceit is the move. Same request shape as the preflight. Never retry it automatically — there is no idempotency key, so a retry duplicates the itemGET/POST /workspaces/{ws}/items/{slug}/reminders— item reminders (IDEA-2641). POST arms one;remind_atis an RFC3339 instant and a bare date is refused, not read as midnightPATCH/DELETE /workspaces/{ws}/reminders/{id},POST /workspaces/{ws}/reminders/{id}/ack— re-arm (clears both fire marks), disarm, acknowledge. Permission is the ITEM's; the reminder has no separate ownerGET /workspaces/{ws}/dashboard— computed project overview (active items, plans, attention, blockers). Also carriespending_reminders: fired-but-unacknowledged reminders, which is the delivery path on any instance with no webhook configuredGET /workspaces/{ws}/activity— workspace activity feed (enriched with item titles + change details)GET/POST/DELETE /workspaces/{ws}/webhooks— webhook managementGET /workspaces/{ws}/items/{slug}/children— child items linked to a parentGET /workspaces/{ws}/items/{slug}/progress— child item completion progressGET/POST /workspaces/{ws}/items/{slug}/links— item relationships (blocks/blocked-by, parent/child)GET /search?q=query&workspace=slug— full-text searchGET /api/v1/events?workspace=slug— SSE real-time events (workspace-scoped)GET /api/v1/events/stream— SSE watch/push notifications (USER-scoped, spans every workspace the caller belongs to; backspad watch --stream)
Both SSE endpoints share one admission budget, enforced per instance: PAD_SSE_MAX_CONNECTIONS (default 1000) and PAD_SSE_MAX_PER_USER (default 50) cover both; PAD_SSE_MAX_PER_WORKSPACE (default 100) covers /api/v1/events only. Over the limit is 429 with code sse_limit_exceeded and a Retry-After header — clients must back off, not retry immediately (BUG-2726). The CLI does; browsers cannot, since EventSource exposes neither the status nor the header to the page (BUG-2733). On /api/v1/events only, callers with no resolved user (a legacy workspace token, or the fresh-install window before the first admin exists) are bounded per workspace instead of per user; /api/v1/events/stream has no such case — it requires a resolved user and answers 401 otherwise.
GET /api/v1/collab/{itemID}?schema_version=N— WebSocket upgrade for real-time collaborative editing (Yjs binary protocol; client must announce schema version)GET /workspaces/{ws}/members— list members + pending invitationsPOST /workspaces/{ws}/members/invite— invite user to workspaceGET /api/v1/auth/session— auth status (setup_required,setup_method,auth_method,authenticated,email_configured,user)POST /api/v1/auth/bootstrap— create the first admin account from localhost on a fresh instancePOST /api/v1/auth/register— create account (admin-created or invitation-based after setup)POST /api/v1/auth/login— email/password login (returns session token)POST /api/v1/auth/logout— destroy sessionGET/PATCH /api/v1/auth/me— current user profile (GET) and update name/password (PATCH)POST /api/v1/auth/forgot-password— request password reset emailPOST /api/v1/auth/reset-password— reset password with tokenPOST /api/v1/auth/local-reset— localhost-only account recovery (self-host, non-cloud). Loopback-gated, no auth — the bootstrap trust model. Returns a single-use reset link, or a temp password with{"temp_password": true}. Backspad auth reset-password.GET/POST/DELETE /api/v1/auth/tokens— user-scoped API tokens. Minting and rotating require an INTERACTIVE SESSION (BUG-2890): a call authenticated by a PAT is refused403 session_requiredonPOST /auth/tokens,POST /auth/tokens/{id}/rotateandPOST /workspaces/{ws}/tokens, because a token that can mint tokens outlives its own revocation. A session cookie and apadsess_CLI bearer both count as interactive; LIST and REVOKE stay PAT-reachable, deliberately — revocation is the compromised-credential responseGET/PATCH /api/v1/admin/settings— platform settings (admin-only)POST /api/v1/admin/test-email— send test email (admin-only)POST /api/v1/invitations/{code}/accept— accept workspace invitationGET /api/v1/workspaces/{ws}/agent/bootstrap— one-round-trip agent context (workspace + user + collections + always-on conventions + roles + playbook metadata + dashboard +needs_onboardingflag). Same payload as the MCPpad://workspace/{ws}/bootstrapresource and thepad_set_workspaceembed.
Authentication
User-based authentication with email/password. When no users exist (fresh install), everything works without auth until the instance is initialized with pad auth setup. Once the first admin exists, all API requests require authentication.
# First-time setup
pad auth setup # Create the first admin account on the server host
# Subsequent logins
pad auth login # Email + password prompt
pad auth whoami # Show current user
pad auth logout # Sign out
pad auth reset-password user@example.com # Recover a locked-out account (run ON THE SERVER HOST)
pad auth reset-password user@example.com --temp-password # ...set a temp password instead of a reset link
# Credentials stored in ~/.pad/credentials.json (0600 permissions)
# CLI auto-attaches auth token to all API requests
Locked-out account recovery (self-host, no email)
When a self-hosted instance has no email provider, a forgotten password can't be reset by email. Two host-side recovery paths (both require shell access to the server — the same trust boundary as pad auth setup):
pad auth reset-password <email>— run it on the server host. It calls the loopback-only/api/v1/auth/local-resetendpoint (no login required — that's the point) and prints a single-use reset link. Add--temp-passwordto instead set a random temporary password printed to the terminal (headless boxes with no browser). The endpoint refuses proxied/remote requests and is disabled in cloud mode.- Server log — if a user submits the web
/forgot-passwordform on a non-cloud instance with no email, the server logs the reset path (slog.Info ... reset_path=/reset-password/<token>). Paste it after the instance's base URL to finish the reset by hand.
The web /forgot-password page detects email_configured == false (from the session payload) and shows the pad auth reset-password recovery instructions instead of a dead "we emailed you a link" message.
Code: internal/server/handlers_auth.go::handleLocalReset (loopback + non-cloud gates), cmd/pad/main.go::resetPasswordCmd, web/src/routes/forgot-password/+page.svelte.
After any workspace is created (via pad init or pad workspace init — note that pad auth setup only creates the admin account, not a workspace), the success output points new users at the canonical onboarding entry point. Open a fresh agent session in the workspace's directory and say:
/pad onboard
Every new workspace ships with the onboard playbook auto-activated (PLAN-1496 / TASK-1499 / TASK-1500). The playbook walks the agent through an interview that adapts the workspace's collections, conventions, roles, and seeded playbooks to match the actual project. Works regardless of which template the user picked (or no template — see the blank template).
The pre-PLAN-1496 design seeded IDEA-1 / PLAN-2 / TASK-3 / DOC-4 (and BACK-1 / FEAT-1 siblings for scrum/product) as first-person-future-self notes; that pattern was retired in TASK-1501 / TASK-1502 in favor of the playbook-driven flow.
Workspace membership
pad workspace members # List workspace members
pad workspace invite user@example.com # Invite (adds directly if user exists, creates join code if not)
pad workspace invite user@example.com --role viewer # Invite with specific role
pad workspace join <code> # Accept a workspace invitation
Roles: owner (full access), editor (CRUD items), viewer (read-only).
Email (optional)
Transactional email via Maileroo. When configured, workspace invitations are sent by email. Without it, everything works via CLI-based join codes.
# Environment variables (or ~/.pad/config.toml)
PAD_MAILEROO_API_KEY=your-sending-key # Required to enable email
PAD_EMAIL_FROM=noreply@yourdomain.com # Sender address (default: noreply@getpad.dev)
PAD_EMAIL_FROM_NAME=Pad # Sender display name (default: Pad)
CLI
Items are referenced by issue ID (e.g. TASK-5, BUG-8) wherever a <ref> argument appears.
Slugs also work but issue IDs are preferred.
pad item create <collection> "title" [--status X] [--priority X] [--parent REF]
pad item list [collection] [--status X] [--parent REF] [--all]
pad item show <ref> # e.g. pad item show TASK-5
pad item update <ref> [--status X] [--priority X]
pad item delete <ref>
pad item move <ref> <target-collection>
# Collection change WITHIN a workspace (cross-workspace is `item copy`).
# Field values the target schema has no home for are dropped — and since
# BUG-2674 the move REPORTS them, in its activity entry's `dropped_fields`
# and in the item timeline. System metadata (implementation_notes,
# decision_log, github_pr, convention) always survives a move; it used to
# be destroyed silently.
# RELATION fields (TASK-2878): a carried value is resolved against the
# workspace, so a valid relation SURVIVES a move and only an unresolvable
# one is dropped (and reported). A `--field` OVERRIDE naming a relation is
# a write and is REFUSED if it does not name a live item in the collection
# that field declares.
pad item copy <ref> --to-workspace <slug> --collection <slug> [--dry-run] [--archive-source] [--field k=v]
# Cross-workspace copy; --archive-source makes it a move.
# --dry-run previews the field mapping + warnings.
# Refuses rather than guessing when a destination field needs a value,
# and NEVER retries the mutating call (no idempotency key — PLAN-2357 DR-13).
# Content semantics: markdown is copied verbatim except `pad-attachment:`
# refs that resolve to a LIVE attachment in the SOURCE workspace — those are
# repointed at the clones (+ variants). Foreign / soft-deleted / dangling ids
# are left literal and counted as unresolvable, never cloned.
# `[[wiki-links]]` are NOT rewritten — they re-resolve in the DESTINATION,
# so a link can silently retarget to a different item or break;
# `[[workspace::REF]]` stays a genuine cross-workspace reference.
# The web dialog (item pane ⋯ → "Copy or move to workspace…") says the same.
# System metadata (BUG-2674): implementation_notes and decision_log CARRY —
# they describe the item's own history and are true wherever it lands.
# github_pr does NOT carry across workspaces: it names the SOURCE project's
# repo, so on the copy it would render a live PR link about a project the
# destination may have nothing to do with. It is reported in the dropped
# bucket as `referent_not_portable`, and DOES carry on a same-workspace
# move/copy, where the repo context is unchanged.
# RELATION fields (TASK-2878): every CARRIED relation value is dropped on a
# cross-workspace copy without a lookup — it names a row in the SOURCE
# workspace, so nothing in the destination could make it true — and is
# reported as `referent_not_portable`, the same bucket github_pr uses. The
# preflight reports the identical drop; both doors call one store function,
# because they sit in different packages and that is how they drift.
# A supplied `--field` override naming a relation must resolve in the
# DESTINATION workspace or the copy is refused.
# None of these four keys
# (+ `convention`) is settable via `--field` on copy or move — they are
# written by `pad item note` / `pad item decide` / `pad github link`.
pad item remind <ref> --remind-at <RFC3339> # arm a one-shot reminder; --rearm <id> moves an existing one
pad item reminders <ref> # list an item's reminders (armed / fired / acknowledged)
pad item ack <reminder-id> # acknowledge a fired reminder, removing it from `project next` / `ready`
pad item unremind <reminder-id> # disarm
# A reminder fires at an instant, emits item.reminder_due on the outbox rails,
# and appears in `pad project next` / `ready` until acknowledged. NOTHING else
# acknowledges one — completing the item does NOT, since a reminder may have
# been armed to fire after the work was done; a reminder on a completed item is
# hidden from the recommendation surface and left untouched in the table.
pad item search "query"
pad project dashboard # Project dashboard
pad project next # Recommended next task
pad project standup [--days N] # Daily standup report
pad project changelog [--days N] [--parent REF] # Release notes from completed items
pad item block <source> <target> # e.g. pad item block TASK-5 TASK-8
pad item blocked-by <item> <blocker>
pad item deps <ref> # Show dependencies
pad item unblock <source> <target>
pad collection list # List collections
pad collection create "Name" --fields "key:type[:opts]; ..." # compact DSL for simple schemas
pad collection create "Name" --schema '<json>' # full CollectionSchema (terminal_options, defaults, computed, relations)
pad item edit <ref> # Open in $EDITOR
pad workspace init [--template X] # Create workspace
pad agent install [tool] # Install /pad skill for AI tools
# Workspace onboarding: run `/pad onboard` from an agent session inside the
# workspace (Claude Code, MCP, etc.). The /pad onboard playbook is
# auto-seeded into every new workspace.
pad server open # Open web UI in browser
pad project watch # Real-time activity stream
pad github link [item-ref] # Link current branch's PR to item
pad github status [item-ref] # Show PR status for linked items
pad github unlink <item-ref> # Remove PR link from item
pad item bulk-update --status done TASK-5 TASK-8 # Batch operations
pad webhook list/create/delete/test # Webhook management
pad session register [--agent NAME] # Record this session (harness pid + agent name) in ~/.pad/sessions; the plugin monitor runs it on start
pad session list [--agent X] [--cwd D] [--all] # Registered sessions on this machine with a liveness verdict each (alive/dead/unknown); --format json is the stable shape
pad session prune [--older-than DUR] # Remove dead sessions' records; unknown-liveness ones only under an explicit age bound
pad auth setup # Initialize a fresh instance with the first admin
pad auth login # Log in
pad auth logout # Sign out
pad auth whoami # Show current user
pad workspace members # List workspace members
pad workspace invite <email> [--role X] # Invite user to workspace
pad workspace join <code> # Accept workspace invitation
Collection names accept singular forms: task→tasks, idea→ideas, doc→docs.
MCP server
Pad runs as a local Model Context Protocol server so Claude Desktop / Cursor / Windsurf can call non-interactive pad commands as tools. The tool surface is a hand-curated catalog (currently v0.30) in internal/mcp/catalog_*.go — one ToolDef per resource (pad_item, pad_workspace, pad_collection, pad_project, pad_role, pad_search, pad_meta, pad_playbook, pad_library, pad_attachment) with an action enum dispatching to underlying CLI commands. v0.30 (BUG-2870) makes one --field key=value entry mean ONE thing at every door. Six sites parsed that entry independently — item create, item list, item update, item move and item copy in cmd/pad, plus ingestFieldKVP on the remote door — in four spellings, so field:[" effort=l"] stored an undeclared field literally named " effort" through the CLI while the remote door trimmed and wrote effort: the same call storing two different keys, decided by the transport. All six now call items.SplitFieldEntry, under two deliberately asymmetric rules — a padded KEY is REFUSED everywhere (trimming silently retargets the write to a field the caller did not type), a VALUE is carried VERBATIM everywhere (trimming reinterprets a caller's bytes, and on a text field the padding is content). The catalog's conflict pass is re-grounded on the same change, since its rules were derived from that trimming: comparisons are RAW, a padded entry is refused in the pass rather than skipped, parseFieldArray's refusal is PROPAGATED rather than swallowed (it had no second owner on the no-fields path, where four existing refusals were landing as successes), and canonicalization and the re-emission path are gone — nothing rewrites a caller's key any more. v0.29 (PLAN-2857 / TASK-2878) makes a relation field value have to NAME A LIVE ITEM in the collection that field declares. internal/items only ever checked the SHAPE of a relation ("must be a string") because that package is DB-free, so any string at all was accepted and stored and no client could render it honestly. Every write door now refuses a value that names nothing, names an item in the WRONG collection, sits in a field declaring no target collection, or is a SLUG (deliberate divergence from ResolveItem — a slug is neither an ID nor stable). A CARRIED value, already on the item and asserted by nobody, is never refused: within a workspace it resolves and survives; across a boundary it is dropped without a lookup and reported in warnings.dropped_fields. v0.28 (IDEA-2641) adds two ADDITIVE pad_item actions — remind (arm a one-shot reminder at an RFC3339 remind_at instant) and ack-reminder (acknowledge a fired one by reminder_id). Agents already RECEIVED reminders, since the poll surface is pad_project.next / ready; what was missing is the other half — deferring work is exactly when an agent knows it wants to be asked again. A bare date is refused rather than read as midnight. Re-arm and disarm stay CLI-only until a listing action exists to discover an id. v0.27 (BUG-2850) typed field values server-side, carried the fields object with its JSON types intact, named undeclared keys back in warnings.undeclared_fields, and replaced the per-site conflict guards with one check that refuses two names for one target in a single call. v0.26 (IDEA-2756) makes pad_workspace.create REFUSE with a 403 when the calling OAuth connection's grant carries may_create_workspaces=false — that consent checkbox previously gated only the post-creation auto-add, so a connection whose user declined it created workspaces anyway — invisible to it when the connection carried an explicit allow-list, visible when it carried the all_current_workspaces wildcard; the consent mismatch is the defect in both cases. The same gate covers POST /workspaces/import (a second door onto store.ImportWorkspace → CreateWorkspace, with no MCP action today). No escape-hatch param, deliberately: the gate expresses the USER's consent decision, so only the user can lift it — by re-authorizing, or by enabling the flag on the existing connection at /console/connected-apps. v0.25 (TASK-2657 / BUG-2702) makes pad_library.activate resolve its destination collection from the target's declared artifact kind rather than the literal conventions / playbooks slugs, and surfaces a lookup ERROR instead of falling back. v0.24 (#1066) makes the pad_item fields OBJECT a real write form on create/update — reads return fields as a native object (BUG-991 normalization), and writing that shape back was a silent no-op: not a declared param, no additionalProperties, so it was accepted, never mapped by BuildCLIArgs, and dropped while the PATCH still bumped updated_at. The alias merges into the same path as field: ["key=value"] / the dedicated params (catalog_item_fields.go), refusing the same key in two places with conflicting values; and input validation is now STRICT across all catalog tools — an undeclared top-level key fails with a structured validation_failed naming it, instead of being silently dropped (a small documented compat list survives: pad_item's v0.16 assigned_user_id / agent_role_id remote clear form). One bump covers both halves — they are one contract change. v0.23 (BUG-2627 part 2 + BUG-2675, PR #1166) refuses raw field setters naming system-metadata keys in fields_patch on every transport (github_pr exempt on UPDATE only — the sole remote writer, itself broken: BUG-2696) and adds the retry-hostile stored_state_unreadable error code. v0.22 (BUG-2674, PR #1165) makes reserved metadata survive a move and refuses field setters naming those keys on move/copy — see internal/mcp/version.go for both full entries. v0.21 (BUG-2608) bounds pad_item.action=history, which was unbounded on every surface: the limit param now covers it (default 50, max 300 — the NEWEST N versions, with no offset, because reverse-patch storage makes only a newest-end window cheap to reconstruct), applied in the CATALOG action so it lands on both transports, and summary mode now asks the server to skip patch resolution (?summary=true) instead of resolving every body and discarding it. Additive param bump — limit already existed and nothing changed shape. v0.20 (BUG-2302 + BUG-2305, one bump) adds explicit MCP tool annotations (readOnlyHint/destructiveHint/idempotentHint derived from the catalog's own write-shape knowledge, fixing read-only tools that advertised destructiveHint:true) and makes pad_item.list summary-shaped on the REMOTE /mcp transport too (the hand-written dispatchItemList projects via cli.ToItemSummaries; full=true opts back into complete bodies) — see internal/mcp/version.go for the authoritative per-version changelog. Post-0.20 without a bump (BUG-2304): item backlinks / item history / project report gained HTTP route coverage — they were advertised but answered "not yet implemented over HTTP transport" — and a catalog↔route parity test (dispatch_http_parity_test.go) now drives every catalog action and fails on any future advertised-but-unrouted action; no names, enums, or shapes changed, hence no bump. v0.19 adds a clear_parent boolean to pad_item — the canonical, schema-discoverable way to detach an item from its parent, backed by a new --clear-parent bareword flag on pad item update (BUG-2078). v0.18 adds clear_assigned_user / clear_agent_role booleans to pad_item — the canonical, schema-discoverable way to unassign, backed by new --clear-assigned-user / --clear-agent-role bareword flags on pad item update (IDEA-2584). Update-only, deliberately asymmetric with create. v0.17 carries the empty-string clear to the LOCAL STDIO transport, which shells out to the CLI — cmd/pad/cmd_item.go now lifts assigned_user_id / agent_role_id onto their columns instead of into the fields blob, on create and update (BUG-2583). v0.16 makes an empty-string assigned_user_id / agent_role_id CLEAR the assignment instead of being silently dropped, so an MCP agent can finally unassign an item (TASK-2571). v0.15 adds the pad_item.list unparented boolean, mutually exclusive with parent, for items with no parent or implements relationship (TASK-2096). v0.2 introduced the catalog (PLAN-969 / TASK-981); v0.3 added pad_playbook, pad_meta.action: bootstrap, pad_set_workspace's embedded-bootstrap response, and the pad://workspace/{ws}/bootstrap resource (PLAN-1377 / TASK-1380); v0.4 trimmed the bootstrap payload by ~40% (PLAN-1410) — slim BootstrapCollection + BootstrapRole projections (no UUIDs/timestamps/settings; nested schema object; redundant labels omitted), removed top-level recent_activity duplicate, dropped convention slug, and added a BootstrapDashboard wrapper that caps five sub-arrays (attention, recent_activity, active_items, active_plans, by_role) at 5 entries each with parallel *_overflow_count fields. The pre-catalog v0.1 cmdhelp leaf walker is retired.
cmdhelp is still consumed at dispatch time — BuildCLIArgs reads individual command schemas to translate the catalog's snake_case input map into CLI args. cmdhelp no longer drives tool naming or count.
When adding a new pad command, decide whether it belongs on the MCP surface. If yes, add an action to the appropriate pad_<resource> ToolDef in internal/mcp/catalog_<resource>.go. The action's handler — usually passThrough([]string{"resource", "subcommand"}) — wires it through to dispatch. Don't expose interactive (prompts the user), destructive (mutates auth / filesystem state), long-running (streaming watcher), or recursive (would spawn another MCP server) commands.
pad mcp serve # JSON-RPC over stdio (called by clients)
pad mcp install <client> # Write the client's mcp.json entry
pad mcp uninstall <client> # Remove the entry
pad mcp status # Install state across supported clients
Surface:
- Tools: the v0.26 catalog — ten resource × action tools (
pad_item,pad_workspace,pad_collection,pad_project,pad_role,pad_search,pad_meta,pad_playbook,pad_library,pad_attachment) pluspad_set_workspace(takes aworkspaceslug only — no action enum). The ten resource × action tools takeaction: <verb>to choose what they do.pad_item(v0.19) exposesclear_parentas the canonical parent-detach (update only); (v0.18) exposesclear_assigned_user/clear_agent_rolebooleans as the canonical unassign (update only); (v0.17) treats an empty-stringassigned_user_id/agent_role_idas a clear on BOTH transports viafield: ["assigned_user_id="]— the direct param form is remote-only, since it isn't schema-declared and stdio's BuildCLIArgs drops unknown keys (IDEA-2584); v0.16 fixed remote only; (v0.15) adds theunparentedlist parameter; v0.14 addedhistory+expected_updated_at.pad_project(v0.13) addsready(actionable backlog) +stale(items needing attention);pad_project.activity(v0.12) is the non-streaming, bounded activity feed — catch up on what other agents/users changed since you last worked.pad_attachmentis the read-only attachment-metadata surface —list/show(upload/download/view stay CLI-only).pad_libraryis the convention+playbook library surface —list/get/activate.pad_playbookis the playbook surface from PLAN-1377 —list/get/runmirror the CLI'spad playbooksubcommands;runis side-effect-free and returns the body + bound args for the agent to execute. v0.4 (PLAN-1410) didn't change the tool/action surface; it trimmed the bootstrap JSON those tools/resources return — see the Stability contract subsection below for details. - Resources:
pad://workspace/{ws}/items/{ref},pad://workspace/{ws}/items,pad://workspace/{ws}/dashboard,pad://workspace/{ws}/collections,pad://workspace/{ws}/attachments/{id}(bounded base64 image viathumb-md; non-images and image bytes over 1 MiB (pre-base64) rejected),pad://workspace/{ws}/bootstrap(one-shot workspace overview — user + collections + always-on conventions + roles + playbook metadata + dashboard + recent activity), plus the server-widepad://_meta/version. - Prompts:
pad_plan,pad_ideate,pad_retro,pad_onboard— multi-step workflows lifted fromskills/pad/SKILL.md.
pad_set_workspace pins the session default workspace; its response embeds the bootstrap blob so agents pin + load workspace context in one round-trip. The same payload is available on demand via pad_meta.action: bootstrap and the pad://workspace/{ws}/bootstrap resource.
Stability contract. Two version constants live in internal/mcp/version.go, advertised in the handshake under capabilities.experimental.padCmdhelp and capabilities.experimental.padToolSurface:
CmdhelpVersion(currently"0.1") — the cmdhelp CLI help-tree contract. Bump when CLI flag/arg schemas change incompatibly.ToolSurfaceVersion(currently"0.30") — the MCP tool catalog contract. Bump when tool names, action enums, or parameter shapes change incompatibly. v0.30 (BUG-2870) is a BEHAVIOR bump on the v0.29/v0.27/v0.26/v0.16/v0.10/v0.9 grounds — no tool name, action enum or param shape changed. Every door refuses a padded KEY now, and each was accepting it differently: /mcp trimmed it and wrote the declared field, the CLI stored a ghost field beside it — so both refuse something they used to accept. What is /mcp-only is the VALUE half, which it used to trim and type and now passes through to the same validation the CLI has always applied. A caller writing canonical entries sees no difference at either door. A second, separately-noticeable fix rides with it:detectFieldConflictsswallowedparseFieldArray's refusal as "the caller owns this error surface", which held only while the sole possible error was a shape error —reshapeItemFieldsreturns early with nofieldsobject, so on the no-fieldspath (this bug's own path) four existing refusals were landing as successes. No escape hatch, for v0.29's reason: there is no legitimate call this refuses, only calls whose two readings a door used to choose between silently. v0.29 (PLAN-2857 U1 / TASK-2878) is a BEHAVIOR bump on the v0.27/v0.26/v0.16/v0.10/v0.9 grounds (NOT v0.28's, which was purely additive) — no tool name, action enum, or param shape changed, but arelationfield value must now name a live item in the collection that field declares, so every write door refuses values it used to store. Refused: names nothing (not_found), names an item in the wrong collection, the field declares no target collection (target_missing), or the value is a SLUG — a deliberate divergence fromResolveItem's UUID→ref→slug ladder, since a slug is neither an ID nor stable and free text like "red" resolving to whatever is sluggedredtoday is exactly the corruption this closes. Ordinaryvalidation_error, no new code and no new details key, because stdio classifies errors by matching CLI stderr prose. A CARRIED value — already on the item, asserted by nobody — is never refused, since refusing would make every legacy item un-updatable, un-movable and un-copyable: within a workspace it resolves and SURVIVES, across a workspace boundary it is dropped without a lookup (a source-workspace id cannot mean anything in the destination) and reported through the samewarnings.dropped_fieldschannel BUG-2674 established. No escape hatch, deliberately: unlike v0.10'sallow_draftthere is no legitimate call this refuses, and the case with a real claim to leniency is already exempt by provenance rather than by a flag. v0.28 (IDEA-2641 / GitHub #1010) adds two ADDITIVEpad_itemactions and two optional params:remindarms a one-shot reminder at an RFC3339remind_atINSTANT, andack-reminderacknowledges a fired one byreminder_id. Purely additive — nothing existing moved, and a v0.27 consumer that enumerates neither action is unaffected; same disposition as v0.13 / v0.11 / v0.8, which likewise wired existing CLI verbs onto the catalog. Agents already RECEIVED reminders (the poll surface ispad_project.next/ready, long exposed); what was missing is the half where an agent that defers work can say when it wants to be asked again.remind_atREFUSES a bare date rather than reading it as midnight — thedateschema type acceptsYYYY-MM-DDso a caller will try it, but a bare date names a 24-hour span and choosing an hour inside it would fire at a time nobody picked. Re-arm and disarm stay CLI-only: both address a reminder by an id the agent would have to list first, and no listing action exists on this surface yet — a door with no handle. v0.27 (BUG-2850) types field values SERVER-SIDE at all eight validate sites, carries thefieldsobject to the remote door with its JSON types intact, accepts undeclared keys while NAMING them inwarnings.undeclared_fields, and replaces five accreted conflict guards with one canonical pass; the merge refuses several ambiguities it used to resolve silently. (This entry was missing from CLAUDE.md — the 0.27 unit sweptinstructions.mdandREADME.mdand not this file.) v0.27 (BUG-2850) types field values server-side at all eightValidate*call sites so a declared number/json field is writable from the remote transport at all, carries thefieldsOBJECT with its JSON types intact, names undeclared keys back inwarnings.undeclared_fields(accepted rather than refused — a census of 1012 items found 14 such keys across 168 live values, so refusing would have broken read-modify-write on items nobody had edited wrongly), and replaces the accreted per-site conflict guards with ONE check over a canonical view of every source; that check refuses ambiguities v0.26 resolved silently, chiefly two names for one target in a single call (parent/plan,assign/assigned_user_id,role/agent_role_id), refused even when the values match because the names address one thing through incomparable vocabularies and the two doors resolved them differently. v0.26 (IDEA-2756) is a BEHAVIOR bump on the v0.9/v0.16/v0.25 grounds — no tool name, action enum, or param shape changed, butpad_workspace.createnow refuses a call it used to permit. Closest precedent is v0.10, which likewise turned a server-side gate into a structured refusal; unlike v0.10 there is noallow_draft-style override, because the gate encodes a decision the USER made at consent time and a bypass param would be the app overriding its own grant.POST /workspaces/importis gated by the same shared helper (import mints a workspace throughstore.ImportWorkspace), though it has no MCP action today. v0.25 (TASK-2657 / BUG-2702) resolvespad_library.activate's destination collection from the target's declared artifact kind rather than the literalconventions/playbooksslugs, so activating into a workspace that renamed either collection lands correctly; a lookup ERROR is surfaced rather than silently falling back. v0.24 (#1066) adds thefieldsOBJECT param topad_itemcreate/update — an alias merging into the same path asfield/the dedicated params, so the shape reads return is finally a valid write shape; the same key supplied twice with conflicting values is REFUSED (refuse-on-ambiguity, the v0.18/v0.19 disposition), equal duplicates collapse to one write, and non-writer actions refuse afieldsparam loudly. It also makes input validation STRICT for every catalog tool: undeclared top-level keys are rejected with a structured error naming them, instead of being accepted and silently dropped byBuildCLIArgs— which is the mechanism that made thefieldsobject a session-scoped silent no-op in the first place. Compat carve-out:pad_item's v0.16assigned_user_id/agent_role_idremote-transport clear form stays accepted (documented, undeprecated, deliberately never schema-declared). The strict half changes behaviour for inputs that previously "succeeded", but that reliance was indistinguishable from a caller bug (the key never did anything), so the break is the fix; one bump covers both halves. v0.23 (BUG-2627 part 2 + BUG-2675) refuses system-metadata keys throughfields_patchon all three doors at once,github_prexempt on update (move/copy still refuse it), and adds the retry-hostilestored_state_unreadablecode. v0.22 (BUG-2674) stopspad_item.action=movedestroying system metadata and refusesfieldsetters naming the reserved keys there. v0.21 boundspad_item.action=history(BUG-2608): thelimitparam now covers it, default 50 / max 300, applied in the CATALOG action so it reaches both transports (HTTP reads the input; stdio gets the CLI's new--limitvia BuildCLIArgs). The window is the NEWEST N and there is deliberately nooffset— versions are reverse patches, so only a newest-end window is cheap to reconstruct. Additive param bump; a v0.20 consumer sending no limit now receives the newest 50 rather than every version, which is the fix. Summary mode additionally asks the server to skip patch resolution rather than resolving bodies the dispatcher discards. v0.19 adds aclear_parentboolean topad_item(BUG-2078) — an ADDITIVE param bump, same grounds as v0.18; nothing existing changed shape. The server has supported clearing a parent since BUG-2013 (extractParentLinktreats a present-but-emptyparentkey infields_patchas detach), but neither client surface could reach it —--parent ""was a silent no-op on the CLI and the MCPparentparam has the same "empty means not provided" convention every other declared string on the tool has. Boolean rather than overloading the empty string, same two reasons as v0.18: keeps that invariant intact for every other param, and only a boolean reaches LOCAL STDIO viaBuildCLIArgs, mapping to a new--clear-parentbareword flag exactly asclear_assigned_usermaps to--clear-assigned-user. Update-only, same asymmetry as v0.18. A simultaneousparent+clear_parent— including viafield: ["parent=..."]or theplanaliasextractParentLinkalso accepts — is REFUSED on both transports, not silently resolved (codex round 1). Also refused, not silently applied:clear_parentagainst a collection whose schema declares its ownparent/planfield —extractParentLinkskips hierarchy handling entirely for a schema-shadowed key and lets it fall through as an ordinary field write, so the wire shape{"parent":""}can no longer distinguish clear-hierarchy intent from a legitimate blank-a-real-field write once it reaches the server; the ambiguity is created at the client surface that acceptedclear_parent, so that surface refuses rather than guessing (codex round 2). v0.18 addsclear_assigned_user/clear_agent_rolebooleans topad_item(IDEA-2584) — an ADDITIVE param bump (v0.5/v0.6 precedent); nothing existing changed shape and v0.16/v0.17's empty-string forms still work, undeprecated. v0.16 and v0.17 made the clear WORK; nothing advertised it, because the params that do it were never in the catalog, so an agent reading the schema reached forassign: ""(a no-op, and it stays one). Booleans rather than declaring the string params, for two reasons: an empty DECLARED string is inert everywhere else on the tool, so giving one a destructive meaning would let a param-padding client silently unassign everything; and only a boolean can reach LOCAL STDIO, sinceBuildCLIArgsemits the CLI's real flags and a param with no flag behind it is dropped — these map to new--clear-assigned-user/--clear-agent-rolebareword flags, exactly asallow_draftmaps to--allow-draft. Update-only, deliberately asymmetric with create (clearing at create has no honest behaviour but a no-op; a test fails if someone adds them there). Server-side it is wiring, not new semantics:models.ItemUpdate.ClearAssignedUser/ClearAgentRolealready existed with store support since BUG-2566. v0.17 closes the transport gap v0.16 documented: local stdio MCP shells out to the CLI, which wrote--field assigned_user_id=<uuid>into the item's FIELDS BLOB while the column stayed stale and then printed "Updated TASK-9".cmd/pad/cmd_item.gonow liftscolumnFieldKeysonto the columns on create AND update, mirroringliftFieldsToColumnsand its INVARIANT. Two compat changes, ruled separately: non-empty values move to the column and stop writing the blob key (relying on the old behaviour is relying on a shadowing defect), and empty values clear (falls out of the lift, inherits BUG-2566). Existing stray blob keys are left alone — the fix stops minting new ones. Another behaviour-only bump (BUG-2583). v0.16 lets an MCP agent UNASSIGN an item over the REMOTE transport (TASK-2571). No tool/action/param shape changed — this is a BEHAVIOR bump on the same grounds as v0.9: an empty-stringassigned_user_id/agent_role_id, passed at the top level or asfield: ["assigned_user_id="], was silently dropped by two dispatch-path filters (mapItemUpdate,liftFieldsToColumns) and is now forwarded as a clear-to-NULL. The store has had defined clear semantics for exactly these two columns since BUG-2566 and HTTP inherited them, so this is uniformity restoration — MCP was the only surface with no way to unassign. Compat posture accepted deliberately: today's""senders get a no-op, and a no-op is the surprising reading. The empty-string filter ontagsat the same call site STAYS (codex #547 r3 P2) —tags: ""is a corrupt JSONB/TEXT write, not a clear; same-looking guard, opposite justification.clear_assigned_user/clear_agent_roleschema flags (option (b)) deliberately skipped as additive sugar, though codex review reopened the case — the catalog exposesassign/role, NOT the ID params, so an agent reading the schema still can't discover the clear (IDEA-2584); an emptyassignis deliberately left inert because every other schema-declared string on that mapper treats empty as not-provided. Transport scope: v0.16 fixed the REMOTE /mcp transport only; v0.17 (BUG-2583) closed the local-stdio half at the CLI. v0.15 adds theunparentedboolean topad_item.list, mutually exclusive withparent, for structural loose-item filtering (TASK-2096). v0.14 added ahistoryaction topad_item(read-only item version history — newest-first metadata; content body omitted for token thrift) and anexpected_updated_atparam for optimistic concurrency onupdate(round-trip theupdated_atyou last read; a stale value fails with a structured 409code=update_conflict). Theupdateaction's field writes are now a server-side field-level MERGE (only the keys you set change) rather than a full-blob replace, closing the concurrent-update lost-write race (IDEA-1480 / TASK-2022) — pure addition to the action enum + param vocabulary; existingpad_itemactions/params are unchanged and backwards-compatible. v0.13 addsready+staleactions topad_project, mirroring the existing CLIpad project ready/pad project stale(TASK-2019):ready(read-only) returns the actionable backlog — the query-oriented counterpart tonext, reusing the dashboard's suggested-next logic;stale(read-only) lists items needing attention (stalled, blocked, overdue, or out of the active workflow). Both HTTP dispatchers already existed (dispatch_http_project.go); this just wires them onto the catalog.pad project reconcilestays CLI-only (shells out toghfor live PR state — a local-git dependency MCP agents lack). Pure addition of two read-only actions — existing actions unchanged; backwards-compatible for v0.12 consumers that don't enumerate the new actions. v0.12 adds anactivityaction topad_project, mirroring the new CLIpad project activity [--limit N] [--actor user|agent] [--since DATE](TASK-2018) — the non-streaming, bounded query counterpart to the CLI-onlypad project watchSSE stream. Read-only snapshot of the workspace's enriched activity feed (item refs, titles, field-level change details) backed by the existingGET /workspaces/{ws}/activityendpoint (previously web-UI-only, now extended with a server-sidesincedate filter solimit/actor/sincebehave identically across CLI, stdio MCP, and cloud HTTP), so agents can catch up on what other agents/users did since they last worked. Addsactor+limitparams to thepad_projectvocabulary (sincealready existed for changelog); pure addition — existing actions unchanged; backwards-compatible for v0.11 consumers that don't enumerate the new action. v0.11 adds the read-onlypad_attachmenttool (the tenth resource × action tool) withlist+showactions, mirroring the CLIpad attachment list/pad attachment show(TASK-2017):listenumerates a workspace's attachments (optional filters: item / category / collection / attached / unattached / sort / limit / offset);showreturns one attachment's metadata (MIME, size, filename, ETag, last-modified) via a HEAD request without transferring bytes. Both HTTP dispatchers already existed (dispatch_http_attachments.go); this just wires them onto the catalog. Upload / download / view stay CLI-only (filesystem-bound, excluded per the catalog's exclusion rules). Pure addition — existing tools/actions unchanged; backwards-compatible for v0.10 consumers that don't enumerate the new tool. The base64 image RESOURCE for multimodal agents (pad://workspace/{ws}/attachments/{id}) shipped later in TASK-2077 (PR #930) as a bounded, image-only resource; TASK-2101 brought it — and the full read-only resource set — to the remote /mcp transport via the in-processHTTPResourceFetcher, so resources are no longer local-stdio-only. v0.10 enforces the draft-playbook gate server-side:pad_playbook.run(and the underlyingPOST /playbooks/{ref}/run) now refuses a playbook whosestatusisn'tactivewith a structuredplaybook_not_activeerror, adds anallow_draftboolean param (bareword--allow-drafton the CLI) as the escape hatch, and echoes the playbookstatuson both therunandgetresponses (BUG-2020). v0.9 makespad_item.listsummary-shaped by default (drops itemcontent, adds a default result limit of 50 / hard max 300 on MCP; CLI--fullrestores the complete shape) — a behavior change to the tool's return shape, hence the bump, though tool names, action enums, and parameter shapes are unchanged (TASK-2000). v0.8 addsrestore+deletedactions topad_workspace, mirroring the CLIpad workspace restore/pad workspace deleted(TASK-1972):deleted(read-only) lists the caller's soft-deleted workspaces still inside the 30-day restore window;restore(mutating, not destructive, owner-only) un-soft-deletes a workspace byslugwhile it's still restorable. Both reuse the existingslugparam — no new params; pure addition. v0.7 addsexport+importactions topad_item, mirroring the CLIpad item export/pad item import(covers playbooks AND conventions).export(read-only) takesrefand returns the portable artifact text — it forces the CLI's stdout sink (-o -) so the bytes come back as the result instead of a file.import(mutating, not destructive) takes a newartifactparam (the full artifact text) and returns{ref, slug, warnings}; the ExecDispatcher can't pipe stdin, so it spills the artifact to a temp file and dispatchesitem import <tmpfile>. v0.6 added thepad_item.backlinksaction; v0.5 addedpad_library. v0.3 (PLAN-1377 / TASK-1380) introducedpad_meta.action: bootstrap,pad_set_workspace's embedded-bootstrap response, and thepad://workspace/{ws}/bootstrapresource. v0.4 (PLAN-1410) is a comprehensive bootstrap-payload trim — same tool catalog, slimmer JSON shape inside bootstrap responses:BootstrapCollectionprojection dropsid/workspace_id/timestamps/settingsand emitsschemaas a nested object;BootstrapRoleprojection drops UUIDs/timestamps/tools; conventionslugdropped; top-levelrecent_activity(a duplicate ofdashboard.recent_activity) removed; newBootstrapDashboardwrapper caps five sub-arrays (attention,recent_activity,active_items,active_plans,by_role) at 5 entries each with parallel*_overflow_countfields; redundant schema labels omitted whenlabel == TitleCase(key). Cumulative size reduction: ~40% on a representative workspace, ~54% on the fixture (see PLAN-1410's Result section for per-section deltas). Compatibility: most changes are subtractive (dropped fields) or additive (overflow counts), but one type change is breaking:collections[].schemawent from a JSON-encoded string to a nested JSON object — clients that JSON.parse()'d the string need to consume it directly as an object now. The dropped fields (UUIDs, timestamps, settings, duplicaterecent_activity, conventionslug) have canonical alternatives (slugs for addressing;pad collection list/pad role listfor the full models when needed).
Both are also returned by pad://_meta/version and pad_meta.action: version.
Where result caps live. Two layers, deliberately different numbers. The MCP catalog action injects the agent-facing default and ceiling (list / backlinks / history: default 50, max 300) because a token budget is only knowable there. The HTTP endpoint's own clamp is a server-resource ceiling on what any caller may ASK for (maxItemListQueryLimit = 1000; maxItemVersionsQueryLimit = 500, lower because resolving a version can cost a patch application per row), and an ABSENT limit is left unbounded rather than defaulted — a server that truncates a request nobody bounded is a silent-truncation trap for direct API consumers. The CLI carries its own default for the same reason the catalog does.
Dispatchers. Two ship in internal/mcp/:
ExecDispatcher— shells out to thepadbinary; subprocess inherits credentials from~/.pad/credentials.json. Used bypad mcp servefor local stdio MCP.HTTPHandlerDispatcher— calls pad-cloud's HTTP handlers in-process with the requesting user attached viaserver.WithCurrentUser. Backs the live remote MCP server on the dedicatedmcp.getpad.devvhost (PLAN-943), where the dispatcher serves multiple OAuth users from a single process. The Streamable HTTP transport is mounted byServer.SetMCPTransport/registerMCPRoutes(cloud-mode-gated; self-hosted binaries leave it unmounted) — seeinternal/server/handlers_mcp.go. Tools are wired into the route table atinternal/mcp/dispatch_http.go(routeTable); add aRouteMapperper command —mapItemCreateis the seed entry from TASK-965.
Resource fetchers. The read-only resource templates (RegisterResources in internal/mcp/resources.go) are transport-agnostic — they parse the pad CLI's --format json output, and a ResourceFetcher supplies those bytes. Two implementations mirror the dispatchers:
ExecResourceFetcher— shells out topad(stdio MCP), same credential model asExecDispatcher.HTTPResourceFetcher(internal/mcp/resources_http.go, TASK-2101) — the in-process equivalent for remote /mcp. It translates each resource's fixed CLI-arg vector into an in-process HTTP read through the same handler chain (reusingHTTPHandlerDispatcher's user resolution +buildAuthedRequestauth/scope/consent perimeter), reproducing the CLI shape the handlers expect (e.g.item list→cli.ToItemSummaries,workspace list→{slug,name,updated_at},attachment show→ HEAD-header synthesis). Attachment bytes flow through acappedResponseWriterthat preserves PR #933's 1 MiB download bound. Because it satisfiesResourceFetcher+BinaryResourceFetcher, all resource handlers register unchanged on both transports.
Code lives in internal/mcp/ (built on github.com/mark3labs/mcp-go). Public docs at getpad.dev/mcp/local.
Data Model
- Collections have JSON schemas defining typed fields (select, text, date, number, etc.)
- Items have structured
fieldsJSON + optional richcontent(markdown) - Parent/child links: Any item can be a parent of child items (
--parent REF). Children get progress tracking, burndown charts, and nested rendering. Plans are the most common parent, but Ideas, Docs, or Tasks can also have children. - Wiki-links
[[Title]]resolve across all items, rendered as clickable links - Default collections: Tasks, Ideas, Plans, Docs (software /
startuptemplate) - Templates are grouped by category so Pad supports more than just software workflows:
- Software:
startup(default),scrum,product - People:
hiring(company-side: Requisitions → Candidates → Loops → Feedback),interviewing(candidate-side: Applications, Interviews, Companies, Contacts) - Custom:
blank— system collections only (Conventions, Playbooks), no user-facing seeds. Designed as the entry point for the/pad onboardagent-driven flow (see Onboarding below). PLAN-1496 / TASK-1498. - Research / Content / Operations / Personal are reserved categories awaiting their first templates.
- Software:
- Each non-blank template ships a curated starter pack (conventions + playbooks) appropriate to its domain — trigger vocabularies vary (
on-commitvson-candidate-advancevson-interview-scheduled). - The IDEA-1 / BACK-1 / FEAT-1 first-person seed-item pattern was retired in PLAN-1496 (TASK-1501 / TASK-1502). Templates no longer seed sample items; the
/pad onboardplaybook (auto-seeded into every workspace, TASK-1500) drives setup conversationally instead. - Set the template via
pad workspace init --template <name>. Runningpad initwith no flag in a TTY opens an interactive picker grouped by category. Runpad workspace init --list-templatesto see the current catalog. - See
PLAN-609andIDEA-583for original design history;PLAN-1496for the onboarding refactor.
Playbooks
Playbooks are first-class invokable procedures. They live in the playbooks collection (typed item, just like Tasks/Ideas/Plans) but carry two extra fields that make them user-callable:
invocation_slug— optional, workspace-unique, kebab-case (regex^[a-z0-9][a-z0-9-]*[a-z0-9]$, 2+ chars). When set, the playbook is invokable by intent (NL is canonical) and via the per-surface slug shortcut —/pad <slug>in Claude Code,$pad <slug>in Codex,pad_playbook action=run ref=<slug>via MCP ("slug routing"). Leave blank for trigger-only playbooks (e.g.trigger=on-releasethat auto-load on intent match).arguments— JSON array of{name, type, required, default, description, enum}entries. Types:ref,string,flag,enum,number. Mirrors the playbook body's## Argumentssection; the structured field is the queryable form (used bypad playbook run's strict parser) and the markdown is the human-readable mirror.
Invocation model. Three surfaces, one playbook:
- Claude Code (agent NL):
/pad ship PLAN-1377 stop-after-each— the/padskill matches the first token against the bootstrap's playbook slug list and binds the rest with flexible NL parsing. - CLI (strict positional):
pad playbook run ship TASK-10,TASK-11 merge-strategy=rebase— the server applies strict positional + bareword-flag +key=valueparsing. - MCP:
pad_playbooktool withaction: list | get | run.runaccepts either a pre-parsedargsmap or raw CLI tokens viaraw_args.
Bootstrap returns metadata at startup. pad bootstrap (CLI + GET /api/v1/workspaces/{ws}/agent/bootstrap + pad://workspace/{ws}/bootstrap resource + pad_set_workspace response embed) returns the workspace's playbook metadata in one round-trip — ref, title, slug, invocation_slug, trigger, scope, status, has_arguments, summary per entry. No bodies in the bootstrap blob; the agent loads the full body via pad playbook show <slug> only when invoking. Keeps context light while still letting the agent route /pad ship without a tool call.
Seeded ship playbook. The startup template ships a generic ship playbook (invocation_slug=ship) derived from the personal /ship-tasks slash command. Fresh pad workspace init --template startup workspaces get it as PLAYB-N out of the box. See internal/collections/templates_startup_ship.go for the body + de-personalization choices.
Library — discovery surface for invokable playbooks. Per PLAN-1397's invokable-first overhaul, the playbook library (web UI: /[username]/[workspace]/library?tab=playbooks; JSON: GET /api/v1/playbook-library) carries the three canonical invokable workflow playbooks — ship, plan, decompose (invokable by intent; /pad <slug> · $pad <slug> · the pad_playbook MCP form are per-surface shortcuts) — under a single agent-workflows category. Each library card surfaces a ▶ <slug> invoke chip (with an NL-canonical tooltip listing the per-surface shortcuts) and an N args badge so the invocation model is visible before activation. Software templates auto-seed plan + decompose via softwareStarterPlaybookTitles; startup separately prepends ship so all three land together at workspace init. The pre-PLAN-1377 trigger-only checklist entries (Implementation Workflow, Code Review Process, Plan Creation, Bug Triage, Retrospective, Onboarding to a Project, Release Process, Deployment, Incident Response) are stashed in playbook_library_archive.go::archivedPlaybooks() — compiled but not surfaced; per-entry "convert / promote to convention / retire" decisions tracked in IDEA-1396.
Web UI editor. web/src/routes/[username]/[workspace]/playbooks/[slug]/+page.svelte is the dedicated playbook editor — kebab-case slug input with debounced uniqueness check, structured arguments builder that round-trips with the body's ## Arguments section, trigger selector with custom-trigger escape, and a "Test invocation" helper that renders /pad, pad playbook run, and pad_playbook MCP JSON forms from a slug + sample inputs. The reusable component lives at web/src/lib/components/playbooks/PlaybookFormFields.svelte and the shared parser/generator at web/src/lib/playbooks/arguments.ts.
Code map:
internal/server/handlers_playbooks.go—pad playbook list|show|runHTTP handlers;ParsePlaybookCLIArgs,resolvePlaybook.internal/server/handlers_bootstrap.go—pad bootstrap; embeds playbook metadata.internal/mcp/catalog_playbook.go—pad_playbookMCP tool catalog entry.internal/collections/templates.go— playbooks collection schema (invocation_slug+argumentsfields);softwareStarterPlaybookTitles(auto-seed lineup for software templates).internal/collections/templates_startup_ship.go— the seededshipplaybook (ShipPlaybook(),shipPlaybookBody,shipPlaybookArguments).internal/collections/playbook_library.go— the invokable-first library (PlaybookLibrary(),LibraryPlaybookstruct withInvocationSlug+Arguments).internal/collections/playbook_library_plan.go— theplanlibrary entry (PlanPlaybook()).internal/collections/playbook_library_decompose.go— thedecomposelibrary entry (DecomposePlaybook()).internal/collections/playbook_library_archive.go— retired pre-PLAN-1377 bodies; not surfaced, but compiled for future migrations (IDEA-1396).web/src/lib/playbooks/arguments.ts—## Argumentsparser/generator,INVOCATION_SLUG_PATTERN,buildTestInvocation.
See PLAN-1377 (invocation model) and PLAN-1397 (library overhaul) in this workspace for the design history.
Onboarding
Workspace setup is driven by the canonical onboard invokable library playbook (PLAN-1496 / TASK-1499) — invoked by intent ("set up my workspace") or the per-surface shortcut (/pad onboard in Claude Code, $pad onboard in Codex, the pad_onboard MCP prompt). Pad does not run a baked-in CLI onboarding wizard; the playbook body IS the onboarding script, and any agent that can dispatch a playbook (Claude Code, MCP client, CLI) can run it.
Auto-seeded everywhere. pad workspace init (with any non-blank --template) seeds the onboard playbook into the new workspace as status=active, invocation_slug=onboard (TASK-1500). The blank template ships it as the workspace's ONLY user-facing content. Empty-template-name workspace creation (SeedCollectionsFromTemplate(ws, "") — used by tests and direct API callers) intentionally skips the seed; see internal/store/collections.go::SeedCollectionsFromTemplate for the gating logic.
Surface-agnostic body. The playbook body (internal/collections/playbook_library_onboard.go::onboardPlaybookBody) describes intent, not specific CLI commands. It instructs the agent to use whatever surface it has — pad_item MCP, pad item CLI, pad_collection MCP, etc. — and works for pure-MCP agents (no shell) the same as for Claude Code. The body's mode argument is auto (default — detects from workspace state; any user-created item routes to revisit), build (blank workspace, build from scratch), audit (templated workspace, adapt seeded items), or revisit (already-onboarded, change something specific), plus a separate defaults flag (escape hatch — skip the interview, pick sensible defaults and report).
Adaptation posture, not curation. The body explicitly tells the agent: library entries are STARTING POINTS, not finished artifacts. Read the rule, rewrite using the project's actual commands and vocabulary. Invent when the library has nothing close. If the template seeded something that doesn't fit, edit or delete it. This is the core posture PLAN-1496 codifies — software templates seed generic "run the test suite" conventions, and /pad onboard rewrites them to make test / go test ./... / whatever the project actually uses.
Mutation primitives. The adaptation posture depends on agent-facing mutation tools, exposed by TASK-1510 / TASK-1511 / TASK-1512:
pad collection update <slug>+pad_collection.action: update— rename collections, swap icons, reshape schemas (TASK-1510)pad collection delete <slug>+pad_collection.action: delete— remove user-created collections that don't fit (TASK-1511)pad role update <slug>+pad_role.action: update— rewrite role descriptions and icons (TASK-1512)
Server handlers existed pre-PLAN-1496; these tasks just wired CLI subcommands and MCP catalog actions to the existing HTTP endpoints. All three are owner-only server-side.
needs_onboarding bootstrap flag. AgentBootstrap.NeedsOnboarding (PLAN-1496 / TASK-1504) is true when the workspace has zero items with source != 'template' — i.e. nothing beyond what the template seeded. The agent skill (skills/pad/SKILL.md) and the MCP server instructions render an active, NL-canonical offer when true (PLAN-1847): "This workspace is brand new and isn't set up yet. Want me to set it up?" — an offer, not an auto-run. The flag flips to false the moment any user/agent-created item exists; the offer stops firing past that point. Computed per-request via Store.WorkspaceHasUserCreatedItems(workspaceID) (EXISTS-backed). PLAN-1496 / TASK-1505 also retired the standalone "Onboarding" workflow section from the skill — the playbook body owns that script now.
Retired surfaces. The pre-PLAN-1496 design had several surfaces that the playbook replaces; all retired:
pad onboardCobra subcommand (was: codebase scan + convention suggestions) — TASK-1502.OnboardingPrimaryReffield onWorkspaceTemplate(was: named IDEA-1 / BACK-1 / FEAT-1 per template) — TASK-1502. Dashboard banner auto-discovers seeds viaitem_number=1 + source='template'if a future template ever wants to reintroduce them.- The
*OnboardingItems()generators ininternal/collections/templates_onboarding*.go(deleted files) — TASK-1501. - The skill's standalone "Onboarding" workflow section — TASK-1505. Replaced by a one-paragraph pointer at the playbook.
Code map:
internal/collections/playbook_library_onboard.go— the canonical playbook body +OnboardPlaybook()library entry +OnboardSeedPlaybook()auto-seed.internal/collections/templates_blank.go— minimal trigger/scope vocabularies for the blank template's seeded system collections.internal/store/collections.go::SeedCollectionsFromTemplate— wires the auto-seed for every non-empty templateName.internal/store/items.go::WorkspaceHasUserCreatedItems— theneeds_onboardingquery predicate.internal/server/handlers_bootstrap.go::AgentBootstrap.NeedsOnboarding— the bootstrap field.skills/pad/SKILL.md— the nudge-rendering rule in Context Loading; the routing entry under "set up my workspace".
Testing
go test ./... # All Go tests
go test ./internal/store/ # Store tests only
cd web && npm run build # Verify frontend compiles
cd web && npm run test # Web unit tests (vitest, run once)
Common Tasks
Add a new API endpoint
- Add handler in
internal/server/handlers_*.go - Register route in
internal/server/server.gosetupRouter() - Add store method in
internal/store/if needed - Add CLI client method in
internal/cli/client.go - Add TypeScript type in
web/src/lib/types/index.ts - Add API method in
web/src/lib/api/client.ts make install
Add a new CLI command
- Add the command constructor to the matching resource file under
cmd/pad/—cmd_item.go,cmd_collection.go,cmd_workspace.go,cmd_auth.go,cmd_project.go,cmd_playbook.go,cmd_role.go,cmd_tag.go,cmd_github.go,cmd_webhook.go,cmd_agent.go,cmd_server.go,cmd_attachment.go,cmd_db.go,cmd_library.go,cmd_bootstrap.go(allpackage main, so helpers are shared across files). Create a newcmd_<resource>.goif none fits. Keepmain.goformain(),newRootCmd(), and top-level wiring only — don't grow it back into a god file. - Wire it into the resource group in
cmd/pad/groups.go(orrootCmd.AddCommand()inmain.gofor a new top-level group) make install
Modify the database schema
- Add migration file in
internal/store/migrations/ - Update models in
internal/models/ - Update store methods in
internal/store/ make install(migrations run automatically on server start)
Real-time collaboration (Yjs / Tiptap)
Collab is wired through /api/v1/collab/{itemID} (WebSocket, Yjs
binary protocol). The relevant code lives in:
internal/collab/— RoomManager, room lifecycle, dumb-relayinternal/store/yjs_updates.go— op-log persistenceweb/src/lib/collab/wsProvider.svelte.ts— client providerweb/src/lib/collab/schemaVersion.ts— client schema-version stamp
Collab requires no additional container deps; the single Go binary remains the self-hosted shape. The dumb-relay design (server persists raw Yjs binary updates without parsing them) means there's no Yjs Go port to vendor and no separate sync-server process to run. The op-log lives in the same SQLite/Postgres as everything else, and the WebSocket relay is part of the main HTTP listener. Multi-instance Redis fanout is deliberately out of scope for v1 (single-instance everywhere); when horizontal scaling is needed it lands as a separate IDEA, not a self-host complication.
Tiptap multi-package coordinated bumps
The Y.Doc/ProseMirror schema is shared across three Tiptap packages:
@tiptap/core@tiptap/extension-collaboration@tiptap/y-tiptap
Rule: bump all three together, exact-pinned to the same version.
Mixing minor versions across these can change the persisted Y.Doc
shape silently — peers running mismatched bundles produce divergent
ops that the relay can't reconcile. The web/package.json pins
each one explicitly (e.g. "@tiptap/extension-collaboration": "3.22.5")
rather than using ^ ranges so npm can't slide one out of sync.
A coordinated bump that changes the ProseMirror node-spec MUST also
bump web/src/lib/collab/schemaVersion.ts::SCHEMA_VERSION AND
internal/collab/manager.go::DefaultSchemaVersion in lockstep. The
client announces the version on every WS connect; mismatch returns
HTTP 400 and the room manager prunes the per-item op-log so the new
client doesn't replay incompatible old-schema ops. items.content is
canonical and untouched, so no edit history is lost.
Pure UI/CSS/behavioural changes that don't alter the persisted document shape DO NOT bump the schema version. When in doubt, load an item edited under the old version after your change and confirm the rendered tree is identical.