17 KiB
Contributing to Veritas Kanban
Thanks for your interest in contributing! This guide will help you get started.
Prerequisites
- Node.js 22 or later
- pnpm 11+ (package manager)
Development Setup
-
Fork the repository on GitHub
-
Clone your fork:
git clone https://github.com/<your-username>/veritas-kanban.git cd veritas-kanban -
Install dependencies:
pnpm install -
Set up environment variables:
cp server/.env.example server/.envEdit
server/.envwith your local configuration (at minimum, setVERITAS_ADMIN_KEY). -
Start the development server:
pnpm devThe board auto-seeds with example tasks on first run. To re-seed manually:
pnpm seed.
Project Structure
Veritas Kanban is a monorepo:
veritas-kanban/
├── server/ # Backend API (Express + TypeScript)
├── web/ # Frontend UI (React + Vite + TypeScript)
├── shared/ # Shared types & contracts
├── cli/ # `vk` CLI tool
├── mcp/ # MCP server for AI assistants
├── tasks/ # Task storage (Markdown files, gitignored)
│ ├── active/ # Current tasks (your data, not tracked)
│ ├── archive/ # Archived tasks (not tracked)
│ └── examples/ # Seed tasks for first-run
├── scripts/ # Build and utility scripts
└── docs/ # Documentation
Note: Your task data (
tasks/active/,tasks/archive/) is.gitignored and never committed. Onlytasks/examples/(seed data) is tracked.
Development Workflow
Creating a Feature Branch
-
Create a feature branch from
main:git checkout -b feat/my-feature -
Make your changes — write code, add tests, update docs.
-
Run touched-package type checking, changed-file linting, and focused tests before committing:
pnpm --filter @veritas-kanban/server typecheck pnpm exec eslint server/src/path/to/changed.ts pnpm --filter @veritas-kanban/server exec vitest run src/path/to/changed.test.tsBuild
@veritas-kanban/sharedfirst and type-check its known consumers when a shared contract changes. Usepnpm testat an explicit integration, critical-security, or release milestone, or when the deterministic CI selector classifies the change as high risk. -
Commit using conventional commits.
-
Push to your fork and open a pull request.
Scope and Verification Budget
This cadence extends the deterministic CI selector delivered in #1000.
- Keep one independently shippable behavior per issue and pull request.
- Split separable UI work, secondary integrations, refactors, and additional hardening into linked follow-up issues before implementing them.
- Re-scope when a second unexpected subsystem becomes necessary or the verification effort becomes larger than the changed behavior.
- Do not rerun an unchanged passing check after documentation, comments, or formatting-only edits.
- Treat
Select Test Scopeas the CI authority. Focused, full, and no-test selections are recorded in the job summary. - Do not wait for optional desktop artifacts, packaging previews, or release workflows unless the pull request changes that product boundary.
- Test the behavior and meaningful failure modes. Do not use raw test count as a quality measure.
Branch Merge Protocol
When merging multiple feature branches, merge one at a time so the next branch can rebase on the exact result.
Process:
- Merge first branch to
main - Confirm the required GitHub checks for that pull request
- Rebase the next branch on the updated
main - Run only the focused checks affected by conflict resolution
- Merge the next branch
The complete build, workspace suite, integration suite, and applicable E2E or artifact gates run once at the declared milestone. They are not repeated after every unrelated merge. 5. Repeat for each branch
Why: Parallel branches often introduce integration issues that are hidden when batch-merging. Sequential merges with testing between each merge catch these immediately.
One Agent Per File Rule
Critical: Only one agent (human or AI) should edit a file at a time. Never assign multiple agents to modify the same file concurrently.
Why: When multiple agents edit the same file independently, each change stomps on the others. Even if each change is correct in isolation, they create conflicts and break functionality when combined. This applies to both human and AI contributors.
Process:
- Assign one agent to a file or task
- That agent completes their work and confirms they're done
- Only then can another agent touch that file
- If a task requires changes across multiple files, one agent owns the full task
This is a hard constraint, not a guideline. It's the file-level equivalent of sequential branch merges.
Squad Chat Protocol (Mandatory)
Every agent (human or AI) must post to squad chat when starting work, hitting milestones, completing tasks, or finding issues. Squad chat is the glass box — real-time visibility into what's happening.
# Regular messages (agents post these):
./scripts/squad-post.sh --model claude-sonnet-4.5 AGENT_NAME "Your update" tag1 tag2
# System events (orchestrator posts these):
./scripts/squad-event.sh --model claude-sonnet-4.5 spawned AGENT_NAME "Task Title"
./scripts/squad-event.sh completed AGENT_NAME "Task Title" "2m35s"
# Or curl directly:
curl -s -X POST "http://localhost:3001/api/chat/squad" \
-H 'Content-Type: application/json' \
-d '{"agent":"AGENT_NAME","message":"Your update","tags":["tag1"],"model":"claude-sonnet-4.5"}'
The --model flag is optional but recommended — it shows which AI model is behind each agent in the UI. System events (spawned, completed, failed) render as divider lines in the squad chat panel.
See SQUAD-CHAT-PROTOCOL.md for full details.
Pre-Commit Review Protocol (Mandatory)
Before every commit, run these 4 reviews:
- Code Review — Code quality, anti-patterns, architectural issues, file locking, path validation
- Functionality Review — All endpoints work, CRUD operations, settings save/load
- Performance Review — API response times, bundle size, React optimizations, memory leaks
- Security Review — Auth/authz, injection vectors, secrets exposure, CORS/CSP, rate limiting
All four must pass (10/10) before committing. If ANY review says unsafe:
- Fix the issue
- Have the SAME reviewer who found it verify the fix
- Get human approval
- Then commit
Never commit when a review says "unsafe." Never push without human approval.
These reviews are mandatory, not optional. They catch runtime issues that static analysis and builds miss.
Pre-Merge Checklist
Before merging any branch, verify:
- Type exports: All new types added to
shared/are exported inshared/src/types/index.ts - Type checks pass:
pnpm typechecksucceeds for all workspace packages (shared, server, web, CLI, MCP) - Builds pass:
pnpm buildsucceeds for all packages (shared, server, web, CLI, MCP) - No hardcoded values: No hardcoded ports, URLs, or timeouts in application code
- CSP/CORS configs: Security policies work in both
NODE_ENV=developmentANDNODE_ENV=production - Frontend hooks: All HTTP calls use shared helpers (
apiFetch) and all WebSocket/URL logic useswindow.location.host(not hardcoded ports) - Environment variables: All configurable values use env vars with sensible defaults
Environment Rules
Never change these without team agreement:
- PORT in
.env: Server default is 3001. Changing this breaks CLI/API workflows and bookmarks. - CORS_ORIGINS: Must include the production serving origin (e.g.,
http://localhost:3000when Express serves the built frontend in production mode). - CSP
connect-src: Must allow WebSocket connections in all modes (dev, production, test). Don't hide WebSocket support behindisDevchecks. - Configurable values: Use environment variables with sensible defaults. No magic numbers in code.
Rule of thumb: If changing a value would break someone else's local setup, it belongs in an environment variable with documentation.
Testing Requirements
"Builds clean" is necessary but NOT sufficient.
Before declaring a branch ready to merge, verify runtime behavior:
- Health check:
curl http://localhost:3000/api/healthreturns 200 - Auth flow: Log in via the UI, verify token handling works
- Task CRUD: Create, update, move, and delete a task
- WebSocket connection: Verify real-time updates work (open two browser tabs, change task in one, see update in the other)
- No stray processes: Check for leftover Vite dev servers or conflicting processes before starting:
lsof -i :3000
Static code reviews (AI or human) cannot catch runtime issues. You must test in a running browser.
Common Integration Failures
These have broken production. Check for them:
- Missing type exports: Types added to
shared/but not exported in barrel file - Hardcoded ports/URLs: Frontend code assuming specific port instead of using
window.location - CORS origin mismatches: Dev-only origins in allowlist, production origin missing
- CSP dev-only exceptions: Security policies that only work in development mode
- Response envelope mismatches: API clients expecting raw JSON but server returns wrapped
{ data, error }responses - Conflicting processes: Vite dev server running on production port
Commit Conventions
We follow Conventional Commits.
Format
<type>[optional scope]: <description>
[optional body]
[optional footer(s)]
Types
| Type | Description |
|---|---|
feat |
A new feature |
fix |
A bug fix |
docs |
Documentation changes |
style |
Code style (formatting, semicolons, etc.) |
refactor |
Code change that doesn't fix a bug or add a feature |
perf |
Performance improvement |
test |
Adding or updating tests |
build |
Build system or dependency changes |
ci |
CI/CD configuration changes |
chore |
Other changes (no src or test modification) |
Examples
feat(board): add drag-and-drop column reordering
fix(api): handle empty task list in export endpoint
docs: update README with deployment instructions
Pull Request Process
- Fork the repo and create your branch from
main. - Branch naming: Use descriptive names like
feat/task-filters,fix/login-redirect,docs/api-reference. - Open a PR against
main. - Fill out the PR template — describe changes, link related issues, include screenshots for UI changes.
- Ensure the selected PR CI tier passes — all checks started for the pull
request must be green. The scope selector runs related tests for affected
workspaces, escalates high-risk paths to the complete suite, and records its
base/head evidence in the job summary. Use
ci:fullfor release candidates or other changes that require an explicit complete-suite gate. - Request review — a maintainer will review and may request changes.
- Address feedback — push additional commits as needed.
- Merge — once approved, a maintainer will merge.
Code Style
- Language: TypeScript (strict mode)
- Linting: ESLint —
pnpm lint - Lint budget:
pnpm lint:budgetenforces the current warning ceiling so lint debt cannot grow. - Formatting: Prettier —
pnpm format - Editor: VS Code recommended with ESLint + Prettier extensions
Follow the existing conventions in .eslintrc.*, .prettierrc, and tsconfig.json.
Testing
-
Run all tests:
pnpm test -
End-to-end tests use Playwright:
pnpm test:e2e -
Load smoke tests use k6:
pnpm test:load:smoke -
Release readiness checks workspace versions, changelog, README badge, build outputs, and optional GitHub tag/release state:
pnpm validate:release pnpm validate:release -- --github -
Write tests for new features and bug fixes.
-
Ensure existing tests pass before submitting.
CI tiers
| Trigger | Stable checks | Scope |
|---|---|---|
| Documentation-only pull request or merge | Static gates; unit-test jobs record skip decisions | No workspace unit suite |
| Ordinary code pull request | Lint & Type Check, Changed Tests, Build, Security Audit |
Vitest related coverage for affected server, web, CLI, or MCP workspaces |
Ordinary code merge to main |
Default static gates plus Changed Tests |
Related coverage limited to affected workspaces |
Pull request with ci:full, or a high-risk CI/manifest/shared/storage/desktop change |
Default checks plus Workspace Unit Tests |
Complete workspace, desktop readiness regressions, and exact dual-storage parity |
Merge whose reviewed head already passed Workspace Unit Tests |
Static gates; both unit-test tiers record skip decisions | Reuses exact successful head evidence when that head is an ancestor of the merge commit |
Nightly 08:00 UTC or manual CI dispatch with test_scope=full |
Static gates, Workspace Unit Tests, Build, Security Audit |
Complete authoritative workspace suite |
Manual CI dispatch with test_scope=focused and optional base_sha |
Static gates plus the selected unit-test tier | Classifies base_sha...HEAD (or HEAD^...HEAD); high-risk paths still conservatively escalate to full |
Desktop/package/release-workflow pull request, relevant main push, or manual Desktop Artifacts dispatch |
Unsigned macOS, Linux, and Windows artifact jobs | Cross-platform packaging |
Select Test Scope is the decision record for each run. Its summary names the
event, exact base/head range, changed-path count, selected tier, affected
workspaces, and why Changed Tests or Workspace Unit Tests ran or skipped.
The selector fails safe to the complete suite for unknown non-documentation
paths and for changes to:
- GitHub Actions workflows and the selector itself
- package manifests, lockfiles, workspace configuration, and test configuration
- the shared package
- storage implementations and storage parity coverage
- the desktop package and desktop readiness boundary
- deletion of any non-documentation path, because related selection cannot reconstruct the deleted dependency graph
Run the selector contract locally with:
pnpm test:ci-scope
Release validation remains the final authority: clean-clone build, full unit and integration suites, applicable E2E, and signed artifact verification.
The operational target for the default pull-request tier is under 15 minutes, with no desktop packaging. This is a target rather than an SLA; dependency installation and hosted-runner availability still vary. Behavior changes should include coverage reachable from the changed source so Vitest's related test selection can execute it.
Optional Desktop Artifacts, packaging previews, and release workflows are not
merge blockers outside their path boundary. If one starts without providing
evidence required by the pull request, continue based on required checks;
maintainers may cancel the redundant run.
Questions?
Open a GitHub Discussion or reach out to the maintainers.
Thanks for contributing! 🎉