@fredericboyer/dev-team 0.8.0 → 0.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fredericboyer/dev-team",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "Adversarial AI agent team for any project — installs Claude Code agents, hooks, and skills that enforce quality through productive friction",
5
5
  "main": "dist/init.js",
6
6
  "types": "dist/init.d.ts",
@@ -90,7 +90,7 @@ If the implementing agent disagrees with a reviewer:
90
90
  ### 6. Complete
91
91
 
92
92
  When no `[DEFECT]` findings remain:
93
- 1. **Create PR and merge**: If changes are on a feature branch with no PR yet, create the PR (body must include `Closes #<issue>`). Then invoke `/dev-team:merge` to set auto-merge, monitor CI, handle Copilot review comments, and verify the merge completes. Work is NOT done until the PR is merged.
93
+ 1. **Deliver the work**: Ensure the task is complete end-to-end. If the task produces a PR, create it (body must include `Closes #<issue>`), ensure CI is green, reviews have passed, and the branch is up to date — then follow the project's merge workflow. If the task produces other artifacts, verify they are in the expected state. Work is not done until the deliverable is delivered — not just created.
94
94
  2. **Clean up worktree**: If the work was done in a worktree, clean it up after the branch is pushed and the PR is created. Do not wait for merge to clean the worktree.
95
95
  3. Spawn **@dev-team-borges** (Librarian) to review memory freshness, cross-agent coherence, and system improvement opportunities. This is mandatory — Borges runs at the end of every task.
96
96
  4. Summarize what was implemented and what was reviewed.
@@ -98,7 +98,7 @@ When no `[DEFECT]` findings remain:
98
98
  6. List which agents reviewed and their verdicts.
99
99
  7. Write learnings to agent memory files.
100
100
 
101
- **Task is complete only when the PR is merged.** If merge fails (CI failures, merge conflicts, branch protection), report the blocker to the human rather than leaving the PR unattended.
101
+ **Task is complete only when the deliverable is delivered.** If a PR cannot merge (CI failures, merge conflicts, branch protection), report the blocker to the human rather than leaving work unattended.
102
102
 
103
103
  ### Parallel orchestration
104
104
 
@@ -118,15 +118,11 @@ When working on multiple issues simultaneously (see ADR-019):
118
118
 
119
119
  Conflict groups (issues with file overlaps) execute sequentially within the group but in parallel with other groups and independent issues.
120
120
 
121
- ### PR merge workflow
121
+ ### Completing work
122
122
 
123
- When managing PRs through to merge, use `/dev-team:merge` for the merge step. This skill handles:
124
- - Checking and addressing Copilot review comments
125
- - Setting auto-merge with squash strategy
126
- - Monitoring CI status and reporting when merged
127
- - Post-merge actions (pull latest main, report merge SHA, suggest next work)
123
+ Work is done when the deliverable is delivered — not just created. For PRs, this means merged (or ready-to-merge per the project's workflow). For other deliverables (docs, configs, releases), this means verified in the expected state.
128
124
 
129
- Do not manually run `gh pr merge` or poll CI status -- delegate to the merge skill.
125
+ Follow the project's merge workflow. Some projects use auto-merge, others require manual approval. If the project has a `/dev-team:merge` skill or similar automation, use it. Otherwise, ensure the PR is in a mergeable state (CI green, reviews passed, branch updated) and report readiness.
130
126
 
131
127
  ## Focus areas
132
128
 
@@ -78,4 +78,3 @@ After the review report is delivered:
78
78
  2. If Borges was not spawned, the review is INCOMPLETE.
79
79
  3. **Borges memory gate**: If Borges reports that any participating agent's MEMORY.md is empty or contains only boilerplate, this is a **[DEFECT]** that blocks review completion. The agent must write substantive learnings before the review can be marked done.
80
80
  4. Include Borges's recommendations in the final report.
81
- 5. **If the verdict is Approve** and this review is for a PR that is ready to merge, invoke `/dev-team:merge` to set auto-merge, monitor CI, and verify the merge completes. The PR lifecycle does not end at approval -- it ends at merge.
@@ -82,7 +82,7 @@ Before starting work, check for open security alerts: run `/dev-team:security-st
82
82
  ## Completion
83
83
 
84
84
  When the loop exits:
85
- 1. **Create PR and merge**: If changes are on a feature branch, create the PR (body must include `Closes #<issue>`) and invoke `/dev-team:merge` to set auto-merge, monitor CI, handle Copilot review comments, and verify the merge completes. Work is NOT done until the PR is merged. If merge fails (CI failures, merge conflicts, branch protection), report the blocker to the human rather than leaving the PR unattended.
85
+ 1. **Deliver the work**: If changes are on a feature branch, create the PR (body must include `Closes #<issue>`). Ensure the PR is ready to merge: CI green, reviews passed, branch up to date. Then follow the project's merge workflow use `/dev-team:merge` if the project has it configured, otherwise report readiness. If merge fails (CI failures, merge conflicts, branch protection), report the blocker to the human rather than leaving work unattended.
86
86
  2. **Clean up worktree**: If the work was done in a worktree, clean it up after the branch is pushed and the PR is created. Do not wait for merge to clean the worktree.
87
87
  3. You MUST spawn **@dev-team-borges** (Librarian) as the final step to review memory freshness, cross-agent coherence, and system improvement opportunities. Do NOT skip this.
88
88
  4. If Borges was not spawned, the task is INCOMPLETE.