claude-autopm 2.12.1 → 2.12.3

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.
@@ -12,6 +12,10 @@ updates:
12
12
  prefix: "deps"
13
13
  prefix-development: "deps-dev"
14
14
  include: "scope"
15
+ ignore:
16
+ # ora 9.x is pure ESM, incompatible with our CommonJS codebase
17
+ - dependency-name: "ora"
18
+ update-types: ["version-update:semver-major"]
15
19
 
16
20
  # Enable version updates for GitHub Actions
17
21
  - package-ecosystem: "github-actions"
@@ -28,7 +28,7 @@ jobs:
28
28
  fetch-depth: 0
29
29
 
30
30
  - name: Setup Node.js
31
- uses: actions/setup-node@v4
31
+ uses: actions/setup-node@v6
32
32
  with:
33
33
  node-version: 20
34
34
  cache: npm
@@ -20,7 +20,7 @@ jobs:
20
20
  uses: actions/checkout@v4
21
21
 
22
22
  - name: Setup Node.js ${{ matrix.node-version }}
23
- uses: actions/setup-node@v4
23
+ uses: actions/setup-node@v6
24
24
  with:
25
25
  node-version: ${{ matrix.node-version }}
26
26
  cache: 'npm'
@@ -1057,7 +1057,7 @@ See: https://github.com/rafeekpro/ClaudeAutoPM
1057
1057
 
1058
1058
  // Install scripts
1059
1059
  if (metadata.scripts && metadata.scripts.length > 0) {
1060
- const targetDir = path.join(this.targetDir, '.claude', 'scripts');
1060
+ const targetDir = path.join(this.targetDir, '.claude');
1061
1061
  if (!fs.existsSync(targetDir)) {
1062
1062
  fs.mkdirSync(targetDir, { recursive: true });
1063
1063
  }
@@ -1065,7 +1065,8 @@ See: https://github.com/rafeekpro/ClaudeAutoPM
1065
1065
  for (const script of metadata.scripts) {
1066
1066
  if (script.subdirectory && script.files) {
1067
1067
  // Handle subdirectory with multiple files
1068
- const cleanSubdir = script.subdirectory.replace(/^scripts\//, '');
1068
+ // scripts/pm/epic-sync/ -> .claude/scripts/pm/epic-sync/
1069
+ const cleanSubdir = script.subdirectory;
1069
1070
  const subdirTarget = path.join(targetDir, cleanSubdir);
1070
1071
  if (!fs.existsSync(subdirTarget)) {
1071
1072
  fs.mkdirSync(subdirTarget, { recursive: true });
@@ -1084,7 +1085,8 @@ See: https://github.com/rafeekpro/ClaudeAutoPM
1084
1085
  }
1085
1086
  } else if (script.file) {
1086
1087
  // Handle single script file
1087
- const cleanFile = script.file.replace(/^scripts\//, '');
1088
+ // Keep full path structure (scripts/pm/file.js -> scripts/pm/file.js)
1089
+ const cleanFile = script.file;
1088
1090
  const sourcePath = path.join(pluginPath, script.file);
1089
1091
  const targetPath = path.join(targetDir, cleanFile);
1090
1092
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-autopm",
3
- "version": "2.12.1",
3
+ "version": "2.12.3",
4
4
  "description": "Autonomous Project Management Framework for Claude Code - Advanced AI-powered development automation",
5
5
  "main": "bin/autopm.js",
6
6
  "workspaces": [
@@ -125,7 +125,7 @@
125
125
  "README.md"
126
126
  ],
127
127
  "dependencies": {
128
- "@anthropic-ai/sdk": "^0.65.0",
128
+ "@anthropic-ai/sdk": "^0.67.0",
129
129
  "@octokit/rest": "^22.0.0",
130
130
  "azure-devops-node-api": "^15.1.1",
131
131
  "chalk": "4.1.2",
@@ -139,7 +139,7 @@
139
139
  "markdown-it": "^14.1.0",
140
140
  "marked": "^16.4.0",
141
141
  "moment": "^2.29.4",
142
- "ora": "^5.4.1",
142
+ "ora": "~5.4.1",
143
143
  "simple-git": "^3.20.0",
144
144
  "table": "^6.8.1",
145
145
  "which": "^5.0.0",
@@ -165,7 +165,7 @@
165
165
  "sinon": "^21.0.0"
166
166
  },
167
167
  "optionalDependencies": {
168
- "@playwright/mcp": "^0.0.42",
168
+ "@playwright/mcp": "^0.0.43",
169
169
  "@upstash/context7-mcp": "^1.0.0"
170
170
  },
171
171
  "publishConfig": {