@syntesseraai/opencode-feature-factory 0.13.1 → 0.13.3

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
@@ -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
@@ -93,8 +93,8 @@ Stage-agent code discovery is graph-first: planning/building/code-review/documen
93
93
 
94
94
  Feature Factory agent assets primarily use OpenCode agent frontmatter to keep stage capabilities explicit.
95
95
 
96
- - `code-review` and `full-review` use `tools` blocks instead of `permissions` because some OpenCode models (including GLM/Kimi-family models) have compatibility issues with permission-based agent configs.
97
- - `code-review` and `full-review` remain read-only by disabling `write`, `edit`, `bash`, all PTY tools, and `task` directly in their `tools` blocks.
96
+ - `code-review` and `full-review` use `permissions` blocks with constrained command-level bash access.
97
+ - `code-review` and `full-review` remain read-only by disabling `write`, `edit`, `task`, and all PTY tools; bash is deny-by-default with only `oo git status` / `oo git diff` patterns explicitly allowed.
98
98
  - Other stage agents may still use more granular permission-based shell allowances where model compatibility allows it.
99
99
 
100
100
  ### Plugin auto-handoff safety net
@@ -3,20 +3,22 @@ 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
- tools:
7
- write: false
8
- edit: false
6
+ permissions:
7
+ write: deny
8
+ edit: deny
9
+ task:
10
+ '*': deny
9
11
  bash:
12
+ '*': deny
10
13
  'oo git status': allow
11
14
  'oo git status *': allow
12
15
  'oo git diff': allow
13
16
  'oo git diff *': allow
14
- pty_spawn: false
15
- pty_write: false
16
- pty_read: false
17
- pty_list: false
18
- pty_kill: false
19
- task: false
17
+ pty_spawn: deny
18
+ pty_write: deny
19
+ pty_read: deny
20
+ pty_list: deny
21
+ pty_kill: deny
20
22
  temperature: 0.6
21
23
  ---
22
24
 
@@ -3,20 +3,22 @@ description: Full validation agent for code and documentation. Performs acceptan
3
3
  mode: subagent
4
4
  color: '#8b5cf6'
5
5
  model: opencode/glm-5.1
6
- tools:
7
- write: false
8
- edit: false
6
+ permissions:
7
+ write: deny
8
+ edit: deny
9
+ task:
10
+ '*': deny
9
11
  bash:
12
+ '*': deny
10
13
  'oo git status': allow
11
14
  'oo git status *': allow
12
15
  'oo git diff': allow
13
16
  'oo git diff *': allow
14
- pty_spawn: false
15
- pty_write: false
16
- pty_read: false
17
- pty_list: false
18
- pty_kill: false
19
- task: false
17
+ pty_spawn: deny
18
+ pty_write: deny
19
+ pty_read: deny
20
+ pty_list: deny
21
+ pty_kill: deny
20
22
  ---
21
23
 
22
24
  You are the full-review specialist.
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.1",
4
+ "version": "0.13.3",
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",