Developer Experience
This pack's native-safe metadata marks it as surface: planned-adjacent, primary-route: false, and support-tier: planned.
Use this pack as a bounded planned adjacent surface after ../../reference/routing-matrix.md points here for contributor-facing workflow work: onboarding, local setup contracts, repo ergonomics, package and workspace conventions, fast feedback loops, and review norms that shape the pre-merge inner loop.
This pack keeps the local developer path explicit, fast, and debuggable once the dominant route is already chosen. It is not the primary place to discover adjacent-pack routing, helper fit, or support posture, so send that first pass back to ../../reference/routing-matrix.md. Use the overlays in reference/package-managers-monorepos.md and reference/local-dev-environments.md when workspace shape, toolchain constraints, local services, or environment setup details dominate the task, and keep CI, deployment, and runtime ownership with devops-platform.
For setup posture, prefer refining an existing project in place. Treat direct create / init / new flows as greenfield-only and use them only when explicitly requested. Defer the full setup policy to ../../reference/project-setup-policy.md.
Core focus
- Reduce time from clone to first successful local change.
- Make setup prerequisites, toolchain versions, scripts, and environment expectations explicit.
- Keep workspace, dependency, and task-runner behavior readable across repos and monorepos.
- Optimize pre-merge feedback loops for lint, typecheck, tests, local preview, and debugging.
- Improve review handoff, contributor guidance, and friction reporting without inventing a separate ops layer.
Shared standards
- Treat the local dev contract as a product surface: required versions, bootstrap commands, environment files, and local services should be easy to discover and repeat.
- Prefer one clear package-manager and lockfile story per repo or workspace; mixed installers and hidden fallbacks create support debt fast.
- Keep root scripts, package scripts, workspace tasks, and cache behavior predictable so contributors know where to run checks and why.
- Make feedback loops incremental when possible: narrow tasks, fast smoke checks, and reusable setup steps should come before heavyweight full-repo commands.
- Capture setup friction in docs or scripts while it is fresh instead of relying on reviewer memory or tribal knowledge.
Default workflow
- Read
../../reference/routing-matrix.md first so planned-adjacent routing, helper discovery, and non-primary positioning come from the matrix instead of this pack.
- Inspect current contributor friction: prerequisites, setup steps, workspace layout, local services, and slow feedback loops.
- Choose the relevant overlay:
reference/package-managers-monorepos.md for workspace and toolchain shape, or reference/local-dev-environments.md for environment bootstrap and parity concerns.
- Make the local contract explicit through scripts, version managers, environment examples, and contributor-facing instructions before optimizing edge cases.
- Shorten the inner loop for the highest-frequency tasks first: install, run, test, lint, typecheck, and basic debugging.
- Run
review-work after substantial developer-experience changes.
Collaboration in this repo
- Use
Explore before editing so local setup scripts, workspace rules, and contributor docs match existing repo conventions.
- Use
Librarian or Context7 when package-manager, workspace, or local environment tooling details need a source-of-truth check.
- Treat this pack as planned and non-primary for routing discovery, and defer adjacent-pack choice or helper selection back to
../../reference/routing-matrix.md.
- Pair with
devops-platform when local development depends on containers, seeded services, or environment parity, but keep contributor ergonomics as the primary outcome.
- Pair with
documentation-sdk when onboarding, command docs, or examples need to become durable reference material.
Overlays
reference/package-managers-monorepos.md for workspace boundaries, lockfile and package-manager choices, task orchestration, and monorepo ergonomics.
reference/local-dev-environments.md for prerequisites, environment files, local services, containerized dev setups, seeded data, and cross-platform setup friction.
Guardrails
- Do not let this pack absorb CI, deployment, or runtime-operations ownership.
- Do not hide setup rules in tribal knowledge, one-off shell steps, or reviewer folklore.
- Do not let this planned adjacent pack read like a primary routing or support surface.
- Do not optimize one local machine shape while leaving the repo-wide contributor contract implicit.
1---2name: developer-experience3description: Planned adjacent, non-primary: Improve contributor inner loops, onboarding, local setup ergonomics, and fast feedback without absorbing CI, deployment, or runtime operations.4---56# Developer Experience78This pack's native-safe metadata marks it as `surface: planned-adjacent`, `primary-route: false`, and `support-tier: planned`.910Use this pack as a bounded planned adjacent surface after `../../reference/routing-matrix.md` points here for contributor-facing workflow work: onboarding, local setup contracts, repo ergonomics, package and workspace conventions, fast feedback loops, and review norms that shape the pre-merge inner loop.1112This pack keeps the local developer path explicit, fast, and debuggable once the dominant route is already chosen. It is not the primary place to discover adjacent-pack routing, helper fit, or support posture, so send that first pass back to `../../reference/routing-matrix.md`. Use the overlays in `reference/package-managers-monorepos.md` and `reference/local-dev-environments.md` when workspace shape, toolchain constraints, local services, or environment setup details dominate the task, and keep CI, deployment, and runtime ownership with `devops-platform`.1314For setup posture, prefer refining an existing project in place. Treat direct `create` / `init` / `new` flows as greenfield-only and use them only when explicitly requested. Defer the full setup policy to `../../reference/project-setup-policy.md`.1516## Core focus1718- Reduce time from clone to first successful local change.19- Make setup prerequisites, toolchain versions, scripts, and environment expectations explicit.20- Keep workspace, dependency, and task-runner behavior readable across repos and monorepos.21- Optimize pre-merge feedback loops for lint, typecheck, tests, local preview, and debugging.22- Improve review handoff, contributor guidance, and friction reporting without inventing a separate ops layer.2324## Shared standards2526- Treat the local dev contract as a product surface: required versions, bootstrap commands, environment files, and local services should be easy to discover and repeat.27- Prefer one clear package-manager and lockfile story per repo or workspace; mixed installers and hidden fallbacks create support debt fast.28- Keep root scripts, package scripts, workspace tasks, and cache behavior predictable so contributors know where to run checks and why.29- Make feedback loops incremental when possible: narrow tasks, fast smoke checks, and reusable setup steps should come before heavyweight full-repo commands.30- Capture setup friction in docs or scripts while it is fresh instead of relying on reviewer memory or tribal knowledge.3132## Default workflow33341. Read `../../reference/routing-matrix.md` first so planned-adjacent routing, helper discovery, and non-primary positioning come from the matrix instead of this pack.352. Inspect current contributor friction: prerequisites, setup steps, workspace layout, local services, and slow feedback loops.363. Choose the relevant overlay: `reference/package-managers-monorepos.md` for workspace and toolchain shape, or `reference/local-dev-environments.md` for environment bootstrap and parity concerns.374. Make the local contract explicit through scripts, version managers, environment examples, and contributor-facing instructions before optimizing edge cases.385. Shorten the inner loop for the highest-frequency tasks first: install, run, test, lint, typecheck, and basic debugging.396. Run `review-work` after substantial developer-experience changes.4041## Collaboration in this repo4243- Use `Explore` before editing so local setup scripts, workspace rules, and contributor docs match existing repo conventions.44- Use `Librarian` or `Context7` when package-manager, workspace, or local environment tooling details need a source-of-truth check.45- Treat this pack as planned and non-primary for routing discovery, and defer adjacent-pack choice or helper selection back to `../../reference/routing-matrix.md`.46- Pair with `devops-platform` when local development depends on containers, seeded services, or environment parity, but keep contributor ergonomics as the primary outcome.47- Pair with `documentation-sdk` when onboarding, command docs, or examples need to become durable reference material.4849## Overlays5051- `reference/package-managers-monorepos.md` for workspace boundaries, lockfile and package-manager choices, task orchestration, and monorepo ergonomics.52- `reference/local-dev-environments.md` for prerequisites, environment files, local services, containerized dev setups, seeded data, and cross-platform setup friction.5354## Guardrails5556- Do not let this pack absorb CI, deployment, or runtime-operations ownership.57- Do not hide setup rules in tribal knowledge, one-off shell steps, or reviewer folklore.58- Do not let this planned adjacent pack read like a primary routing or support surface.59- Do not optimize one local machine shape while leaving the repo-wide contributor contract implicit.