opencode-froggy 1.1.0 → 1.1.1

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.
@@ -1,12 +1,13 @@
1
1
  ---
2
2
  description: Strategic technical advisor providing high-leverage guidance on architecture, code structure, and complex engineering trade-offs.
3
3
  mode: subagent
4
- temperature: 0.1
5
- tools:
6
- write: false
7
- edit: false
8
- bash: false
9
- patch: false
4
+ permissions:
5
+ - action: edit
6
+ resource: "*"
7
+ effect: deny
8
+ - action: shell
9
+ resource: "*"
10
+ effect: deny
10
11
  ---
11
12
 
12
13
  # Strategic Technical Advisor
@@ -1,11 +1,6 @@
1
1
  ---
2
2
  description: Build orchestrator that decomposes work into isolated parallel tasks in separate git worktrees, assigns models by complexity, reviews every delivery, and simplifies the integrated result once.
3
3
  mode: primary
4
- temperature: 0.1
5
- tools:
6
- write: true
7
- edit: true
8
- bash: true
9
4
  ---
10
5
 
11
6
  # Build Orchestrator Agent
@@ -1,18 +1,31 @@
1
1
  ---
2
2
  description: Reviews code for quality, correctness, and security
3
3
  mode: subagent
4
- temperature: 0.1
5
- tools:
6
- write: false
7
- edit: false
8
- permission:
9
- bash:
10
- "*": "deny"
11
- "git fetch*": allow
12
- "git diff*": allow
13
- "git log*": allow
14
- "git show*": allow
15
- "git status*": allow
4
+ permissions:
5
+ - action: edit
6
+ resource: "*"
7
+ effect: deny
8
+ - action: shell
9
+ resource: "*"
10
+ effect: deny
11
+ - action: shell
12
+ resource: "git fetch*"
13
+ effect: allow
14
+ - action: shell
15
+ resource: "git diff*"
16
+ effect: allow
17
+ - action: shell
18
+ resource: "git log*"
19
+ effect: allow
20
+ - action: shell
21
+ resource: "git show*"
22
+ effect: allow
23
+ - action: shell
24
+ resource: "git status*"
25
+ effect: allow
26
+ - action: shell
27
+ resource: "git rev-parse*"
28
+ effect: allow
16
29
  ---
17
30
 
18
31
  # Code Review Agent
@@ -1,11 +1,6 @@
1
1
  ---
2
2
  description: Simplifies recently modified code for clarity and maintainability while strictly preserving behavior.
3
3
  mode: subagent
4
- temperature: 0.3
5
- tools:
6
- write: true
7
- edit: true
8
- bash: true
9
4
  ---
10
5
 
11
6
  # Code Simplifier Agent
@@ -1,9 +1,10 @@
1
1
  ---
2
2
  description: A technical writer who crafts clear, comprehensive documentation. Specializes in README files, API docs, architecture docs, and user guides.
3
3
  mode: subagent
4
- tools:
5
- background_task: false
6
- bash: false
4
+ permissions:
5
+ - action: shell
6
+ resource: "*"
7
+ effect: deny
7
8
  ---
8
9
 
9
10
  # Technical Documentation Agent — Minimal (Agent-Ready)
package/agent/partner.md CHANGED
@@ -1,12 +1,13 @@
1
1
  ---
2
2
  description: Strategic ideation partner that breaks frames, expands solution spaces, and surfaces non-obvious strategic options.
3
3
  mode: subagent
4
- temperature: 0.8
5
- tools:
6
- write: false
7
- edit: false
8
- bash: false
9
- patch: false
4
+ permissions:
5
+ - action: edit
6
+ resource: "*"
7
+ effect: deny
8
+ - action: shell
9
+ resource: "*"
10
+ effect: deny
10
11
  ---
11
12
 
12
13
  # Strategic Ideation Catalyst
@@ -1,12 +1,13 @@
1
1
  ---
2
2
  description: Strategic thinking partner for exploratory dialogue. Challenges assumptions, asks pointed questions, and sharpens thinking through conversational friction.
3
3
  mode: subagent
4
- temperature: 0.8
5
- tools:
6
- write: false
7
- edit: false
8
- bash: false
9
- patch: false
4
+ permissions:
5
+ - action: edit
6
+ resource: "*"
7
+ effect: deny
8
+ - action: shell
9
+ resource: "*"
10
+ effect: deny
10
11
  ---
11
12
 
12
13
  # Strategic Sparring Partner (Thinking Duck)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-froggy",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
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",