claude-autopm 1.20.0 → 1.21.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/README.md +255 -878
- package/autopm/.claude/agents/README.md +1 -1
- package/autopm/.claude/agents/decision-matrices/python-backend-selection.md +25 -25
- package/autopm/.claude/agents/decision-matrices/ui-framework-selection.md +43 -43
- package/autopm/.claude/agents/devops/github-operations-specialist.md +1 -1
- package/autopm/.claude/agents/frameworks/README.md +5 -5
- package/autopm/.claude/agents/frameworks/e2e-test-engineer.md +1 -1
- package/autopm/.claude/agents/frameworks/nats-messaging-expert.md +1 -1
- package/autopm/.claude/agents/frameworks/react-frontend-engineer.md +1 -1
- package/autopm/.claude/agents/frameworks/react-ui-expert.md +3 -3
- package/autopm/.claude/agents/frameworks/tailwindcss-expert.md +3 -3
- package/autopm/.claude/agents/frameworks/ux-design-expert.md +3 -3
- package/autopm/.claude/commands/infrastructure/traefik-setup.md +1 -1
- package/autopm/.claude/commands/playwright/test-scaffold.md +1 -1
- package/autopm/.claude/commands/pm/epic-sync.md +37 -4
- package/autopm/.claude/commands/ui/bootstrap-scaffold.md +6 -5
- package/autopm/.claude/commands/ui/tailwind-system.md +1 -1
- package/autopm/.claude/examples/mcp/playwright-mcp.md +2 -2
- package/autopm/.claude/examples/mcp-servers.example.json +2 -2
- package/autopm/.claude/hooks/docker-first-enforcement.sh +1 -1
- package/autopm/.claude/mcp/playwright-mcp.md +2 -2
- package/autopm/.claude/rules/agent-coordination.md +26 -24
- package/autopm/.claude/rules/docker-first-development.md +1 -1
- package/autopm/.claude/rules/framework-path-rules.md +180 -0
- package/autopm/.claude/rules/infrastructure-pipeline.md +1 -1
- package/autopm/.claude/rules/ui-development-standards.md +1 -1
- package/autopm/.claude/rules/visual-testing.md +3 -3
- package/autopm/.claude/scripts/pm/epic-sync/README.md +208 -0
- package/autopm/.claude/scripts/pm/epic-sync/create-epic-issue.sh +68 -192
- package/autopm/.claude/scripts/pm/epic-sync/create-task-issues.sh +60 -328
- package/autopm/.claude/scripts/pm/epic-sync/update-epic-file.sh +61 -354
- package/autopm/.claude/scripts/pm/epic-sync/update-references.sh +67 -305
- package/autopm/.claude/scripts/pm/epic-sync.sh +137 -0
- package/autopm/.claude/teams.json +3 -5
- package/autopm/.claude/templates/claude-templates/addons/devops-agents.md +2 -2
- package/autopm/.claude/templates/claude-templates/addons/docker-agents.md +4 -4
- package/autopm/.claude/templates/claude-templates/addons/minimal-agents.md +1 -1
- package/autopm/.claude/templates/issue-decomposition/api.yaml +2 -2
- package/autopm/.claude/templates/issue-decomposition/auth.yaml +4 -4
- package/autopm/.claude/templates/issue-decomposition/crud.yaml +3 -3
- package/autopm/.claude/templates/issue-decomposition/default.yaml +1 -1
- package/autopm/.claude/templates/issue-decomposition/ui-feature.yaml +2 -2
- package/package.json +4 -3
- package/scripts/validate-framework-paths.sh +104 -0
|
@@ -29,7 +29,7 @@ streams:
|
|
|
29
29
|
|
|
30
30
|
backend:
|
|
31
31
|
name: "Service Layer"
|
|
32
|
-
agent: "python-backend-
|
|
32
|
+
agent: "python-backend-engineer"
|
|
33
33
|
priority: 2
|
|
34
34
|
parameters:
|
|
35
35
|
framework: "fastapi"
|
|
@@ -48,7 +48,7 @@ streams:
|
|
|
48
48
|
|
|
49
49
|
api:
|
|
50
50
|
name: "REST API Endpoints"
|
|
51
|
-
agent: "
|
|
51
|
+
agent: "python-backend-engineer"
|
|
52
52
|
priority: 3
|
|
53
53
|
dependencies: ["backend"]
|
|
54
54
|
tasks:
|
|
@@ -65,7 +65,7 @@ streams:
|
|
|
65
65
|
|
|
66
66
|
frontend:
|
|
67
67
|
name: "UI Components"
|
|
68
|
-
agent: "react-
|
|
68
|
+
agent: "react-frontend-engineer"
|
|
69
69
|
priority: 4
|
|
70
70
|
parameters:
|
|
71
71
|
framework: "mui"
|
|
@@ -30,7 +30,7 @@ streams:
|
|
|
30
30
|
|
|
31
31
|
components:
|
|
32
32
|
name: "Component Development"
|
|
33
|
-
agent: "react-
|
|
33
|
+
agent: "react-frontend-engineer"
|
|
34
34
|
priority: 2
|
|
35
35
|
parameters:
|
|
36
36
|
framework: "mui"
|
|
@@ -83,7 +83,7 @@ streams:
|
|
|
83
83
|
|
|
84
84
|
tests:
|
|
85
85
|
name: "Testing & QA"
|
|
86
|
-
agent: "
|
|
86
|
+
agent: "frontend-testing-engineer"
|
|
87
87
|
priority: 5
|
|
88
88
|
dependencies: ["integration"]
|
|
89
89
|
tasks:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-autopm",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.21.0",
|
|
4
4
|
"description": "Autonomous Project Management Framework for Claude Code - Advanced AI-powered development automation",
|
|
5
5
|
"main": "bin/autopm.js",
|
|
6
6
|
"bin": {
|
|
@@ -63,7 +63,9 @@
|
|
|
63
63
|
"pm:test": "node scripts/self-maintenance.js test",
|
|
64
64
|
"pm:metrics": "node scripts/self-maintenance.js metrics",
|
|
65
65
|
"pm:optimize": "node scripts/self-maintenance.js optimize",
|
|
66
|
-
"pm:health": "node scripts/self-maintenance.js health"
|
|
66
|
+
"pm:health": "node scripts/self-maintenance.js health",
|
|
67
|
+
"validate:paths": "bash scripts/validate-framework-paths.sh",
|
|
68
|
+
"setup:githooks": "bash scripts/setup-githooks.sh"
|
|
67
69
|
},
|
|
68
70
|
"keywords": [
|
|
69
71
|
"ai",
|
|
@@ -129,7 +131,6 @@
|
|
|
129
131
|
"yargs": "^17.7.2"
|
|
130
132
|
},
|
|
131
133
|
"devDependencies": {
|
|
132
|
-
"@babel/preset-env": "^7.28.3",
|
|
133
134
|
"@jest/globals": "^30.1.2",
|
|
134
135
|
"@types/jest": "^30.0.0",
|
|
135
136
|
"axios": "^1.12.2",
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
|
|
3
|
+
# Validate Framework Paths
|
|
4
|
+
# Ensures no hardcoded 'autopm/' paths exist in framework files
|
|
5
|
+
|
|
6
|
+
set -e
|
|
7
|
+
|
|
8
|
+
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
9
|
+
PROJECT_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
|
|
10
|
+
|
|
11
|
+
echo ""
|
|
12
|
+
echo "🔍 Validating Framework Paths"
|
|
13
|
+
echo "=============================="
|
|
14
|
+
echo ""
|
|
15
|
+
|
|
16
|
+
# Colors for output
|
|
17
|
+
RED='\033[0;31m'
|
|
18
|
+
GREEN='\033[0;32m'
|
|
19
|
+
YELLOW='\033[1;33m'
|
|
20
|
+
NC='\033[0m' # No Color
|
|
21
|
+
|
|
22
|
+
# Track violations
|
|
23
|
+
violations=0
|
|
24
|
+
|
|
25
|
+
# Function to check for violations
|
|
26
|
+
check_violations() {
|
|
27
|
+
local pattern="$1"
|
|
28
|
+
local description="$2"
|
|
29
|
+
local files
|
|
30
|
+
|
|
31
|
+
# Search for pattern, excluding:
|
|
32
|
+
# - Comments in JS files (lines starting with * or //)
|
|
33
|
+
# - Comments in shell scripts (lines starting with #)
|
|
34
|
+
# - "Migrated from" comments
|
|
35
|
+
# - The framework-path-rules.md file itself (contains examples)
|
|
36
|
+
files=$(grep -r "$pattern" "$PROJECT_ROOT/autopm/.claude" \
|
|
37
|
+
--include="*.md" \
|
|
38
|
+
--include="*.sh" \
|
|
39
|
+
--include="*.js" \
|
|
40
|
+
--exclude="framework-path-rules.md" \
|
|
41
|
+
2>/dev/null | \
|
|
42
|
+
grep -v "Migrated from" | \
|
|
43
|
+
grep -v "^\s*\*" | \
|
|
44
|
+
grep -v "^\s*//" | \
|
|
45
|
+
grep -v "^\s*#" || true)
|
|
46
|
+
|
|
47
|
+
if [ -n "$files" ]; then
|
|
48
|
+
echo -e "${RED}❌ Found violations: $description${NC}"
|
|
49
|
+
echo "$files"
|
|
50
|
+
echo ""
|
|
51
|
+
((violations++))
|
|
52
|
+
return 1
|
|
53
|
+
fi
|
|
54
|
+
|
|
55
|
+
return 0
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
echo "Checking for hardcoded 'autopm/' paths..."
|
|
59
|
+
echo ""
|
|
60
|
+
|
|
61
|
+
# Check for bash autopm references
|
|
62
|
+
if ! check_violations "bash autopm" "Hardcoded 'bash autopm' commands"; then
|
|
63
|
+
echo -e "${YELLOW} Fix: Replace 'bash autopm/.claude/' with 'bash .claude/'${NC}"
|
|
64
|
+
echo ""
|
|
65
|
+
fi
|
|
66
|
+
|
|
67
|
+
# Check for node autopm references
|
|
68
|
+
if ! check_violations "node autopm" "Hardcoded 'node autopm' commands"; then
|
|
69
|
+
echo -e "${YELLOW} Fix: Replace 'node autopm/.claude/' with 'node .claude/'${NC}"
|
|
70
|
+
echo ""
|
|
71
|
+
fi
|
|
72
|
+
|
|
73
|
+
# Check for source autopm references
|
|
74
|
+
if ! check_violations "source autopm" "Hardcoded 'source autopm' commands"; then
|
|
75
|
+
echo -e "${YELLOW} Fix: Replace 'source autopm/.claude/' with 'source .claude/'${NC}"
|
|
76
|
+
echo ""
|
|
77
|
+
fi
|
|
78
|
+
|
|
79
|
+
# Check for ./autopm references
|
|
80
|
+
if ! check_violations "\./autopm" "Hardcoded './autopm' paths"; then
|
|
81
|
+
echo -e "${YELLOW} Fix: Replace './autopm/.claude/' with './.claude/'${NC}"
|
|
82
|
+
echo ""
|
|
83
|
+
fi
|
|
84
|
+
|
|
85
|
+
# Check for autopm/.claude in non-comment contexts
|
|
86
|
+
if ! check_violations 'autopm/\.claude' "Hardcoded 'autopm/.claude' paths"; then
|
|
87
|
+
echo -e "${YELLOW} Fix: Replace 'autopm/.claude/' with '.claude/'${NC}"
|
|
88
|
+
echo ""
|
|
89
|
+
fi
|
|
90
|
+
|
|
91
|
+
# Summary
|
|
92
|
+
echo "=============================="
|
|
93
|
+
if [ $violations -eq 0 ]; then
|
|
94
|
+
echo -e "${GREEN}✅ All checks passed! No hardcoded 'autopm/' paths found.${NC}"
|
|
95
|
+
echo ""
|
|
96
|
+
exit 0
|
|
97
|
+
else
|
|
98
|
+
echo -e "${RED}❌ Validation failed with $violations violation(s).${NC}"
|
|
99
|
+
echo ""
|
|
100
|
+
echo "Please fix the hardcoded paths before committing."
|
|
101
|
+
echo "See autopm/.claude/rules/framework-path-rules.md for guidelines."
|
|
102
|
+
echo ""
|
|
103
|
+
exit 1
|
|
104
|
+
fi
|