ai-agent-config 1.0.2 → 1.0.4
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/bin/cli.js +0 -0
- package/package.json +1 -1
- package/scripts/platforms.js +4 -0
package/bin/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
package/scripts/platforms.js
CHANGED
|
@@ -18,6 +18,7 @@ const SUPPORTED = [
|
|
|
18
18
|
displayName: "Claude Code",
|
|
19
19
|
configDir: ".claude",
|
|
20
20
|
skillsDir: "skills",
|
|
21
|
+
workflowsDir: "workflows",
|
|
21
22
|
commandsDir: "commands",
|
|
22
23
|
get configPath() {
|
|
23
24
|
return path.join(HOME, this.configDir);
|
|
@@ -25,6 +26,9 @@ const SUPPORTED = [
|
|
|
25
26
|
get skillsPath() {
|
|
26
27
|
return path.join(HOME, this.configDir, this.skillsDir);
|
|
27
28
|
},
|
|
29
|
+
get workflowsPath() {
|
|
30
|
+
return path.join(HOME, this.configDir, this.workflowsDir);
|
|
31
|
+
},
|
|
28
32
|
get commandsPath() {
|
|
29
33
|
return path.join(HOME, this.configDir, this.commandsDir);
|
|
30
34
|
},
|