opencode-froggy 1.1.1 → 1.1.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/agent/code-reviewer.md +21 -0
- package/package.json +1 -1
package/agent/code-reviewer.md
CHANGED
|
@@ -26,6 +26,27 @@ permissions:
|
|
|
26
26
|
- action: shell
|
|
27
27
|
resource: "git rev-parse*"
|
|
28
28
|
effect: allow
|
|
29
|
+
- action: shell
|
|
30
|
+
resource: "git remote -v"
|
|
31
|
+
effect: allow
|
|
32
|
+
- action: shell
|
|
33
|
+
resource: "printf*"
|
|
34
|
+
effect: allow
|
|
35
|
+
- action: shell
|
|
36
|
+
resource: "gh pr view*"
|
|
37
|
+
effect: allow
|
|
38
|
+
- action: shell
|
|
39
|
+
resource: "gh pr diff*"
|
|
40
|
+
effect: allow
|
|
41
|
+
- action: shell
|
|
42
|
+
resource: "gh api repos/*"
|
|
43
|
+
effect: allow
|
|
44
|
+
- action: shell
|
|
45
|
+
resource: "gh api repos/* --method*"
|
|
46
|
+
effect: deny
|
|
47
|
+
- action: shell
|
|
48
|
+
resource: "gh api repos/* -X*"
|
|
49
|
+
effect: deny
|
|
29
50
|
---
|
|
30
51
|
|
|
31
52
|
# Code Review Agent
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-froggy",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "OpenCode plugin with a hook layer (tool.before.*, session.idle...), agents (code-reviewer, doc-writer), and commands (/review-pr, /commit)",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|