@syntesseraai/opencode-feature-factory 0.13.3 → 0.13.4

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.md CHANGED
@@ -5,10 +5,10 @@ This file is installed to `~/.config/opencode/AGENTS.md` by `@syntesseraai/openc
5
5
  ## What Feature Factory Provides
6
6
 
7
7
  - Native workflow orchestration through the `feature-factory` agent.
8
- - Default orchestrator model: `feature-factory` -> `openai/gpt-5.3-codex-spark`
8
+ - Default orchestrator model: `feature-factory` -> `openai/gpt-5.5-fast`
9
9
  - Stage sub-agents with default model routing:
10
10
  - `planning` -> `openai/gpt-5.5-fast` (temperature `0.2`)
11
- - `building` -> `openai/gpt-5.3-codex-spark` (temperature `0.5`)
11
+ - `building` -> `openai/gpt-5.5-fast` (temperature `0.5`)
12
12
  - `code-review` -> `openai/gpt-5.5-fast` (temperature `0.6`)
13
13
  - `documenting` -> `github-copilot/gemini-3.1-pro-preview`
14
14
  - `full-review` -> `opencode/glm-5.1`
package/README.md CHANGED
@@ -58,9 +58,9 @@ The plugin no longer exposes `ff_pipeline`, `ff_mini_loop`, or `ff_list_models`
58
58
 
59
59
  Instead, the `feature-factory` primary agent orchestrates workflows natively by delegating to stage sub-agents:
60
60
 
61
- - `feature-factory` (orchestrator) -> default model `openai/gpt-5.3-codex-spark`
61
+ - `feature-factory` (orchestrator) -> default model `openai/gpt-5.5-fast`
62
62
  - `planning` -> default model `openai/gpt-5.5-fast`
63
- - `building` -> default model `openai/gpt-5.3-codex-spark`
63
+ - `building` -> default model `openai/gpt-5.5-fast`
64
64
  - `code-review` -> default model `openai/gpt-5.5-fast` with temperature `0.6`
65
65
  - `documenting` -> default model `github-copilot/gemini-3.1-pro-preview`
66
66
  - `full-review` -> default model `opencode/glm-5.1`
@@ -2,7 +2,7 @@
2
2
  description: Implements features from approved plans and returns structured implementation outputs for pipeline handoff.
3
3
  mode: subagent
4
4
  color: '#d2d21a'
5
- model: openai/gpt-5.3-codex-spark
5
+ model: openai/gpt-5.5-fast
6
6
  temperature: 0.5
7
7
  permissions:
8
8
  write: allow
@@ -2,7 +2,7 @@
2
2
  description: Feature Factory — native stage orchestrator for planning, building, code review, documentation, and full review through sub-agents.
3
3
  mode: primary
4
4
  color: '#0fc24e'
5
- model: openai/gpt-5.3-codex-spark
5
+ model: openai/gpt-5.5-fast
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.13.3",
4
+ "version": "0.13.4",
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",