@laitszkin/apollo-toolkit 3.4.0 → 3.5.0
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/AGENTS.md +2 -0
- package/CHANGELOG.md +13 -0
- package/README.md +3 -0
- package/analyse-app-logs/scripts/__pycache__/filter_logs_by_time.cpython-312.pyc +0 -0
- package/analyse-app-logs/scripts/__pycache__/log_cli_utils.cpython-312.pyc +0 -0
- package/analyse-app-logs/scripts/__pycache__/search_logs.cpython-312.pyc +0 -0
- package/docs-to-voice/scripts/__pycache__/docs_to_voice.cpython-312.pyc +0 -0
- package/generate-spec/SKILL.md +8 -2
- package/generate-spec/agents/openai.yaml +1 -1
- package/generate-spec/references/templates/checklist.md +3 -3
- package/generate-spec/references/templates/tasks.md +3 -3
- package/generate-spec/scripts/__pycache__/create-specscpython-312.pyc +0 -0
- package/implement-specs-with-subagents/SKILL.md +122 -0
- package/implement-specs-with-subagents/agents/openai.yaml +4 -0
- package/katex/scripts/__pycache__/render_katex.cpython-312.pyc +0 -0
- package/open-github-issue/scripts/__pycache__/open_github_issue.cpython-312.pyc +0 -0
- package/package.json +1 -1
- package/read-github-issue/scripts/__pycache__/find_issues.cpython-312.pyc +0 -0
- package/read-github-issue/scripts/__pycache__/read_issue.cpython-312.pyc +0 -0
- package/resolve-review-comments/scripts/__pycache__/review_threads.cpython-312.pyc +0 -0
- package/text-to-short-video/scripts/__pycache__/enforce_video_aspect_ratio.cpython-312.pyc +0 -0
package/AGENTS.md
CHANGED
|
@@ -39,6 +39,8 @@ This repository enables users to install and run a curated set of reusable agent
|
|
|
39
39
|
- Users can learn new or improved skills from recent Codex conversation history.
|
|
40
40
|
- Users can audit and maintain the skill catalog itself, including dependency classification and shared-skill extraction decisions.
|
|
41
41
|
- Users can implement approved spec planning sets directly in the current checkout and commit them to the active branch.
|
|
42
|
+
- Users can implement approved spec planning sets inside isolated git worktrees and keep the parent checkout clean.
|
|
43
|
+
- Users can coordinate approved multi-spec implementation batches by assigning each spec directory to an independent worktree-backed subagent with bounded concurrency.
|
|
42
44
|
- Users can summarize mistakes into separate multiple-choice and long-answer error books backed by structured reference files and rendered PDFs.
|
|
43
45
|
- Users can build or review marginfi protocol integrations using official SDK, CLI, protocol, and The Arena documentation.
|
|
44
46
|
- Users can create or maintain `AGENTS.md` so project constraints stay aligned with the repository.
|
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,19 @@ All notable changes to this repository are documented in this file.
|
|
|
7
7
|
### Added
|
|
8
8
|
- (None yet)
|
|
9
9
|
|
|
10
|
+
## [v3.5.0] - 2026-04-28
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- Add `implement-specs-with-subagents`, a coordinator skill that assigns each approved spec directory to an independent worktree-backed subagent with staggered starts and a maximum of four active implementation agents.
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
- Tighten `generate-spec` so current templates remain the binding format even when older project specs use different layouts.
|
|
17
|
+
|
|
18
|
+
## [v3.4.1] - 2026-04-28
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
- Clarify `generate-spec` unit drift check template fields so agents fill in expected results or assertions instead of the ambiguous `oracle` shorthand.
|
|
22
|
+
|
|
10
23
|
## [v3.4.0] - 2026-04-28
|
|
11
24
|
|
|
12
25
|
### Added
|
package/README.md
CHANGED
|
@@ -23,6 +23,8 @@ A curated skill catalog for Codex, OpenClaw, Trae, Agents, and Claude Code with
|
|
|
23
23
|
- generate-spec
|
|
24
24
|
- harden-app-security
|
|
25
25
|
- implement-specs
|
|
26
|
+
- implement-specs-with-subagents
|
|
27
|
+
- implement-specs-with-worktree
|
|
26
28
|
- improve-observability
|
|
27
29
|
- iterative-code-performance
|
|
28
30
|
- iterative-code-quality
|
|
@@ -196,6 +198,7 @@ The install commands below were checked with the Skills CLI unless otherwise not
|
|
|
196
198
|
Compatibility note:
|
|
197
199
|
|
|
198
200
|
- `generate-spec` is a local skill used by `develop-new-features` and `enhance-existing-features`, and it can produce either a single spec set under `docs/plans/{YYYY-MM-DD}/{change_name}/` or a coordinated parallel batch under `docs/plans/{YYYY-MM-DD}/{batch_name}/{change_name}/` with shared `coordination.md`.
|
|
201
|
+
- `implement-specs-with-subagents` coordinates one `implement-specs-with-worktree` subagent per spec directory for approved multi-spec batches, with staggered launches and a maximum of four active implementation subagents.
|
|
199
202
|
- `recover-missing-plan` is a local skill used by `enhance-existing-features` and `ship-github-issue-fix` when a referenced `docs/plans/...` spec set is missing or archived.
|
|
200
203
|
- `maintain-skill-catalog` can conditionally use `find-skills`, but its install source is not verified in this repository, so it is intentionally omitted from the table.
|
|
201
204
|
- `read-github-issue` uses GitHub CLI (`gh`) directly for remote issue discovery and inspection, so it does not add any extra skill dependency.
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/generate-spec/SKILL.md
CHANGED
|
@@ -15,8 +15,8 @@ description: Generate and maintain shared feature planning artifacts (`spec.md`,
|
|
|
15
15
|
## Standards
|
|
16
16
|
|
|
17
17
|
- Evidence: Review the relevant code, configs, and authoritative docs before filling requirements or test plans; when external dependencies, libraries, frameworks, APIs, or platforms are involved, checking their official documentation is mandatory during spec creation.
|
|
18
|
-
- Execution: Generate the planning files first, keep each spec set tightly scoped, split broader work into multiple independent spec sets when needed, ensure every batch spec is independently completable and truly parallel-implementable without depending on another spec set to land first, surface shared-file or shared-contract collision risks during planning, resolve those coordination rules before implementation starts, complete them with traceable requirements and risks, handle clarification updates, then wait for explicit approval before implementation.
|
|
19
|
-
- Quality: Keep `spec.md`, `tasks.md`, `checklist.md`, `contract.md`, and `design.md` synchronized, use `test-case-strategy` to map each planned test to a concrete risk or requirement, and tailor the templates so only applicable items remain active.
|
|
18
|
+
- Execution: Generate the planning files from this skill's current templates first, keep each spec set tightly scoped, split broader work into multiple independent spec sets when needed, ensure every batch spec is independently completable and truly parallel-implementable without depending on another spec set to land first, surface shared-file or shared-contract collision risks during planning, resolve those coordination rules before implementation starts, complete them with traceable requirements and risks, handle clarification updates, then wait for explicit approval before implementation.
|
|
19
|
+
- Quality: Keep `spec.md`, `tasks.md`, `checklist.md`, `contract.md`, and `design.md` synchronized, use `test-case-strategy` to map each planned test to a concrete risk or requirement, preserve the actual headings and field structure from this skill's templates, and tailor the templates so only applicable items remain active.
|
|
20
20
|
- Output: Store planning artifacts under `docs/plans/{YYYY-MM-DD}/{change_name}/` for single-spec work, or `docs/plans/{YYYY-MM-DD}/{batch_name}/{change_name}/` plus `coordination.md` for multi-spec parallel work whose member specs remain independently approvable, independently implementable, and ready for concurrent worktree execution with pre-agreed collision rules, and keep them concise, executable, and easy to update.
|
|
21
21
|
|
|
22
22
|
## Goal
|
|
@@ -36,6 +36,8 @@ Own the shared planning-doc lifecycle for feature work so other skills can reuse
|
|
|
36
36
|
- Inspect existing `docs/plans/` directories before deciding whether to edit an existing plan set.
|
|
37
37
|
- Reuse an existing plan set only when it clearly matches the same requested issue/change scope.
|
|
38
38
|
- If the requested work is adjacent to, but not actually covered by, an existing plan set, create a new directory instead of overwriting the neighboring one.
|
|
39
|
+
- Treat existing or archived project-local specs as scope evidence only, not as formatting authority.
|
|
40
|
+
- Do not copy older spec layouts, condensed repo conventions, or neighboring plan structures when they differ from this skill's current templates.
|
|
39
41
|
|
|
40
42
|
### 2) Generate the planning files
|
|
41
43
|
|
|
@@ -63,6 +65,8 @@ Own the shared planning-doc lifecycle for feature work so other skills can reuse
|
|
|
63
65
|
- `references/templates/design.md`
|
|
64
66
|
- Generate `references/templates/coordination.md` at the batch root when multiple spec sets are intentionally created for parallel implementation.
|
|
65
67
|
- Save files under `docs/plans/{YYYY-MM-DD}/{change_name}/` or `docs/plans/{YYYY-MM-DD}/{batch_name}/{change_name}/`.
|
|
68
|
+
- After generation, fill the files in place without renaming, removing, or collapsing template headings unless a heading is explicitly template-only and not applicable to the real scope.
|
|
69
|
+
- Before approval, compare the drafted files against the current template headings and required fields; fix any drift caused by following older project examples.
|
|
66
70
|
|
|
67
71
|
### 3) Fill `spec.md`
|
|
68
72
|
|
|
@@ -174,6 +178,8 @@ Own the shared planning-doc lifecycle for feature work so other skills can reuse
|
|
|
174
178
|
- Use kebab-case for `change_name`; avoid spaces and special characters.
|
|
175
179
|
- Path rule: `scripts/...` and `references/...` in this file always mean paths under the current skill folder, not the target project root.
|
|
176
180
|
- Never overwrite a nearby issue's plan set just because the technical area overlaps; shared modules are not sufficient evidence that the scope is the same.
|
|
181
|
+
- Template authority rule: the current `references/templates/*.md` files in this skill are the binding format for new or refreshed spec documents. Older `docs/plans/...` files may inform scope, terminology, and historical decisions, but they must not override the current template structure.
|
|
182
|
+
- Before presenting specs for approval, run a template-drift pass: verify the expected template sections are present, remove stale placeholder examples, and ensure any removed section has a scope-based reason rather than being omitted because an older project spec omitted it.
|
|
177
183
|
|
|
178
184
|
## References
|
|
179
185
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
interface:
|
|
2
2
|
display_name: "generate-spec"
|
|
3
3
|
short_description: "Generate shared feature spec, task, and checklist docs before coding"
|
|
4
|
-
default_prompt: "Use $generate-spec to create or update single-spec plans under docs/plans/<date>/<change_name>/ or parallel batches under docs/plans/<date>/<batch_name>/<change_name>/ with a shared coordination.md,
|
|
4
|
+
default_prompt: "Use $generate-spec to create or update single-spec plans under docs/plans/<date>/<change_name>/ or parallel batches under docs/plans/<date>/<batch_name>/<change_name>/ with a shared coordination.md, treating this skill's current references/templates/*.md files as the binding format even when older project specs use different layouts; ensure every batch spec remains independently approvable, independently implementable, and safe for true parallel execution without depending on another batch spec landing first; surface shared-file or shared-contract collision risks during planning, settle ownership and additive-only rules in coordination.md before implementation starts, fill BDD requirements, use $test-case-strategy for risk-driven test planning and unit drift checks, make tasks.md an atomic implementation queue with concrete outputs and verification hooks, document external dependency contracts in contract.md when they materially constrain the change, write the architecture/design delta in design.md, process clarification updates, and wait for explicit approval before implementation."
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
- Property/matrix focus: [invariant / generated business input space / external state matrix / adversarial case]
|
|
32
32
|
- External dependency strategy: [none / mocked service states / near-real dependency]
|
|
33
33
|
- Oracle/assertion focus: [exact output / persisted state / side effects / no partial write / compensation / emitted event / permission denial]
|
|
34
|
-
- Unit drift check: [UT-xx target unit
|
|
34
|
+
- Unit drift check: [UT-xx target unit; expected result/assertion, or N/A with reason]
|
|
35
35
|
- Test result: `PASS / FAIL / BLOCKED / NOT RUN / N/A`
|
|
36
36
|
- Notes (optional): [risk, limitation, observation]
|
|
37
37
|
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
- Property/matrix focus: [invariant / generated business input space / external state matrix / adversarial case]
|
|
44
44
|
- External dependency strategy: [none / mocked service states / near-real dependency]
|
|
45
45
|
- Oracle/assertion focus: [exact output / persisted state / side effects / no partial write / compensation / emitted event / permission denial]
|
|
46
|
-
- Unit drift check: [UT-xx target unit
|
|
46
|
+
- Unit drift check: [UT-xx target unit; expected result/assertion, or N/A with reason]
|
|
47
47
|
- Test result: `PASS / FAIL / BLOCKED / NOT RUN / N/A`
|
|
48
48
|
- Notes (optional): [risk, limitation, observation]
|
|
49
49
|
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
- Property/matrix focus: [invariant / generated business input space / external state matrix / adversarial case]
|
|
56
56
|
- External dependency strategy: [none / mocked service states / near-real dependency]
|
|
57
57
|
- Oracle/assertion focus: [exact output / persisted state / side effects / no partial write / compensation / emitted event / permission denial]
|
|
58
|
-
- Unit drift check: [UT-xx target unit
|
|
58
|
+
- Unit drift check: [UT-xx target unit; expected result/assertion, or N/A with reason]
|
|
59
59
|
- Test result: `PASS / FAIL / BLOCKED / NOT RUN / N/A`
|
|
60
60
|
- Notes (optional): [risk, limitation, observation]
|
|
61
61
|
|
|
@@ -16,7 +16,7 @@ Out of scope: [files/modules/behaviors this task must not change]
|
|
|
16
16
|
- Output: [specific code/doc/test artifact]
|
|
17
17
|
- Done when: [observable completion condition]
|
|
18
18
|
- Verify with: [focused command/check/manual inspection]
|
|
19
|
-
- Unit drift check: [UT-xx target unit
|
|
19
|
+
- Unit drift check: [UT-xx target unit; expected result/assertion, or N/A with reason]
|
|
20
20
|
- Do not: [explicit implementation-drift guardrail]
|
|
21
21
|
|
|
22
22
|
## **Task 2: [Task Title]**
|
|
@@ -32,7 +32,7 @@ Out of scope: [files/modules/behaviors this task must not change]
|
|
|
32
32
|
- Output: [specific code/doc/test artifact]
|
|
33
33
|
- Done when: [observable completion condition]
|
|
34
34
|
- Verify with: [focused command/check/manual inspection]
|
|
35
|
-
- Unit drift check: [UT-xx target unit
|
|
35
|
+
- Unit drift check: [UT-xx target unit; expected result/assertion, or N/A with reason]
|
|
36
36
|
- Do not: [explicit implementation-drift guardrail]
|
|
37
37
|
|
|
38
38
|
## **Task 3: [Task Title]**
|
|
@@ -48,7 +48,7 @@ Out of scope: [files/modules/behaviors this task must not change]
|
|
|
48
48
|
- Output: [specific code/doc/test artifact]
|
|
49
49
|
- Done when: [observable completion condition]
|
|
50
50
|
- Verify with: [focused command/check/manual inspection]
|
|
51
|
-
- Unit drift check: [UT-xx target unit
|
|
51
|
+
- Unit drift check: [UT-xx target unit; expected result/assertion, or N/A with reason]
|
|
52
52
|
- Do not: [explicit implementation-drift guardrail]
|
|
53
53
|
|
|
54
54
|
## Notes
|
|
Binary file
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: implement-specs-with-subagents
|
|
3
|
+
description: >-
|
|
4
|
+
Coordinate parallel implementation of multiple approved spec sets by assigning
|
|
5
|
+
each `docs/plans/.../<change_name>/` spec directory to a separate subagent that
|
|
6
|
+
uses `implement-specs-with-worktree`. Use when a user asks to implement a
|
|
7
|
+
multi-spec batch with subagents, parallel agents, delegated agents, or isolated
|
|
8
|
+
workers while keeping at most four implementation subagents active at once,
|
|
9
|
+
staggering starts to avoid rate-limit bursts, preserving independent subagent
|
|
10
|
+
contexts, and using the user's requested model when specified.
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# Implement Specs with Subagents
|
|
14
|
+
|
|
15
|
+
## Dependencies
|
|
16
|
+
|
|
17
|
+
- Required: `implement-specs-with-worktree` for each delegated spec implementation.
|
|
18
|
+
- Conditional: `generate-spec` if the batch needs clarification before implementation; `review-change-set` if the user asks for an integration review after subagents finish.
|
|
19
|
+
- Optional: none.
|
|
20
|
+
- Fallback: If the environment cannot start independent subagents, report that limitation and fall back only if the user explicitly approves serial `implement-specs-with-worktree` execution.
|
|
21
|
+
|
|
22
|
+
## Standards
|
|
23
|
+
|
|
24
|
+
- Evidence: Read the batch-level `coordination.md` when present, enumerate the exact spec directories to implement, and verify each delegated spec has the required planning files before starting subagents.
|
|
25
|
+
- Execution: Assign exactly one implementation subagent per spec directory, keep no more than four implementation subagents active at the same time, start subagents one at a time rather than in a burst, give each subagent an independent task-local context, and instruct every subagent to use `implement-specs-with-worktree` for its assigned spec.
|
|
26
|
+
- Quality: Preserve spec ownership boundaries, avoid duplicate delegation for the same spec, track branch/worktree/commit/test outcomes for every subagent, and pause new launches when a shared blocker, collision, or rate-limit pressure appears.
|
|
27
|
+
- Output: Return a concise implementation ledger covering each spec, its subagent result, worktree branch, commit or blocker, verification run, and any integration follow-up needed.
|
|
28
|
+
|
|
29
|
+
## Goal
|
|
30
|
+
|
|
31
|
+
Coordinate a multi-spec implementation batch safely by delegating each approved spec set to an isolated subagent-backed worktree implementation.
|
|
32
|
+
|
|
33
|
+
## Workflow
|
|
34
|
+
|
|
35
|
+
### 1) Identify the batch and implementation queue
|
|
36
|
+
|
|
37
|
+
- Locate the requested batch under `docs/plans/{YYYY-MM-DD}/{batch_name}/`.
|
|
38
|
+
- Read `coordination.md` first when it exists.
|
|
39
|
+
- Enumerate only the spec directories that are in scope for this request.
|
|
40
|
+
- For each spec directory, verify the presence of:
|
|
41
|
+
- `spec.md`
|
|
42
|
+
- `tasks.md`
|
|
43
|
+
- `checklist.md`
|
|
44
|
+
- `contract.md`
|
|
45
|
+
- `design.md`
|
|
46
|
+
- Do not delegate archived, sibling, or approximate specs unless the user explicitly includes them.
|
|
47
|
+
- If `coordination.md` says the batch is not ready for parallel implementation, stop and report the blocking coordination item instead of spawning subagents.
|
|
48
|
+
|
|
49
|
+
### 2) Build a delegation plan
|
|
50
|
+
|
|
51
|
+
- Create one queue item per spec directory.
|
|
52
|
+
- Assign one subagent to one spec only; never ask one subagent to implement multiple spec directories.
|
|
53
|
+
- Keep a visible ledger with:
|
|
54
|
+
- spec path
|
|
55
|
+
- intended branch/worktree name if known
|
|
56
|
+
- assigned subagent
|
|
57
|
+
- status
|
|
58
|
+
- commit
|
|
59
|
+
- tests
|
|
60
|
+
- blockers
|
|
61
|
+
- Determine the model policy before launch:
|
|
62
|
+
- If the user specifies a model, use that model for the implementation subagents when the environment supports model selection.
|
|
63
|
+
- If the user does not specify a model, let subagents use the same model or default model policy as the coordinating agent.
|
|
64
|
+
- If the environment does not expose model selection, state that the requested model cannot be enforced and continue only when the platform's default subagent model is acceptable.
|
|
65
|
+
|
|
66
|
+
### 3) Launch subagents gradually
|
|
67
|
+
|
|
68
|
+
- Maintain a maximum of four active implementation subagents at any time.
|
|
69
|
+
- Start subagents independently and one at a time.
|
|
70
|
+
- After each start, confirm that the subagent was accepted or is running before starting the next one.
|
|
71
|
+
- If a start fails due to throttling, rate limits, capacity, or platform pressure, wait before retrying and do not start additional subagents during the cooldown.
|
|
72
|
+
- Prefer steady scheduling over maximum burst parallelism; four is the ceiling, not a target that must always be filled.
|
|
73
|
+
|
|
74
|
+
### 4) Give each subagent independent context
|
|
75
|
+
|
|
76
|
+
For each subagent, provide only task-local instructions:
|
|
77
|
+
|
|
78
|
+
- Repository root.
|
|
79
|
+
- Exact spec directory path.
|
|
80
|
+
- Parent `coordination.md` path when present.
|
|
81
|
+
- Requirement to use `implement-specs-with-worktree`.
|
|
82
|
+
- Requirement to read the full spec bundle before editing.
|
|
83
|
+
- Requirement to implement inside its own isolated worktree.
|
|
84
|
+
- Requirement to run relevant tests.
|
|
85
|
+
- Requirement to backfill the spec documents after implementation.
|
|
86
|
+
- Requirement to commit locally unless the user explicitly changes the completion boundary.
|
|
87
|
+
- Requirement to report branch, worktree path, commit hash, tests, and blockers.
|
|
88
|
+
|
|
89
|
+
Do not pass the coordinating agent's full reasoning, unrelated sibling specs, or other subagents' private work unless a concrete coordination conflict requires it.
|
|
90
|
+
|
|
91
|
+
### 5) Monitor and coordinate
|
|
92
|
+
|
|
93
|
+
- While subagents run, track completions and blockers in the ledger.
|
|
94
|
+
- When one subagent finishes, record its branch, worktree path, commit, verification results, and changed ownership boundaries.
|
|
95
|
+
- Start the next queued spec only when the active count drops below four and no shared blocker is unresolved.
|
|
96
|
+
- If two subagents report overlapping edits to a shared file or contract, pause new launches, inspect the conflict against `coordination.md`, and resolve the ownership question before continuing.
|
|
97
|
+
- If a subagent fails for a spec-local issue, keep other independent subagents running, but do not launch additional work that depends on the failed scope.
|
|
98
|
+
- If failures indicate a batch-wide planning defect, stop scheduling new subagents and report the defect.
|
|
99
|
+
|
|
100
|
+
### 6) Finish the batch report
|
|
101
|
+
|
|
102
|
+
- Do not merge branches, archive specs, push, or release unless the user explicitly requests that follow-up.
|
|
103
|
+
- Summarize every spec outcome from the ledger.
|
|
104
|
+
- Distinguish completed local commits from blocked or partial specs.
|
|
105
|
+
- Report any integration review, merge order, or post-merge validation required by `coordination.md`.
|
|
106
|
+
|
|
107
|
+
## Working Rules
|
|
108
|
+
|
|
109
|
+
- One spec directory maps to one implementation subagent.
|
|
110
|
+
- Maximum active implementation subagents: four.
|
|
111
|
+
- Subagents must be started gradually, not all at once.
|
|
112
|
+
- Every subagent must have independent context scoped to its assigned spec.
|
|
113
|
+
- Every implementation subagent must use `implement-specs-with-worktree`.
|
|
114
|
+
- The coordinating agent owns scheduling, ledger tracking, and conflict escalation; implementation subagents own their assigned worktree commits.
|
|
115
|
+
- User-specified subagent model choices should be honored when supported; otherwise inherit the coordinating agent's model/default model policy.
|
|
116
|
+
- Do not use this skill for a single spec unless the user explicitly wants subagent delegation.
|
|
117
|
+
|
|
118
|
+
## References
|
|
119
|
+
|
|
120
|
+
- `implement-specs-with-worktree`: required per-spec worktree implementation workflow.
|
|
121
|
+
- `generate-spec`: clarification and planning repair workflow when a batch is not ready for parallel implementation.
|
|
122
|
+
- `review-change-set`: optional post-implementation review workflow before merge or submission.
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
interface:
|
|
2
|
+
display_name: "Implement Specs with Subagents"
|
|
3
|
+
short_description: "Coordinate parallel spec worktree implementations"
|
|
4
|
+
default_prompt: "Use $implement-specs-with-subagents to assign each approved docs/plans spec directory to one independent subagent that uses $implement-specs-with-worktree, launch at most four implementation subagents at once with staggered starts, honor any requested model when supported, track each branch, commit, test result, and blocker, and report the batch ledger without merging or pushing unless explicitly requested."
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|