conductor-4-all 0.0.7 → 0.0.8
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/README.md +1 -0
- package/dist/index.cjs +24 -0
- package/dist/index.js +24 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -43,6 +43,7 @@ You will be prompted to select your AI Coding Agent:
|
|
|
43
43
|
- **Cursor**
|
|
44
44
|
- **VS Code Copilot**
|
|
45
45
|
- **Codex**
|
|
46
|
+
- **Windsurf**
|
|
46
47
|
|
|
47
48
|
This will verify the environment and install the necessary Conductor files:
|
|
48
49
|
- **Commands:** Agent-specific prompt files (e.g., `.opencode/commands/conductor:setup.md`) that your agent can execute.
|
package/dist/index.cjs
CHANGED
|
@@ -76,6 +76,11 @@ async function promptForAgent() {
|
|
|
76
76
|
name: "Codex",
|
|
77
77
|
value: "codex",
|
|
78
78
|
description: "OpenAI Codex Agent"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
name: "Windsurf",
|
|
82
|
+
value: "windsurf",
|
|
83
|
+
description: "Windsurf Cascade AI Agent"
|
|
79
84
|
}
|
|
80
85
|
],
|
|
81
86
|
default: "opencode"
|
|
@@ -246,6 +251,12 @@ var AGENT_CONFIGS = {
|
|
|
246
251
|
commandsDir: "prompts",
|
|
247
252
|
displayName: "Codex",
|
|
248
253
|
extension: ".md"
|
|
254
|
+
},
|
|
255
|
+
windsurf: {
|
|
256
|
+
agentType: "windsurf",
|
|
257
|
+
agentDir: ".windsurf",
|
|
258
|
+
commandsDir: "workflows",
|
|
259
|
+
displayName: "Windsurf"
|
|
249
260
|
}
|
|
250
261
|
};
|
|
251
262
|
|
|
@@ -322,6 +333,17 @@ var CodexGenerator = class {
|
|
|
322
333
|
}
|
|
323
334
|
};
|
|
324
335
|
|
|
336
|
+
// src/generators/WindsurfGenerator.ts
|
|
337
|
+
var WindsurfGenerator = class {
|
|
338
|
+
generator = createGenerator(AGENT_CONFIGS.windsurf);
|
|
339
|
+
validate(targetDir) {
|
|
340
|
+
return this.generator.validate(targetDir);
|
|
341
|
+
}
|
|
342
|
+
generate(targetDir) {
|
|
343
|
+
return this.generator.generate(targetDir);
|
|
344
|
+
}
|
|
345
|
+
};
|
|
346
|
+
|
|
325
347
|
// src/generators/index.ts
|
|
326
348
|
function getGenerator(agentType) {
|
|
327
349
|
switch (agentType) {
|
|
@@ -335,6 +357,8 @@ function getGenerator(agentType) {
|
|
|
335
357
|
return new VSCodeCopilotGenerator();
|
|
336
358
|
case "codex":
|
|
337
359
|
return new CodexGenerator();
|
|
360
|
+
case "windsurf":
|
|
361
|
+
return new WindsurfGenerator();
|
|
338
362
|
case "opencode":
|
|
339
363
|
default:
|
|
340
364
|
return new OpenCodeGenerator();
|
package/dist/index.js
CHANGED
|
@@ -49,6 +49,11 @@ async function promptForAgent() {
|
|
|
49
49
|
name: "Codex",
|
|
50
50
|
value: "codex",
|
|
51
51
|
description: "OpenAI Codex Agent"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
name: "Windsurf",
|
|
55
|
+
value: "windsurf",
|
|
56
|
+
description: "Windsurf Cascade AI Agent"
|
|
52
57
|
}
|
|
53
58
|
],
|
|
54
59
|
default: "opencode"
|
|
@@ -219,6 +224,12 @@ var AGENT_CONFIGS = {
|
|
|
219
224
|
commandsDir: "prompts",
|
|
220
225
|
displayName: "Codex",
|
|
221
226
|
extension: ".md"
|
|
227
|
+
},
|
|
228
|
+
windsurf: {
|
|
229
|
+
agentType: "windsurf",
|
|
230
|
+
agentDir: ".windsurf",
|
|
231
|
+
commandsDir: "workflows",
|
|
232
|
+
displayName: "Windsurf"
|
|
222
233
|
}
|
|
223
234
|
};
|
|
224
235
|
|
|
@@ -295,6 +306,17 @@ var CodexGenerator = class {
|
|
|
295
306
|
}
|
|
296
307
|
};
|
|
297
308
|
|
|
309
|
+
// src/generators/WindsurfGenerator.ts
|
|
310
|
+
var WindsurfGenerator = class {
|
|
311
|
+
generator = createGenerator(AGENT_CONFIGS.windsurf);
|
|
312
|
+
validate(targetDir) {
|
|
313
|
+
return this.generator.validate(targetDir);
|
|
314
|
+
}
|
|
315
|
+
generate(targetDir) {
|
|
316
|
+
return this.generator.generate(targetDir);
|
|
317
|
+
}
|
|
318
|
+
};
|
|
319
|
+
|
|
298
320
|
// src/generators/index.ts
|
|
299
321
|
function getGenerator(agentType) {
|
|
300
322
|
switch (agentType) {
|
|
@@ -308,6 +330,8 @@ function getGenerator(agentType) {
|
|
|
308
330
|
return new VSCodeCopilotGenerator();
|
|
309
331
|
case "codex":
|
|
310
332
|
return new CodexGenerator();
|
|
333
|
+
case "windsurf":
|
|
334
|
+
return new WindsurfGenerator();
|
|
311
335
|
case "opencode":
|
|
312
336
|
default:
|
|
313
337
|
return new OpenCodeGenerator();
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "conductor-4-all",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"description": "Conductor spec-driven development CLI - TypeScript/Node.js version",
|
|
5
|
+
"license": "Apache-2.0",
|
|
5
6
|
"repository": {
|
|
6
7
|
"type": "git",
|
|
7
8
|
"url": "git+https://github.com/hlhr202/Conductor-for-all.git"
|