@syntesseraai/opencode-feature-factory 0.11.13 → 0.11.14

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.
@@ -2,7 +2,7 @@
2
2
  description: Implements features from approved plans and returns structured implementation outputs for pipeline handoff.
3
3
  mode: all
4
4
  color: '#d2d21a'
5
- model: openai/gpt-5.3-codex
5
+ model: openai/gpt-5.4-fast
6
6
  permissions:
7
7
  skill:
8
8
  '*': allow
@@ -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
- - Therefore, successful Build and successful Document must include a deterministic `RECOMMENDED_NEXT_STEP` so continuation can proceed automatically.
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` should provide the exact next action when deterministic continuation is appropriate.
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
- Expected mappings:
261
+ Examples:
263
262
 
264
- - Planning approved + user confirmed -> `RECOMMENDED_NEXT_STEP` describes running Build
265
- - Build succeeded -> `RECOMMENDED_NEXT_STEP` describes running Document
266
- - Document succeeded -> `RECOMMENDED_NEXT_STEP` describes running Review
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/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.11.13",
4
+ "version": "0.11.14",
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",