@syntesseraai/opencode-feature-factory 0.6.19 → 0.6.21

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.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Run documentation mini-loop until gate passes
3
- subtask: true
3
+ subtask: false
4
4
  agent: general
5
5
  model: openai/gpt-5.4
6
6
  loop:
@@ -13,14 +13,4 @@ return:
13
13
  - If `MINI_LOOP_DOCUMENTATION_GATE=REWORK`, continue loop with prior documentation review feedback included in the next documentation pass.
14
14
  ---
15
15
 
16
- Execute the documentation mini-loop for the approved implementation context.
17
-
18
- Orchestrator constraint:
19
-
20
- This command is a **dispatch orchestrator only**. You must NOT directly read, edit, modify, write, or create any code files, configuration files, or repository files. Your sole responsibility is to invoke the declared sub-commands (`document`, `review`, `gate`), pass structured data between them via `{as:name}` / `$RESULT[name]`, evaluate gate/loop conditions, and route execution. All file-touching work belongs exclusively to the leaf sub-commands.
21
-
22
- Stop criteria:
23
-
24
- - approve when `MINI_LOOP_DOCUMENTATION_GATE=APPROVED`
25
- - continue while `MINI_LOOP_DOCUMENTATION_GATE=REWORK` and iteration < 5
26
- - escalate to user when iteration reaches 5 without approval
16
+ Reply with only: "Documentation phase started"
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Run implementation mini-loop until gate passes
3
- subtask: true
3
+ subtask: false
4
4
  agent: general
5
5
  model: openai/gpt-5.4
6
6
  loop:
@@ -13,14 +13,4 @@ return:
13
13
  - If `MINI_LOOP_IMPLEMENTATION_GATE=REWORK`, continue loop with prior review feedback included in the next build input.
14
14
  ---
15
15
 
16
- Execute the implementation mini-loop for the active requirements/rework context.
17
-
18
- Orchestrator constraint:
19
-
20
- This command is a **dispatch orchestrator only**. You must NOT directly read, edit, modify, write, or create any code files, configuration files, or repository files. Your sole responsibility is to invoke the declared sub-commands (`build`, `review`, `gate`), pass structured data between them via `{as:name}` / `$RESULT[name]`, evaluate gate/loop conditions, and route execution. All file-touching work belongs exclusively to the leaf sub-commands.
21
-
22
- Stop criteria:
23
-
24
- - approve when `MINI_LOOP_IMPLEMENTATION_GATE=APPROVED`
25
- - continue while `MINI_LOOP_IMPLEMENTATION_GATE=REWORK` and iteration < 10
26
- - escalate to user when iteration reaches 10 without approval
16
+ Reply with only: "Implementation phase started"
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Mini-loop two-stage workflow entrypoint
3
- subtask: true
3
+ subtask: false
4
4
  agent: general
5
5
  model: openai/gpt-5.4
6
6
  return:
@@ -8,16 +8,4 @@ return:
8
8
  - /mini-loop/documentation/run $RESULT[implementation-phase]
9
9
  ---
10
10
 
11
- Run the two-stage mini-loop workflow from this requirements brief:
12
-
13
- $ARGUMENTS
14
-
15
- Execution requirements:
16
-
17
- 1. Always complete implementation approval before starting documentation.
18
- 2. Use `{as:name}` and `$RESULT[name]` for all handoffs.
19
- 3. Keep loop decisions deterministic and gate-driven.
20
-
21
- Orchestrator constraint:
22
-
23
- This command is a **top-level dispatch orchestrator only**. You must NOT directly read, edit, modify, write, or create any code files, configuration files, or repository files. Your sole responsibility is to invoke the declared phase commands in order, pass structured data between them via `{as:name}` / `$RESULT[name]`, and evaluate gate conditions. All file-touching work belongs exclusively to the leaf sub-commands within each phase.
11
+ Reply with only: "Mini-loop started"
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Run build phase from approved plan
3
- subtask: true
3
+ subtask: false
4
4
  agent: general
5
5
  model: openai/gpt-5.4
6
6
  return:
@@ -9,3 +9,5 @@ return:
9
9
  - /pipeline/building/implement-batch {as:build-implementation} $RESULT[build-batches]
10
10
  - /pipeline/reviewing/run {as:review-phase} $RESULT[build-implementation]
11
11
  ---
12
+
13
+ Reply with only: "Building phase started"
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Run documentation loop after review approval
3
- subtask: true
3
+ subtask: false
4
4
  agent: general
5
5
  model: openai/gpt-5.4
6
6
  loop:
@@ -12,3 +12,5 @@ return:
12
12
  - /pipeline/documentation/gate $RESULT[doc-review]
13
13
  - If `DOCUMENTATION_GATE=REWORK`, continue loop with review feedback for the next document pass.
14
14
  ---
15
+
16
+ Reply with only: "Documentation phase started"
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Execute one planning iteration
3
- subtask: true
3
+ subtask: false
4
4
  agent: general
5
5
  model: openai/gpt-5.4
6
6
  parallel:
@@ -11,3 +11,5 @@ return:
11
11
  - /pipeline/planning/synthesize {as:plan-consensus} $RESULT[plan-opus] $RESULT[plan-gemini] $RESULT[plan-codex]
12
12
  - /pipeline/planning/gate $RESULT[plan-consensus]
13
13
  ---
14
+
15
+ Reply with only: "Planning phase started"
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Run review loop for completed tasks
3
- subtask: true
3
+ subtask: false
4
4
  agent: general
5
5
  model: openai/gpt-5.4
6
6
  loop:
@@ -17,3 +17,5 @@ return:
17
17
  - /pipeline/reviewing/gate $RESULT[review-synthesis]
18
18
  - If `REVIEW_GATE=REWORK`, invoke `/pipeline/building/implement-batch` to apply fixes before the next loop iteration.
19
19
  ---
20
+
21
+ Reply with only: "Reviewing phase started"
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Pipeline workflow entrypoint
3
- subtask: true
3
+ subtask: false
4
4
  agent: general
5
5
  model: openai/gpt-5.4
6
6
  return:
@@ -10,3 +10,5 @@ return:
10
10
  - /pipeline/documentation/run $RESULT[build-phase]
11
11
  - /pipeline/complete
12
12
  ---
13
+
14
+ Reply with only: "Workflow started"
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.19",
4
+ "version": "0.6.21",
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",