Awesome Reviewers

When CI/CD builds and release automation publish or test packages from a monorepo, inter-workspace dependency specs and lockfile contents must stay publish-safe and CI-consistent.

Standards 1) No unresolvable workspace paths in published deps

2) Use publish-time-resolved specs

3) Keep lockfile aligned with manifests

4) If CI starts running new workspaces, ensure reporting is wired

Example (recommended inter-workspace dependency style)

{
  "dependencies": {
    "@qwen-code/channel-base": "workspace:*"
  }
}

Operational checklist for PRs affecting release/CI