opencode-manifold 0.5.24 → 0.5.26

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/dist/index.js CHANGED
@@ -117,6 +117,11 @@ async function ensureGlobalTemplates(ctx) {
117
117
  const initCommandDest = join(globalCommandsDir, "manifold-init.md");
118
118
  if (existsSync(initCommandSrc)) {
119
119
  await copyFile(initCommandSrc, initCommandDest);
120
+ } else {
121
+ if (existsSync(initCommandDest)) {
122
+ const { rm } = await import("fs/promises");
123
+ await rm(initCommandDest, { force: true });
124
+ }
120
125
  }
121
126
  await ctx.client.app.log({
122
127
  body: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-manifold",
3
- "version": "0.5.24",
3
+ "version": "0.5.26",
4
4
  "description": "Multi-agent development system for opencode with persistent knowledge",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -1,5 +0,0 @@
1
- ---
2
- description: Initialize Open Manifold multi-agent system for this project
3
- agent: build
4
- ---
5
- The /manifold-init command has been executed by the plugin. Tell the user: "Manifold is ready. Point the Manifold agent at a plan file to start executing tasks." Do not attempt any additional setup or file operations.