claude-autopm 3.25.7 → 4.0.0
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/workflows/commands-sync-check.yml +2 -2
- package/.github/workflows/deploy-docs.yml +2 -2
- package/.github/workflows/npm-publish.yml +3 -3
- package/.github/workflows/plugin-publish.yml +2 -2
- package/.github/workflows/scripts-sync-check.yml +2 -2
- package/.github/workflows/test.yml +2 -2
- package/package.json +6 -6
- package/packages/plugin-ai/package.json +3 -3
- package/packages/plugin-cloud/package.json +2 -2
- package/packages/plugin-core/package.json +2 -2
- package/packages/plugin-data/package.json +3 -3
- package/packages/plugin-databases/package.json +3 -3
- package/packages/plugin-devops/package.json +3 -3
- package/packages/plugin-frameworks/package.json +3 -3
- package/packages/plugin-languages/package.json +3 -3
- package/packages/plugin-ml/package.json +2 -2
- package/packages/plugin-obsidian/package.json +3 -3
- package/packages/plugin-pm/package.json +2 -2
- package/packages/plugin-pm-azure/package.json +2 -2
- package/packages/plugin-pm-github/package.json +2 -2
- package/packages/plugin-testing/package.json +3 -3
|
@@ -22,9 +22,9 @@ jobs:
|
|
|
22
22
|
check:
|
|
23
23
|
runs-on: ubuntu-latest
|
|
24
24
|
steps:
|
|
25
|
-
- uses: actions/checkout@
|
|
25
|
+
- uses: actions/checkout@v7
|
|
26
26
|
- uses: actions/setup-node@v6
|
|
27
27
|
with:
|
|
28
|
-
node-version: '
|
|
28
|
+
node-version: '22'
|
|
29
29
|
- name: Check plugin/payload command sync
|
|
30
30
|
run: node scripts/sync-plugin-commands.js --check
|
|
@@ -23,14 +23,14 @@ jobs:
|
|
|
23
23
|
runs-on: ubuntu-latest
|
|
24
24
|
steps:
|
|
25
25
|
- name: Checkout
|
|
26
|
-
uses: actions/checkout@
|
|
26
|
+
uses: actions/checkout@v7
|
|
27
27
|
with:
|
|
28
28
|
fetch-depth: 0
|
|
29
29
|
|
|
30
30
|
- name: Setup Node.js
|
|
31
31
|
uses: actions/setup-node@v6
|
|
32
32
|
with:
|
|
33
|
-
node-version:
|
|
33
|
+
node-version: 22
|
|
34
34
|
cache: npm
|
|
35
35
|
cache-dependency-path: docs-site/package-lock.json
|
|
36
36
|
|
|
@@ -10,10 +10,10 @@ jobs:
|
|
|
10
10
|
test:
|
|
11
11
|
runs-on: ubuntu-latest
|
|
12
12
|
steps:
|
|
13
|
-
- uses: actions/checkout@
|
|
13
|
+
- uses: actions/checkout@v7
|
|
14
14
|
- uses: actions/setup-node@v6
|
|
15
15
|
with:
|
|
16
|
-
node-version: '
|
|
16
|
+
node-version: '22'
|
|
17
17
|
- run: npm ci --legacy-peer-deps
|
|
18
18
|
- run: npm test
|
|
19
19
|
|
|
@@ -27,7 +27,7 @@ jobs:
|
|
|
27
27
|
# (repository: this repo, workflow: npm-publish.yml).
|
|
28
28
|
id-token: write
|
|
29
29
|
steps:
|
|
30
|
-
- uses: actions/checkout@
|
|
30
|
+
- uses: actions/checkout@v7
|
|
31
31
|
- uses: actions/setup-node@v6
|
|
32
32
|
with:
|
|
33
33
|
node-version: '24'
|
|
@@ -37,7 +37,7 @@ jobs:
|
|
|
37
37
|
- plugin-testing
|
|
38
38
|
- plugin-obsidian
|
|
39
39
|
steps:
|
|
40
|
-
- uses: actions/checkout@
|
|
40
|
+
- uses: actions/checkout@v7
|
|
41
41
|
- uses: actions/setup-node@v6
|
|
42
42
|
with:
|
|
43
43
|
node-version: '24'
|
|
@@ -80,7 +80,7 @@ jobs:
|
|
|
80
80
|
# See publish-all for OIDC rationale.
|
|
81
81
|
id-token: write
|
|
82
82
|
steps:
|
|
83
|
-
- uses: actions/checkout@
|
|
83
|
+
- uses: actions/checkout@v7
|
|
84
84
|
- uses: actions/setup-node@v6
|
|
85
85
|
with:
|
|
86
86
|
node-version: '24'
|
|
@@ -13,11 +13,11 @@ jobs:
|
|
|
13
13
|
name: Plugin-core script sync
|
|
14
14
|
runs-on: ubuntu-latest
|
|
15
15
|
steps:
|
|
16
|
-
- uses: actions/checkout@
|
|
16
|
+
- uses: actions/checkout@v7
|
|
17
17
|
|
|
18
18
|
- uses: actions/setup-node@v6
|
|
19
19
|
with:
|
|
20
|
-
node-version: '
|
|
20
|
+
node-version: '22'
|
|
21
21
|
|
|
22
22
|
- name: Check script copies match plugin-core source of truth
|
|
23
23
|
run: node scripts/sync-plugin-scripts.js --check
|
|
@@ -13,11 +13,11 @@ jobs:
|
|
|
13
13
|
|
|
14
14
|
strategy:
|
|
15
15
|
matrix:
|
|
16
|
-
node-version: [
|
|
16
|
+
node-version: [22.x, 24.x]
|
|
17
17
|
|
|
18
18
|
steps:
|
|
19
19
|
- name: Checkout code
|
|
20
|
-
uses: actions/checkout@
|
|
20
|
+
uses: actions/checkout@v7
|
|
21
21
|
|
|
22
22
|
- name: Setup Node.js ${{ matrix.node-version }}
|
|
23
23
|
uses: actions/setup-node@v6
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-autopm",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Autonomous Project Management Framework for Claude Code - Advanced AI-powered development automation",
|
|
5
5
|
"main": "bin/autopm.js",
|
|
6
6
|
"workspaces": [
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"autopm-poc": "./bin/autopm-poc.js"
|
|
12
12
|
},
|
|
13
13
|
"scripts": {
|
|
14
|
-
"postinstall": "echo '
|
|
14
|
+
"postinstall": "echo '\ud83c\udf89 ClaudeAutoPM installed! Run: autopm --help'",
|
|
15
15
|
"sync:commands": "node scripts/sync-plugin-commands.js",
|
|
16
16
|
"sync:commands:check": "node scripts/sync-plugin-commands.js --check",
|
|
17
17
|
"sync:scripts": "node scripts/sync-plugin-scripts.js",
|
|
@@ -116,8 +116,8 @@
|
|
|
116
116
|
"url": "https://github.com/rafeekpro/ClaudeAutoPM/issues"
|
|
117
117
|
},
|
|
118
118
|
"engines": {
|
|
119
|
-
"node": ">=
|
|
120
|
-
"npm": ">=
|
|
119
|
+
"node": ">=22.0.0",
|
|
120
|
+
"npm": ">=10.0.0"
|
|
121
121
|
},
|
|
122
122
|
"preferGlobal": true,
|
|
123
123
|
"files": [
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
"README.md"
|
|
133
133
|
],
|
|
134
134
|
"dependencies": {
|
|
135
|
-
"@anthropic-ai/sdk": "^0.
|
|
135
|
+
"@anthropic-ai/sdk": "^0.105.0",
|
|
136
136
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
137
137
|
"@octokit/rest": "^22.0.0",
|
|
138
138
|
"azure-devops-node-api": "^15.1.1",
|
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
"jest-html-reporter": "^4.3.0",
|
|
170
170
|
"jest-junit": "^17.0.0",
|
|
171
171
|
"jest-watch-typeahead": "^3.0.1",
|
|
172
|
-
"markdownlint-cli": "^0.
|
|
172
|
+
"markdownlint-cli": "^0.49.0",
|
|
173
173
|
"mocha": "^11.7.2",
|
|
174
174
|
"nock": "^14.0.10",
|
|
175
175
|
"prettier": "^3.0.0",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claudeautopm/plugin-ai",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Complete AI/ML plugin with OpenAI, Gemini, LangChain agents, RAG systems, model deployment, prompt engineering, and MLOps patterns for ClaudeAutoPM",
|
|
5
5
|
"main": "plugin.json",
|
|
6
6
|
"type": "module",
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"url": "https://github.com/rafeekpro/ClaudeAutoPM/issues"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
47
|
-
"node": ">=
|
|
48
|
-
"npm": ">=
|
|
47
|
+
"node": ">=22.0.0",
|
|
48
|
+
"npm": ">=10.0.0"
|
|
49
49
|
},
|
|
50
50
|
"publishConfig": {
|
|
51
51
|
"access": "public",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claudeautopm/plugin-cloud",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Complete cloud infrastructure plugin with agents for AWS, Azure, GCP, Kubernetes, Terraform, and infrastructure automation for ClaudeAutoPM",
|
|
5
5
|
"main": "plugin.json",
|
|
6
6
|
"type": "module",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
},
|
|
58
58
|
"homepage": "https://github.com/rafeekpro/ClaudeAutoPM/tree/main/packages/plugin-cloud#readme",
|
|
59
59
|
"engines": {
|
|
60
|
-
"node": ">=
|
|
60
|
+
"node": ">=22.0.0"
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
63
|
"@claudeautopm/plugin-core": "^3.0.0"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claudeautopm/plugin-core",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Core framework functionality for ClaudeAutoPM - universal agents, rules, hooks, and utilities",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -45,6 +45,6 @@
|
|
|
45
45
|
"README.md"
|
|
46
46
|
],
|
|
47
47
|
"engines": {
|
|
48
|
-
"node": ">=
|
|
48
|
+
"node": ">=22.0.0"
|
|
49
49
|
}
|
|
50
50
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claudeautopm/plugin-data",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Complete data engineering plugin with Airflow, Kedro, LangGraph, Kafka, dbt, pandas experts, data quality rules, and example scripts for ClaudeAutoPM",
|
|
5
5
|
"main": "plugin.json",
|
|
6
6
|
"type": "module",
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"url": "https://github.com/rafeekpro/ClaudeAutoPM/issues"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
47
|
-
"node": ">=
|
|
48
|
-
"npm": ">=
|
|
47
|
+
"node": ">=22.0.0",
|
|
48
|
+
"npm": ">=10.0.0"
|
|
49
49
|
},
|
|
50
50
|
"publishConfig": {
|
|
51
51
|
"access": "public",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claudeautopm/plugin-databases",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Complete database plugin with PostgreSQL, MongoDB, Redis, BigQuery, and Cosmos DB experts, database rules, and optimization scripts for ClaudeAutoPM",
|
|
5
5
|
"main": "plugin.json",
|
|
6
6
|
"type": "module",
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"url": "https://github.com/rafeekpro/ClaudeAutoPM/issues"
|
|
50
50
|
},
|
|
51
51
|
"engines": {
|
|
52
|
-
"node": ">=
|
|
53
|
-
"npm": ">=
|
|
52
|
+
"node": ">=22.0.0",
|
|
53
|
+
"npm": ">=10.0.0"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
56
|
"@claudeautopm/plugin-core": "^3.0.0"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claudeautopm/plugin-devops",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Complete DevOps plugin with agents, commands, rules, and scripts for CI/CD, Docker, GitHub, observability, and infrastructure automation for ClaudeAutoPM",
|
|
5
5
|
"main": "plugin.json",
|
|
6
6
|
"type": "module",
|
|
@@ -65,8 +65,8 @@
|
|
|
65
65
|
"url": "https://github.com/rafeekpro/ClaudeAutoPM/issues"
|
|
66
66
|
},
|
|
67
67
|
"engines": {
|
|
68
|
-
"node": ">=
|
|
69
|
-
"npm": ">=
|
|
68
|
+
"node": ">=22.0.0",
|
|
69
|
+
"npm": ">=10.0.0"
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|
|
72
72
|
"@claudeautopm/plugin-core": "^3.0.0"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claudeautopm/plugin-frameworks",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Complete frontend frameworks plugin with React, Vue, Tailwind CSS agents, UI commands, performance rules, and optimization scripts for ClaudeAutoPM",
|
|
5
5
|
"main": "plugin.json",
|
|
6
6
|
"type": "module",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"url": "https://github.com/rafeekpro/ClaudeAutoPM/issues"
|
|
47
47
|
},
|
|
48
48
|
"engines": {
|
|
49
|
-
"node": ">=
|
|
50
|
-
"npm": ">=
|
|
49
|
+
"node": ">=22.0.0",
|
|
50
|
+
"npm": ">=10.0.0"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
53
|
"@claudeautopm/plugin-core": "^3.0.0"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claudeautopm/plugin-languages",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Complete programming languages plugin with Python, JavaScript, Node.js, Bash experts, language rules, and example scripts for ClaudeAutoPM",
|
|
5
5
|
"main": "plugin.json",
|
|
6
6
|
"type": "module",
|
|
@@ -52,8 +52,8 @@
|
|
|
52
52
|
"url": "https://github.com/rafeekpro/ClaudeAutoPM/issues"
|
|
53
53
|
},
|
|
54
54
|
"engines": {
|
|
55
|
-
"node": ">=
|
|
56
|
-
"npm": ">=
|
|
55
|
+
"node": ">=22.0.0",
|
|
56
|
+
"npm": ">=10.0.0"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
59
|
"@claudeautopm/plugin-core": "^3.0.0"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claudeautopm/plugin-ml",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Comprehensive Machine Learning plugin with 10 specialist agents: TensorFlow/Keras, PyTorch, RL, Scikit-learn, Neural Architecture, Gradient Boosting, Computer Vision, NLP Transformers, Time Series, and AutoML. Context7-verified patterns.",
|
|
5
5
|
"main": "plugin.json",
|
|
6
6
|
"scripts": {
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@claudeautopm/plugin-core": "^3.0.0"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
47
|
-
"node": ">=
|
|
47
|
+
"node": ">=22.0.0"
|
|
48
48
|
},
|
|
49
49
|
"publishConfig": {
|
|
50
50
|
"access": "public"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claudeautopm/plugin-obsidian",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "Obsidian vault integration plugin for ClaudeAutoPM
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "Obsidian vault integration plugin for ClaudeAutoPM \u2014 sync, Dataview, Mermaid, and Excalidraw support",
|
|
5
5
|
"main": "plugin.json",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"files": [
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
},
|
|
40
40
|
"homepage": "https://github.com/rafeekpro/ClaudeAutoPM/tree/main/packages/plugin-obsidian#readme",
|
|
41
41
|
"engines": {
|
|
42
|
-
"node": ">=
|
|
42
|
+
"node": ">=22.0.0"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"@claudeautopm/plugin-core": "^3.0.0"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claudeautopm/plugin-pm",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Complete project management plugin with PM workflows, epic management, issue tracking, and release automation for ClaudeAutoPM",
|
|
5
5
|
"main": "plugin.json",
|
|
6
6
|
"type": "module",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
},
|
|
46
46
|
"homepage": "https://github.com/rafeekpro/ClaudeAutoPM/tree/main/packages/plugin-pm#readme",
|
|
47
47
|
"engines": {
|
|
48
|
-
"node": ">=
|
|
48
|
+
"node": ">=22.0.0"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
51
|
"@claudeautopm/plugin-core": "^3.0.0"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claudeautopm/plugin-pm-azure",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Azure DevOps provider for ClaudeAutoPM PM system",
|
|
5
5
|
"main": "plugin.json",
|
|
6
6
|
"files": [
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"@claudeautopm/plugin-core": "^3.0.0"
|
|
17
17
|
},
|
|
18
18
|
"engines": {
|
|
19
|
-
"node": ">=
|
|
19
|
+
"node": ">=22.0.0"
|
|
20
20
|
},
|
|
21
21
|
"license": "MIT",
|
|
22
22
|
"repository": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claudeautopm/plugin-pm-github",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "GitHub provider for ClaudeAutoPM PM system",
|
|
5
5
|
"main": "plugin.json",
|
|
6
6
|
"files": [
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"@claudeautopm/plugin-core": "^3.0.0"
|
|
17
17
|
},
|
|
18
18
|
"engines": {
|
|
19
|
-
"node": ">=
|
|
19
|
+
"node": ">=22.0.0"
|
|
20
20
|
},
|
|
21
21
|
"license": "MIT",
|
|
22
22
|
"repository": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claudeautopm/plugin-testing",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Testing frameworks, E2E testing, and quality assurance specialists",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claudeautopm",
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"url": "https://github.com/rafeekpro/ClaudeAutoPM/issues"
|
|
23
23
|
},
|
|
24
24
|
"engines": {
|
|
25
|
-
"node": ">=
|
|
26
|
-
"npm": ">=
|
|
25
|
+
"node": ">=22.0.0",
|
|
26
|
+
"npm": ">=10.0.0"
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public",
|