@delegance/claude-autopilot 7.11.0 → 7.11.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/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/skills/autopilot/SKILL.md +19 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
- v5.6 Phase 7 (docs reconciliation) — pending.
|
|
4
4
|
|
|
5
|
+
## 7.11.1 — 2026-05-25
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- **Concurrent multi-PR dispatch default in `skills/autopilot/SKILL.md`.** When the user describes multiple independent deliverables in one invocation, the autopilot skill now instructs dispatch as parallel Agent subagent invocations (each in its own worktree-isolated branch). Only serializes on explicit user request or genuine cross-PR dependency. Previously this default was only documented in operator-side overrides.
|
|
10
|
+
|
|
5
11
|
## 7.11.0 — 2026-05-20
|
|
6
12
|
|
|
7
13
|
**v7.11.0 — Concurrent subagent dispatch (GA).** This release closes the
|
package/package.json
CHANGED
|
@@ -145,6 +145,25 @@ Rules:
|
|
|
145
145
|
- Specs may contain sensitive architecture details (tenant/RLS behavior, auth flows, schema names, internal endpoints). The "no secrets" rule extends to "no production-sensitive design content in tempfiles you'd be uncomfortable surfacing"; paraphrase such content before writing
|
|
146
146
|
- Never write secrets, API keys, or production credentials to tempfiles regardless of location
|
|
147
147
|
|
|
148
|
+
## DEFAULT: Concurrent multi-PR dispatch when the user supplies multiple independent deliverables
|
|
149
|
+
|
|
150
|
+
When the user describes multiple independent deliverables in one invocation (e.g., "ship A, B, and C as separate PRs"), dispatch them as **parallel Agent subagent invocations** in a single message — each in its own isolated worktree (`isolation: "worktree"`), each running its own end-to-end pipeline (brainstorm → spec → plan → implement → validate → PR → codex-review → bugbot). Do not serialize them. Concurrent dispatch is the default unless explicit serialization is requested. Only serialize when the user explicitly says so OR the deliverables depend on each other.
|
|
151
|
+
|
|
152
|
+
### Independence preflight (run before dispatching concurrently)
|
|
153
|
+
|
|
154
|
+
Before fanning out, do a quick dependency/conflict scan. Serialize (or designate ONE coordinator PR for the shared edit) when any of the following are true for two or more proposed deliverables:
|
|
155
|
+
|
|
156
|
+
- **Shared release metadata**: root `package.json` version, `package-lock.json`, workspace `package.json` versions, `CHANGELOG.md`, release notes.
|
|
157
|
+
- **Shared schema or contracts**: DB migrations (`data/deltas/` or equivalent), RLS policies, generated types (`types/supabase.ts` or equivalent), public API contracts, OpenAPI/JSON schemas.
|
|
158
|
+
- **Shared infrastructure**: queue/topic names, env-var registry, shared TypeScript types/interfaces consumed by all PRs, monorepo config (`tsconfig`, `nx.json`, workspace globs).
|
|
159
|
+
- **Same module/route**: PRs that all touch the same handler, the same React component tree, or the same service file.
|
|
160
|
+
|
|
161
|
+
If file ownership across the PRs is genuinely disjoint AND none of the shared-artifact categories above apply, proceed concurrently. Otherwise, either serialize (run sequentially in dependency order) or split out the shared edit into a single coordinator PR that lands first, then dispatch the dependent PRs concurrently against the post-merge base.
|
|
162
|
+
|
|
163
|
+
### Avoid duplicated global edits across concurrent subagents
|
|
164
|
+
|
|
165
|
+
When dispatched concurrently, individual feature subagents should NOT independently bump versions, edit `CHANGELOG.md`, regenerate lockfiles, or touch release metadata unless the parent operator has explicitly assigned that edit to exactly one subagent. The default for a fan-out is: feature code only in each subagent; release/version/changelog changes go in a separate coordinator PR or are added by the operator after the fan-out merges. This prevents merge conflicts on global artifacts that are otherwise unrelated to each PR's feature work.
|
|
166
|
+
|
|
148
167
|
## Step 0: Brainstorming with per-step Codex validation
|
|
149
168
|
|
|
150
169
|
**Skip this step entirely if a spec already exists.** Otherwise:
|