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 CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-agent-config",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Universal Global Skills & Workflows for AI Coding Assistants (Claude Code, Antigravity, Cursor)",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -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
  },