@syntesseraai/opencode-feature-factory 0.13.1 → 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 +2 -2
- package/agents/code-review.md +11 -9
- package/agents/full-review.md +11 -9
- package/package.json +1 -1
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 `
|
|
97
|
-
- `code-review` and `full-review` remain read-only by disabling `write`, `edit`, `
|
|
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
|
package/agents/code-review.md
CHANGED
|
@@ -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
|
-
|
|
7
|
-
write:
|
|
8
|
-
edit:
|
|
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:
|
|
15
|
-
pty_write:
|
|
16
|
-
pty_read:
|
|
17
|
-
pty_list:
|
|
18
|
-
pty_kill:
|
|
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
|
|
package/agents/full-review.md
CHANGED
|
@@ -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
|
-
|
|
7
|
-
write:
|
|
8
|
-
edit:
|
|
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:
|
|
15
|
-
pty_write:
|
|
16
|
-
pty_read:
|
|
17
|
-
pty_list:
|
|
18
|
-
pty_kill:
|
|
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.
|
|
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",
|