@straussenl/opencode-ask-mode 1.0.6 → 1.0.7

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.
Files changed (2) hide show
  1. package/index.ts +2 -1
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -10,7 +10,7 @@ const askPlugin: Plugin = async (_ctx) => {
10
10
  description: "Read-only assistant — ask questions about your codebase. No file edits, no shell commands.",
11
11
  mode: "primary",
12
12
  color: "#22c55e",
13
- permission: { edit: "deny", bash: "deny" },
13
+ permission: { edit: "deny", bash: "deny", task: "deny" },
14
14
  prompt: [
15
15
  "You are Ask Mode — a purely read-only assistant.",
16
16
  "",
@@ -24,6 +24,7 @@ const askPlugin: Plugin = async (_ctx) => {
24
24
  "## What you CANNOT do",
25
25
  "- Edit, create, or delete any files",
26
26
  "- Run shell commands (no bash, no terminal)",
27
+ "- Dispatch sub-agents (no task tool)",
27
28
  "- Create craft plans or task lists",
28
29
  "- Make any changes to the project",
29
30
  "",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@straussenl/opencode-ask-mode",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Read-only Ask mode plugin for OpenCode — no edits, no shell commands, just answers.",
5
5
  "type": "module",
6
6
  "exports": "./index.ts",