opencode-conductor-plugin 1.30.0 → 1.30.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.
Files changed (2) hide show
  1. package/dist/index.js +7 -5
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -40,7 +40,7 @@ export const MyPlugin = async ({ project, client, $, directory, worktree, }) =>
40
40
  .map((f) => {
41
41
  const content = fs.readFileSync(f, "utf-8");
42
42
  const relPath = path.relative(directory, f);
43
- return `<File path="${relPath}">\n${content}\n</File>`;
43
+ return `<${f} path="${relPath}">\n${content}\n</${f}>`;
44
44
  })
45
45
  .join("\n\n");
46
46
  }
@@ -86,10 +86,12 @@ export const MyPlugin = async ({ project, client, $, directory, worktree, }) =>
86
86
  },
87
87
  "conductor:status": {
88
88
  template: StatusPrompt.prompt + `
89
- Environment Details:
90
- - Directory: ${directory}
91
- - Conductor Setup: ${setupOccurred}
92
- - Current Conductor Files (Location: ${directory}/conductor)
89
+
90
+
91
+ ***Current Environment Details***:
92
+ - Current Working Directory: ${directory}
93
+ - Conductor Setup Process Completed: ${setupOccurred}
94
+ - Current Conductor Files (with tracks) (${directory}/conductor)
93
95
  File Tree:
94
96
  ${fileHeirarchy}
95
97
  `,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-conductor-plugin",
3
- "version": "1.30.0",
3
+ "version": "1.30.1",
4
4
  "description": "Conductor plugin for OpenCode",
5
5
  "type": "module",
6
6
  "repository": "derekbar90/opencode-conductor",