* fix: prevent broad verification policy drift * ci: keep cadence controls out of workspace tests
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.tsUse direct
exec vitest runinvocation for exact-file slices. Do not usepnpm --filter <package> test -- --run <test-files>as a focused command; package wrappers can ignore that file boundary and expand into the entire package suite.Build
@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.
- The dependency-free delivery cadence checker guards these rules in pre-commit and the early CI scope-control job without installing packages or running workspace tests.
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.
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.
Risk-Proportional Review
Review the changed behavior once before committing. In that pass, cover correctness and any security, reliability, performance, accessibility, or architecture risks that actually apply to the change.
Do not create separate review tasks for inapplicable categories or require numeric review scores. If the review finds an unsafe behavior, fix it and recheck the affected path before committing. Independent or cross-model review is optional unless a configured governance policy, issue owner, or release owner explicitly requires it.
Pre-Merge Checklist
Before merging, verify the checks selected for the changed product boundary:
- Selected CI tier: Every required check started for the pull request is green.
- Focused local evidence: Changed behavior and meaningful failure modes are covered.
- Shared contracts, when changed: New types are exported and known consumers type-check.
- Configuration, when changed: Ports, URLs, timeouts, environment variables, CSP, and CORS behave in the affected modes.
- Frontend integration, when changed: HTTP calls use shared helpers and location-sensitive behavior avoids hardcoded hosts.
- Milestone gate, when selected: Complete build, typecheck, test, security, integration, E2E, or artifact checks required by
ci:fullor the release plan pass once.
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
Run browser or API smoke tests only when the change affects that product boundary. Choose the smallest runtime check that proves the behavior:
- Server or API changes: Exercise the changed endpoint and its meaningful auth or failure path. Add a health check only when startup or routing changed.
- Web changes: Open the changed route and verify its primary interaction, keyboard flow, and failure state.
- Realtime changes: Verify the changed event path with the minimum number of clients needed to prove propagation.
- Desktop changes: Use the relevant desktop readiness or packaging smoke check.
- Documentation and static tooling: No runtime smoke is required unless deterministic CI escalates the change.
Static review does not replace runtime evidence when runtime behavior changed, but unrelated browser, CRUD, WebSocket, or packaging checks add no useful confidence to a focused change.
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! 🎉