@syntesseraai/opencode-feature-factory 0.13.2 → 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`
@@ -46,7 +46,7 @@ When work changes behavior, workflows, configuration, operational guidance, or r
46
46
  - Use `read`, `glob`, and `grep` for targeted file inspection.
47
47
  - Writable agents should prefer native `edit` for file updates.
48
48
  - Keep `edit` restricted on read-only agents (`planning`, `code-review`, `full-review`).
49
- - Prefer explicit agent frontmatter tool restrictions for read-only stages when model compatibility is a concern; `code-review` and `full-review` use `tools` blocks instead of `permissions` to avoid provider-specific issues observed with some OpenCode models.
49
+ - Prefer explicit agent frontmatter permission restrictions for read-only stages. `code-review` and `full-review` now use `permissions` blocks with deny-first `bash` policies to provide constrained shell access where supported.
50
50
  - Keep read-only agents from modifying files by disabling `edit` and other write-capable tools in frontmatter.
51
51
  - Explicitly disable PTY tools (`pty_spawn`, `pty_write`, `pty_read`, `pty_list`, `pty_kill`) on read-only agents; they must not rely on PTY as a back door.
52
52
  - Use `todowrite` for multi-step tasks to keep progress visible.
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.2",
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",