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.
package/.github/dependabot.yml
CHANGED
|
@@ -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"
|
package/install/install.js
CHANGED
|
@@ -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'
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
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.
|
|
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": "
|
|
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.
|
|
168
|
+
"@playwright/mcp": "^0.0.43",
|
|
169
169
|
"@upstash/context7-mcp": "^1.0.0"
|
|
170
170
|
},
|
|
171
171
|
"publishConfig": {
|