@syntesseraai/opencode-feature-factory 0.6.13 → 0.6.15

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/README.md CHANGED
@@ -36,8 +36,9 @@ It also updates `~/.config/opencode/opencode.json` non-destructively by merging
36
36
  ## Pipeline Entrypoint
37
37
 
38
38
  - Use `@pipeline` as the start experience.
39
- - The `@pipeline` agent handles intake and launches `/pipeline/start`.
39
+ - The `@pipeline` agent handles intake and hands off once to `/pipeline/start`.
40
40
  - Orchestration is implemented by the command tree under `command/pipeline/` using subtask2 primitives (`return`, `parallel`, `loop`).
41
+ - Orchestration wrapper commands (`/pipeline/start`, `/pipeline/*/run`, `/pipeline/complete`) pin `agent: general` to avoid recursive self-invocation before phase-specific delegation begins.
41
42
  - Coordinator and synthesis model defaults to ChatGPT 5.4 and can be overridden at runtime via `/pipeline/start` input.
42
43
 
43
44
  ## Command Tree
@@ -51,6 +52,7 @@ It also updates `~/.config/opencode/opencode.json` non-destructively by merging
51
52
  - `/mini-loop/start`
52
53
  - `/mini-loop/implementation/run`, `/mini-loop/implementation/build`, `/mini-loop/implementation/review`, `/mini-loop/implementation/gate`
53
54
  - `/mini-loop/documentation/run`, `/mini-loop/documentation/document`, `/mini-loop/documentation/review`, `/mini-loop/documentation/gate`
55
+ - Mini-loop wrapper commands (`/mini-loop/start`, `/mini-loop/*/run`) also pin `agent: general` so they can be safely launched from any caller agent.
54
56
 
55
57
  ## Model Routing
56
58
 
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  description: Run documentation mini-loop until gate passes
3
3
  subtask: true
4
+ agent: general
4
5
  loop:
5
6
  max: 5
6
7
  until: documentation gate is APPROVED
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  description: Run implementation mini-loop until gate passes
3
3
  subtask: true
4
+ agent: general
4
5
  loop:
5
6
  max: 10
6
7
  until: implementation gate is APPROVED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  description: Mini-loop two-stage workflow entrypoint
3
3
  subtask: true
4
- model: openai/gpt-5.4
4
+ agent: general
5
5
  return:
6
6
  - /mini-loop/implementation/run {as:implementation-phase} $ARGUMENTS
7
7
  - /mini-loop/documentation/run $RESULT[implementation-phase]
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  description: Run build phase from approved plan
3
3
  subtask: true
4
+ agent: general
4
5
  return:
5
6
  - /pipeline/building/breakdown {model:anthropic/claude-opus-4-6 && as:build-tasks} $ARGUMENTS
6
7
  - /pipeline/building/validate-batch {model:opencode/gemini-3.1-pro && as:build-batches} $RESULT[build-tasks]
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  description: Finalize pipeline run and summarize outcomes
3
3
  subtask: true
4
+ agent: general
4
5
  ---
5
6
 
6
7
  Finalize the pipeline run.
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  description: Run documentation loop after review approval
3
3
  subtask: true
4
+ agent: general
4
5
  loop:
5
6
  max: 5
6
7
  until: documentation updates are approved by documentation reviewer with zero unresolved documentation issues
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  description: Execute one planning iteration
3
3
  subtask: true
4
+ agent: general
4
5
  parallel:
5
6
  - /pipeline/planning/plan {model:anthropic/claude-opus-4-6 && as:plan-opus} [MODEL_TAG:opus] $ARGUMENTS
6
7
  - /pipeline/planning/plan {model:opencode/gemini-3.1-pro && as:plan-gemini} [MODEL_TAG:gemini] $ARGUMENTS
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  description: Run review loop for completed tasks
3
3
  subtask: true
4
+ agent: general
4
5
  loop:
5
6
  max: 10
6
7
  until: all tasks in the active batch are approved with confidence >=95 and zero unresolved issues
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  description: Pipeline workflow entrypoint
3
3
  subtask: true
4
+ agent: general
4
5
  model: openai/gpt-5.4
5
6
  return:
6
7
  - /pipeline/planning/run {as:planning-phase && loop:5 && until:planning gate is APPROVED or planning gate is BLOCKED and waiting for user confirmation}
@@ -16,7 +17,9 @@ $ARGUMENTS
16
17
 
17
18
  Execution requirements:
18
19
 
19
- 1. Use `{as:name}` and `$RESULT[name]` for phase-to-phase handoff.
20
- 2. Avoid file persistence for intermediate artifacts unless a command explicitly requires audit snapshots.
21
- 3. Use command chaining, parallel fan-out, and loop gates from the `/pipeline/...` command tree.
22
- 4. Do not skip planning, review, and documentation gates.
20
+ 1. You are already inside `/pipeline/start`; do not invoke `/pipeline/start` again.
21
+ 2. Execute the declared return chain directly from this command.
22
+ 3. Use `{as:name}` and `$RESULT[name]` for phase-to-phase handoff.
23
+ 4. Avoid file persistence for intermediate artifacts unless a command explicitly requires audit snapshots.
24
+ 5. Use command chaining, parallel fan-out, and loop gates from the `/pipeline/...` command tree.
25
+ 6. Do not skip planning, review, and documentation gates.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@syntesseraai/opencode-feature-factory",
4
- "version": "0.6.13",
4
+ "version": "0.6.15",
5
5
  "type": "module",
6
6
  "description": "OpenCode plugin for Feature Factory agents - provides sub-agents and skills for validation, review, security, and architecture assessment",
7
7
  "license": "MIT",