@syntesseraai/opencode-feature-factory 0.12.5 → 0.12.7

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.4-fast`
8
+ - Default orchestrator model: `feature-factory` -> `openai/gpt-5.5-fast`
9
9
  - Stage sub-agents with default model routing:
10
- - `planning` -> `openai/gpt-5.4-fast`
11
- - `building` -> `openai/gpt-5.4-fast`
10
+ - `planning` -> `openai/gpt-5.5-fast`
11
+ - `building` -> `openai/gpt-5.5-fast`
12
12
  - `reviewing` -> `opencode/glm-5.1`
13
13
  - `documenting` -> `opencode/gemini-3.1-pro`
14
14
  - Specialized agents: `feature-factory`, `planning`, `building`, `reviewing`, and `documenting`.
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.4-fast`
62
- - `planning` -> default model `openai/gpt-5.4-fast`
63
- - `building` -> default model `openai/gpt-5.4-fast`
61
+ - `feature-factory` (orchestrator) -> default model `openai/gpt-5.5-fast`
62
+ - `planning` -> default model `openai/gpt-5.5-fast`
63
+ - `building` -> default model `openai/gpt-5.5-fast`
64
64
  - `reviewing` -> default model `opencode/glm-5.1`
65
65
  - `documenting` -> default model `opencode/gemini-3.1-pro`
66
66
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Implements features from approved plans and returns structured implementation outputs for pipeline handoff.
3
- mode: all
3
+ mode: secondary
4
4
  color: '#d2d21a'
5
5
  model: openai/gpt-5.5-fast
6
6
  permissions:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Documentation implementation specialist for pipeline documentation stage.
3
- mode: all
3
+ mode: secondary
4
4
  color: '#f97316'
5
5
  model: opencode/gemini-3.1-pro
6
6
  permissions:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Creates implementation plans and planning gates for pipeline and ad-hoc work. Uses result-based handoff instead of file artifacts.
3
- mode: all
3
+ mode: secondary
4
4
  color: '#3b82f6'
5
5
  model: openai/gpt-5.5-fast
6
6
  permissions:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Unified validation agent for code and documentation. Performs acceptance, quality, security, and architecture review with context-driven scope.
3
- mode: all
3
+ mode: secondary
4
4
  color: '#8b5cf6'
5
5
  model: opencode/glm-5.1
6
6
  tools:
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.12.5",
4
+ "version": "0.12.7",
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",