@syntesseraai/opencode-feature-factory 0.13.0 → 0.13.2

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/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,16 +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
9
- bash: false
10
- pty_spawn: false
11
- pty_write: false
12
- pty_read: false
13
- pty_list: false
14
- pty_kill: false
15
- task: false
6
+ permissions:
7
+ write: deny
8
+ edit: deny
9
+ task:
10
+ '*': deny
11
+ bash:
12
+ '*': deny
13
+ 'oo git status': allow
14
+ 'oo git status *': allow
15
+ 'oo git diff': allow
16
+ 'oo git diff *': allow
17
+ pty_spawn: deny
18
+ pty_write: deny
19
+ pty_read: deny
20
+ pty_list: deny
21
+ pty_kill: deny
16
22
  temperature: 0.6
17
23
  ---
18
24
 
@@ -3,16 +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
9
- bash: false
10
- pty_spawn: false
11
- pty_write: false
12
- pty_read: false
13
- pty_list: false
14
- pty_kill: false
15
- task: false
6
+ permissions:
7
+ write: deny
8
+ edit: deny
9
+ task:
10
+ '*': deny
11
+ bash:
12
+ '*': deny
13
+ 'oo git status': allow
14
+ 'oo git status *': allow
15
+ 'oo git diff': allow
16
+ 'oo git diff *': allow
17
+ pty_spawn: deny
18
+ pty_write: deny
19
+ pty_read: deny
20
+ pty_list: deny
21
+ pty_kill: deny
16
22
  ---
17
23
 
18
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.0",
4
+ "version": "0.13.2",
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",