claude-autopm 2.7.0 → 2.8.1
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/README.md +191 -48
- package/autopm/.claude/.env +158 -0
- package/autopm/.claude/settings.local.json +9 -0
- package/bin/autopm.js +9 -2
- package/bin/commands/epic.js +23 -3
- package/lib/cli/commands/issue.js +360 -20
- package/lib/providers/AzureDevOpsProvider.js +575 -0
- package/lib/providers/GitHubProvider.js +475 -0
- package/lib/services/EpicService.js +1092 -3
- package/lib/services/IssueService.js +991 -0
- package/package.json +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-autopm",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.8.1",
|
|
4
4
|
"description": "Autonomous Project Management Framework for Claude Code - Advanced AI-powered development automation",
|
|
5
5
|
"main": "bin/autopm.js",
|
|
6
6
|
"bin": {
|
|
@@ -49,6 +49,11 @@
|
|
|
49
49
|
"test:comprehensive:quick": "TEST_TIMEOUT=30000 node test/run-all-tests.js",
|
|
50
50
|
"test:comprehensive:ci": "CI=true CI_TEST_TIMEOUT=600000 node test/run-all-tests.js",
|
|
51
51
|
"test:azure": "node --test test/providers/azure/*.test.js",
|
|
52
|
+
"test:github:integration": "jest test/integration/github-sync-integration.test.js --testTimeout=30000",
|
|
53
|
+
"test:github:integration:verbose": "jest test/integration/github-sync-integration.test.js --testTimeout=30000 --verbose",
|
|
54
|
+
"test:integration:azure": "jest test/integration/azure-sync-integration.test.js --testTimeout=30000 --runInBand",
|
|
55
|
+
"test:integration:azure:verbose": "jest test/integration/azure-sync-integration.test.js --testTimeout=30000 --runInBand --verbose",
|
|
56
|
+
"test:azure:quick": "node test/integration/test-azure-manual.js",
|
|
52
57
|
"test:unit": "node --test $(find test/unit -name '*.test.js' ! -name '*-jest.test.js')",
|
|
53
58
|
"test:unit:coverage": "c8 node --test $(find test/unit -name '*.test.js' ! -name '*-jest.test.js')",
|
|
54
59
|
"test:e2e": "jest test/e2e",
|