opencode-conductor-plugin 1.22.0 → 1.22.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 +5 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -86,27 +86,27 @@ const ConductorPlugin = async (ctx) => {
|
|
|
86
86
|
config.command = {
|
|
87
87
|
...(config.command || {}),
|
|
88
88
|
"conductor_setup": {
|
|
89
|
-
template: "Use the conductor_setup tool to scaffold the project and set up the Conductor environment.",
|
|
89
|
+
template: "Use the conductor_setup tool to scaffold the project and set up the Conductor environment. After calling the tool, you MUST follow all instructions provided in the tool's response exactly as specified.",
|
|
90
90
|
description: setup.description,
|
|
91
91
|
agent: "conductor",
|
|
92
92
|
},
|
|
93
93
|
"conductor_newTrack": {
|
|
94
|
-
template: "Use the conductor_newTrack tool to plan a track and generate track-specific spec documents. If arguments were provided with this command, pass them as the 'description' parameter to the tool.",
|
|
94
|
+
template: "Use the conductor_newTrack tool to plan a track and generate track-specific spec documents. If arguments were provided with this command, pass them as the 'description' parameter to the tool. After calling the tool, you MUST follow all instructions provided in the tool's response exactly as specified.",
|
|
95
95
|
description: newTrack.description,
|
|
96
96
|
agent: "conductor",
|
|
97
97
|
},
|
|
98
98
|
"conductor_implement": {
|
|
99
|
-
template: "Use the conductor_implement tool to execute the tasks defined in the specified track's plan. If a track name was provided as an argument with this command, pass it as the 'track_name' parameter to the tool.",
|
|
99
|
+
template: "Use the conductor_implement tool to execute the tasks defined in the specified track's plan. If a track name was provided as an argument with this command, pass it as the 'track_name' parameter to the tool. After calling the tool, you MUST follow all instructions provided in the tool's response exactly as specified.",
|
|
100
100
|
description: implement.description,
|
|
101
101
|
agent: "conductor_implementer",
|
|
102
102
|
},
|
|
103
103
|
"conductor_status": {
|
|
104
|
-
template: "Use the conductor_status tool to display the current progress of the project.",
|
|
104
|
+
template: "Use the conductor_status tool to display the current progress of the project. After calling the tool, you MUST follow all instructions provided in the tool's response exactly as specified.",
|
|
105
105
|
description: status.description,
|
|
106
106
|
agent: "conductor",
|
|
107
107
|
},
|
|
108
108
|
"conductor_revert": {
|
|
109
|
-
template: "Use the conductor_revert tool to revert previous work. If a target was provided as an argument with this command (e.g., 'track <track_id>', 'phase <phase_name>', 'task <task_name>'), pass it as the 'target' parameter to the tool.",
|
|
109
|
+
template: "Use the conductor_revert tool to revert previous work. If a target was provided as an argument with this command (e.g., 'track <track_id>', 'phase <phase_name>', 'task <task_name>'), pass it as the 'target' parameter to the tool. After calling the tool, you MUST follow all instructions provided in the tool's response exactly as specified.",
|
|
110
110
|
description: revert.description,
|
|
111
111
|
agent: "conductor",
|
|
112
112
|
},
|