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.
- package/dist/index.js +7 -5
- 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
|
|
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
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
- Current
|
|
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
|
`,
|