@syntesseraai/opencode-feature-factory 0.11.13 → 0.12.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/building.md +1 -1
- package/agents/feature-factory.md +10 -13
- package/agents/planning.md +1 -1
- package/agents/reviewing.md +1 -1
- package/package.json +1 -1
package/agents/building.md
CHANGED
|
@@ -212,8 +212,7 @@ For each iteration `n`:
|
|
|
212
212
|
- After the required user confirmation checkpoint, successful Build always proceeds to Document.
|
|
213
213
|
- After the required user confirmation checkpoint, successful Document always proceeds to Review.
|
|
214
214
|
- Build and Document are stage-complete states, not workflow-complete states.
|
|
215
|
-
-
|
|
216
|
-
- Omit `RECOMMENDED_NEXT_STEP` only when the workflow is fully complete, blocked, escalated, or waiting on required user input.
|
|
215
|
+
- When deterministic continuation is required after user confirmation, emit `RECOMMENDED_NEXT_STEP` exactly as defined in the Plugin continuation contract below.
|
|
217
216
|
|
|
218
217
|
### Direct-execution prohibition
|
|
219
218
|
|
|
@@ -233,7 +232,7 @@ When a workflow ends (success or escalation), return:
|
|
|
233
232
|
5. `OPEN_ISSUES`
|
|
234
233
|
6. `RECOMMENDED_NEXT_STEP`
|
|
235
234
|
|
|
236
|
-
`RECOMMENDED_NEXT_STEP`
|
|
235
|
+
If present, `RECOMMENDED_NEXT_STEP` must describe the next deterministic workflow action and follow the Plugin continuation contract below.
|
|
237
236
|
|
|
238
237
|
## Plugin continuation contract
|
|
239
238
|
|
|
@@ -251,18 +250,16 @@ RECOMMENDED_NEXT_STEP="<human-readable next step>"
|
|
|
251
250
|
|
|
252
251
|
Rules:
|
|
253
252
|
|
|
254
|
-
- After the required user confirmation checkpoint, emit `RECOMMENDED_NEXT_STEP` whenever the next workflow step is predetermined by the fixed workflow.
|
|
255
|
-
- In the fixed workflow, successful Build must always continue to Document.
|
|
256
|
-
- In the fixed workflow, successful Document must always continue to Review.
|
|
257
|
-
- Successful Build and successful Document are stage-complete but not workflow-complete; do not omit `RECOMMENDED_NEXT_STEP` for these outcomes.
|
|
258
253
|
- Never emit `RECOMMENDED_NEXT_STEP` before the required user confirmation checkpoint.
|
|
254
|
+
- Emit `RECOMMENDED_NEXT_STEP` when the next workflow action is deterministic and does not require user input.
|
|
259
255
|
- Omit `RECOMMENDED_NEXT_STEP` when the workflow is fully complete, blocked, escalated, or waiting on required user input.
|
|
256
|
+
- Omit `RECOMMENDED_NEXT_STEP` when the recommendation is "None", "Nothing", "No further steps", or similar.
|
|
257
|
+
- In the fixed workflow, successful Build continues to Document; successful Document continues to Review.
|
|
258
|
+
- Successful Build and successful Document are stage-complete but not workflow-complete, so they normally require `RECOMMENDED_NEXT_STEP`.
|
|
260
259
|
- For normal workflow progression, continue by delegating to stage agents directly (`@building`, `@documenting`, `@reviewing`), not by invoking slash commands such as `/ff-review`, `/ff-document`, or `/ff-rework`.
|
|
261
260
|
|
|
262
|
-
|
|
261
|
+
Examples:
|
|
263
262
|
|
|
264
|
-
-
|
|
265
|
-
-
|
|
266
|
-
-
|
|
267
|
-
- Review requires changes -> `RECOMMENDED_NEXT_STEP` describes Build rework actions
|
|
268
|
-
- Review approved with no further work -> omit `RECOMMENDED_NEXT_STEP`
|
|
263
|
+
- Build succeeded -> `RECOMMENDED_NEXT_STEP` describes running Document.
|
|
264
|
+
- Document succeeded -> `RECOMMENDED_NEXT_STEP` describes running Review.
|
|
265
|
+
- Review requires changes -> `RECOMMENDED_NEXT_STEP` describes Build rework actions.
|
package/agents/planning.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
description: Creates implementation plans and planning gates for pipeline and ad-hoc work. Uses result-based handoff instead of file artifacts.
|
|
3
3
|
mode: all
|
|
4
4
|
color: '#3b82f6'
|
|
5
|
-
model:
|
|
5
|
+
model: openai/gpt-5.4-fast
|
|
6
6
|
permissions:
|
|
7
7
|
write: deny
|
|
8
8
|
edit: deny
|
package/agents/reviewing.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
description: Unified validation agent for code and documentation. Performs acceptance, quality, security, and architecture review with context-driven scope.
|
|
3
3
|
mode: all
|
|
4
4
|
color: '#8b5cf6'
|
|
5
|
-
model: opencode/
|
|
5
|
+
model: opencode/claude-opus-4-7
|
|
6
6
|
permissions:
|
|
7
7
|
write: deny
|
|
8
8
|
edit: deny
|
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.
|
|
4
|
+
"version": "0.12.0",
|
|
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",
|