@syntesseraai/opencode-feature-factory 0.6.20 → 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.
- package/command/mini-loop/documentation/run.md +3 -1
- package/command/mini-loop/implementation/run.md +3 -1
- package/command/mini-loop/start.md +3 -1
- package/command/pipeline/building/run.md +3 -1
- package/command/pipeline/documentation/run.md +3 -1
- package/command/pipeline/planning/run.md +3 -1
- package/command/pipeline/reviewing/run.md +3 -1
- package/command/pipeline/start.md +3 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: Run documentation mini-loop until gate passes
|
|
3
|
-
subtask:
|
|
3
|
+
subtask: false
|
|
4
4
|
agent: general
|
|
5
5
|
model: openai/gpt-5.4
|
|
6
6
|
loop:
|
|
@@ -12,3 +12,5 @@ return:
|
|
|
12
12
|
- /mini-loop/documentation/gate $RESULT[mini-doc-review]
|
|
13
13
|
- If `MINI_LOOP_DOCUMENTATION_GATE=REWORK`, continue loop with prior documentation review feedback included in the next documentation pass.
|
|
14
14
|
---
|
|
15
|
+
|
|
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:
|
|
3
|
+
subtask: false
|
|
4
4
|
agent: general
|
|
5
5
|
model: openai/gpt-5.4
|
|
6
6
|
loop:
|
|
@@ -12,3 +12,5 @@ return:
|
|
|
12
12
|
- /mini-loop/implementation/gate $RESULT[mini-impl-review]
|
|
13
13
|
- If `MINI_LOOP_IMPLEMENTATION_GATE=REWORK`, continue loop with prior review feedback included in the next build input.
|
|
14
14
|
---
|
|
15
|
+
|
|
16
|
+
Reply with only: "Implementation phase started"
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: Mini-loop two-stage workflow entrypoint
|
|
3
|
-
subtask:
|
|
3
|
+
subtask: false
|
|
4
4
|
agent: general
|
|
5
5
|
model: openai/gpt-5.4
|
|
6
6
|
return:
|
|
7
7
|
- /mini-loop/implementation/run {as:implementation-phase} $ARGUMENTS
|
|
8
8
|
- /mini-loop/documentation/run $RESULT[implementation-phase]
|
|
9
9
|
---
|
|
10
|
+
|
|
11
|
+
Reply with only: "Mini-loop started"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: Run build phase from approved plan
|
|
3
|
-
subtask:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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.
|
|
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",
|