@syntesseraai/opencode-feature-factory 0.13.5 → 0.13.6

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
@@ -9,7 +9,7 @@ This file is installed to `~/.config/opencode/AGENTS.md` by `@syntesseraai/openc
9
9
  - Stage sub-agents with default model routing:
10
10
  - `planning` -> `openai/gpt-5.5-fast` (temperature `0.2`)
11
11
  - `building` -> `openai/gpt-5.5-fast` (temperature `0.5`)
12
- - `code-reviewing` -> `openai/gpt-5.5-fast` (temperature `0.6`, reasoning effort `xhigh`)
12
+ - `code-reviewing` -> `openai/gpt-5.5-fast` (temperature `0.6`)
13
13
  - `documenting` -> `github-copilot/gemini-3.1-pro-preview`
14
14
  - `full-reviewing` -> `opencode/glm-5.1`
15
15
  - Specialized agents: `feature-factory`, `planning`, `building`, `code-reviewing`, `documenting`, and `full-reviewing`.
package/README.md CHANGED
@@ -61,7 +61,7 @@ Instead, the `feature-factory` primary agent orchestrates workflows natively by
61
61
  - `feature-factory` (orchestrator) -> default model `openai/gpt-5.5-fast`
62
62
  - `planning` -> default model `openai/gpt-5.5-fast`
63
63
  - `building` -> default model `openai/gpt-5.5-fast`
64
- - `code-reviewing` -> default model `openai/gpt-5.5-fast` with temperature `0.6` and reasoning effort `xhigh`
64
+ - `code-reviewing` -> 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-reviewing` -> default model `opencode/glm-5.1`
67
67
 
@@ -26,11 +26,6 @@ permissions:
26
26
 
27
27
  You are the building specialist.
28
28
 
29
- ## Reasoning Depth
30
-
31
- - Use the highest available reasoning depth for the configured model.
32
- - Take extra deliberation before applying edits, choosing validations, and closing implementation scope.
33
-
34
29
  ## Core Role
35
30
 
36
31
  - Implement approved plan steps in safe, dependency-aware order.
@@ -3,7 +3,6 @@ description: Code-focused validation agent for first-pass implementation review
3
3
  mode: subagent
4
4
  color: '#14b8a6'
5
5
  model: openai/gpt-5.5-fast
6
- reasoningEffort: xhigh
7
6
  permissions:
8
7
  write: deny
9
8
  edit: deny
@@ -25,11 +24,6 @@ temperature: 0.6
25
24
 
26
25
  You are the code-reviewing specialist.
27
26
 
28
- ## Reasoning Depth
29
-
30
- - Use the highest available reasoning depth for the configured model.
31
- - Take extra deliberation before assigning severity, confidence, and gate outcomes.
32
-
33
27
  ## Core Role
34
28
 
35
29
  - Validate implementation outputs before documentation begins.
@@ -28,11 +28,6 @@ permissions:
28
28
 
29
29
  You are the documenting specialist.
30
30
 
31
- ## Reasoning Depth
32
-
33
- - Use the highest available reasoning depth for the configured model.
34
- - Take extra deliberation to ensure behavior-to-documentation alignment and cross-doc consistency.
35
-
36
31
  ## Core Role
37
32
 
38
33
  - Translate shipped behavior into documentation that is accurate, navigable, and useful for future readers.
@@ -18,11 +18,6 @@ tools:
18
18
 
19
19
  You are the full-reviewing specialist.
20
20
 
21
- ## Reasoning Depth
22
-
23
- - Use the highest available reasoning depth for the configured model.
24
- - Take extra deliberation before assigning severity, confidence, and gate outcomes.
25
-
26
21
  ## Core Role
27
22
 
28
23
  - Validate implementation and documentation outputs together after Build, Code Review, and Document stages have run.
@@ -30,11 +30,6 @@ permissions:
30
30
 
31
31
  You are the planning specialist.
32
32
 
33
- ## Reasoning Depth
34
-
35
- - Use the highest available reasoning depth for the configured model.
36
- - Take extra deliberation before finalizing scope, risks, and gate decisions.
37
-
38
33
  ## Core Role
39
34
 
40
35
  - Produce clear, implementation-ready plans.
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.5",
4
+ "version": "0.13.6",
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",