code-ai-installer 1.5.4 → 1.5.5
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/platforms/adapters.js +13 -0
- package/package.json +1 -1
|
@@ -6,6 +6,7 @@ const targetLayouts = {
|
|
|
6
6
|
orchestratorMirrorFile: "AGENTS.md",
|
|
7
7
|
agentsDir: ".github/agents",
|
|
8
8
|
skillsDir: ".github/skills",
|
|
9
|
+
workflowsDir: ".github/workflows",
|
|
9
10
|
notes: "Uses copilot-instructions.md and stores role/skill docs in .github.",
|
|
10
11
|
},
|
|
11
12
|
claude: {
|
|
@@ -13,6 +14,7 @@ const targetLayouts = {
|
|
|
13
14
|
orchestratorMirrorFile: "AGENTS.md",
|
|
14
15
|
agentsDir: ".claude/agents",
|
|
15
16
|
skillsDir: ".claude/skills",
|
|
17
|
+
workflowsDir: ".claude/workflows",
|
|
16
18
|
notes: "Uses CLAUDE.md and local .claude folder for role/skill docs.",
|
|
17
19
|
},
|
|
18
20
|
"qwen-3.5": {
|
|
@@ -20,6 +22,7 @@ const targetLayouts = {
|
|
|
20
22
|
orchestratorMirrorFile: "AGENTS.md",
|
|
21
23
|
agentsDir: ".qwen/agents",
|
|
22
24
|
skillsDir: ".qwen/skills",
|
|
25
|
+
workflowsDir: ".qwen/workflows",
|
|
23
26
|
notes: "Uses QWEN.md convention and .qwen folder for role/skill docs.",
|
|
24
27
|
},
|
|
25
28
|
"google-antugravity": {
|
|
@@ -27,6 +30,7 @@ const targetLayouts = {
|
|
|
27
30
|
orchestratorMirrorFile: "AGENTS.md",
|
|
28
31
|
agentsDir: ".gemini/agents",
|
|
29
32
|
skillsDir: ".gemini/skills",
|
|
33
|
+
workflowsDir: ".gemini/workflows",
|
|
30
34
|
notes: "Uses AGENTS.md with GEMINI.md compatibility alias and antugravity-style layout with per-agent folders and script-oriented skills.",
|
|
31
35
|
},
|
|
32
36
|
"gpt-codex": {
|
|
@@ -275,6 +279,15 @@ function planForGeminiLayout(layout, catalog, destinationDir, selectedAgents, se
|
|
|
275
279
|
target,
|
|
276
280
|
});
|
|
277
281
|
}
|
|
282
|
+
if (layout.workflowsDir) {
|
|
283
|
+
for (const workflowPath of Object.values(catalog.workflowFiles)) {
|
|
284
|
+
operations.push({
|
|
285
|
+
sourcePath: workflowPath,
|
|
286
|
+
destinationPath: path.join(destinationDir, layout.workflowsDir, path.basename(workflowPath)),
|
|
287
|
+
generated: false,
|
|
288
|
+
});
|
|
289
|
+
}
|
|
290
|
+
}
|
|
278
291
|
appendExtraFileOperations(operations, catalog, destinationDir);
|
|
279
292
|
return operations;
|
|
280
293
|
}
|
package/package.json
CHANGED