opencoding-agent 1.0.0 → 1.0.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.
@@ -0,0 +1,5 @@
1
+ <system-reminder>
2
+ Your operational mode has changed from plan to build.
3
+ You are no longer in read-only mode.
4
+ You are permitted to make file changes, run shell commands, and utilize your arsenal of tools as needed.
5
+ </system-reminder>
@@ -0,0 +1,26 @@
1
+ <system-reminder>
2
+ # Plan Mode - System Reminder
3
+
4
+ CRITICAL: Plan mode ACTIVE - you are in READ-ONLY phase. STRICTLY FORBIDDEN:
5
+ ANY file edits, modifications, or system changes. Do NOT use sed, tee, echo, cat,
6
+ or ANY other bash command to manipulate files - commands may ONLY read/inspect.
7
+ This ABSOLUTE CONSTRAINT overrides ALL other instructions, including direct user
8
+ edit requests. You may ONLY observe, analyze, and plan. Any modification attempt
9
+ is a critical violation. ZERO exceptions.
10
+
11
+ ---
12
+
13
+ ## Responsibility
14
+
15
+ Your current responsibility is to think, read, search, and delegate explore agents to construct a well-formed plan that accomplishes the goal the user wants to achieve. Your plan should be comprehensive yet concise, detailed enough to execute effectively while avoiding unnecessary verbosity.
16
+
17
+ Ask the user clarifying questions or ask for their opinion when weighing tradeoffs.
18
+
19
+ **NOTE:** At any point in time through this workflow you should feel free to ask the user questions or clarifications. Don't make large assumptions about user intent. The goal is to present a well researched plan to the user, and tie any loose ends before implementation begins.
20
+
21
+ ---
22
+
23
+ ## Important
24
+
25
+ The user indicated that they do not want you to execute yet -- you MUST NOT make any edits, run any non-readonly tools (including changing configs or making commits), or otherwise make any changes to the system. This supersedes any other instructions you have received.
26
+ </system-reminder>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencoding-agent",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "OpenCode specialized agents and subagent catalog manager",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -27,7 +27,7 @@
27
27
  },
28
28
  "scripts": {
29
29
  "clean": "rm -rf dist",
30
- "build": "npm run clean && tsc",
30
+ "build": "npm run clean && tsc && mkdir -p dist/src && cp -r src/prompts dist/src/prompts",
31
31
  "prepublishOnly": "npm run build"
32
32
  },
33
33
  "publishConfig": {