Project Registry
Overdeck’s project registry enables multi-project management with intelligent issue routing and label-based workspace creation.Overview
Projects are registered in~/.overdeck/projects.yaml. Each project can have:
- Issue routing rules - Route issues to different subdirectories based on labels
- Custom workspace commands - For complex polyrepo setups
- Linear team mapping - Connect projects to Linear teams
projects.yaml is the source of truth, much of this configuration is also surfaced in the dashboard’s Settings page, alongside model routing for the agents and conversations Overdeck runs and tracker API keys.
Overdeck manages both the workflow pipeline and the agents and conversations
that move issues through it. The Settings page is where model routing for those
agents lives, while per-project routing and workspace rules below are edited in
~/.overdeck/projects.yaml.Registering Projects
Rename a project
Project Configuration
Projects are defined in~/.overdeck/projects.yaml:
Configuration Fields
*Not required if
issue_prefixes or issue_pattern is specified.
Release Configuration
The optionalrelease: section tells Overdeck how to coordinate a project’s post-merge rollout across multiple components. Overdeck resolves a release plan, waits for each component to become healthy, runs verification commands, halts the plan on failure, and runs a rollback hook when one is configured.
Component fields
Release semantics
trigger: automeans Overdeck waits and verifies an external deploy; it does not invoke the provider deploy itself.- Components are released in
depends_onorder using a topological sort. A component is only started after its dependencies pass. - If any check fails, Overdeck stops all later components and records the final issue-level status.
- Projects without a
release:section are skipped cleanly — no failure is recorded.
Release status lifecycle
Issue-levelreleaseStatus moves through the following values:
pending → releasing → passedpending → releasing → failedpending → releasing → partialpending → releasing → rolled_backpending → skipped
The seven possible values are: pending, releasing, passed, failed, partial, rolled_back, and skipped.
Inspect or retry a release from the CLI with pan rollout:
pan rollout is distinct from pan release, which publishes npm stable/canary packages.
Label-Based Routing
Issues are routed to different subdirectories based on their labels:- Labeled issues - Matched against
issue_routingrules in order - Default route - Issues without matching labels use the
default: truepath - Fallback - If no default, uses the project root path
/home/user/projects/myn/splash/workspaces/feature-min-xxx/.
Linear Project Mapping
If you have multiple Linear projects, configure which local directory each maps to. Create/edit~/.overdeck/project-mappings.json:
Custom Workspace Commands (Legacy)
Note: For most polyrepo projects, use the built-in workspace configuration (see Polyrepo Configuration) instead of custom scripts. Custom commands are only needed for highly specialized setups.
For projects that need logic beyond what the configuration supports, you can specify custom workspace scripts:
workspace_command is specified, Overdeck calls your script instead of creating a standard git worktree. The script receives the normalized issue ID (e.g., min-123) as an argument.
When workspace_remove_command is specified, Overdeck calls your script when deleting workspaces (e.g., aborting planning with “delete workspace” enabled). This is important for complex setups that need to:
- Stop Docker containers and remove volumes
- Clean up root-owned files created by containers
- Remove git worktrees from multiple repositories
- Release port assignments
- Remove DNS entries
- Creating git worktrees for multiple repositories (polyrepo structure)
- Setting up Docker Compose files and dev containers
- Configuring environment variables and
.envfiles - Setting up DNS entries for workspace-specific URLs (e.g., Traefik routing)
- Creating a
./devscript for container management - Copying agent configuration templates (CLAUDE.md, .mcp.json, etc.)
pan workspace create command will automatically detect and use your custom script.
Project Initialization
When registering a new project with Overdeck (pan project add), the system will:
- Check for existing PRD - Look for
docs/PRD.md,PRD.md,README.md, or similar - If found: Use it to create/update the canonical PRD format, prompting for any missing crucial information
- If not found: Generate one by:
- Analyzing the codebase structure
- Identifying key technologies and patterns
- Asking discovery questions about the product
Progressive Workspaces
For large projects with 10+ repositories, progressive workspaces provide on-demand repo checkout. Enable inworkspace config:
See Progressive Polyrepo for full documentation.
Related Guides
- Polyrepo Configuration - Multi-repository workspace setup
- Progressive Polyrepo - Large-scale polyrepo with on-demand checkout
- Setup Wizard - Interactive project configuration
- Meta Repos - Team conventions and onboarding kits
- Issue Tracker Integration - Connecting to Linear, GitHub, Rally, etc.
- Workspaces - Workspace management