proagents 1.0.17 → 1.1.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 +309 -77
- package/bin/proagents.js +17 -0
- package/lib/commands/doctor.js +305 -0
- package/lib/commands/init.js +180 -6
- package/lib/commands/upgrade.js +180 -0
- package/package.json +1 -1
- package/proagents/AI_INSTRUCTIONS.md +543 -9
- package/proagents/PROAGENTS.md +92 -11
- package/proagents/activity.log +11 -0
- package/proagents/checkpoints.json +13 -0
- package/proagents/context.md +39 -0
- package/proagents/custom-commands.yaml +59 -0
- package/proagents/decisions.md +43 -0
- package/proagents/errors.md +36 -0
- package/proagents/feedback.md +49 -0
- package/proagents/handoff.md +33 -0
- package/proagents/history.log +12 -0
- package/proagents/metrics/README.md +57 -162
- package/proagents/sessions/README.md +5 -0
- package/proagents/sprints/README.md +58 -0
- package/proagents/watchlist.yaml +39 -0
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# Sprints
|
|
2
|
+
|
|
3
|
+
This folder contains sprint tracking files.
|
|
4
|
+
|
|
5
|
+
## Commands
|
|
6
|
+
|
|
7
|
+
- `pa:sprint-start` - Start a new sprint
|
|
8
|
+
- `pa:sprint-end` - End sprint with summary
|
|
9
|
+
- `pa:sprint-status` - Show current sprint status
|
|
10
|
+
- `pa:velocity` - Show velocity metrics
|
|
11
|
+
|
|
12
|
+
## File Structure
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
sprints/
|
|
16
|
+
├── sprint-1.json # Sprint data
|
|
17
|
+
├── sprint-1-summary.md # Sprint summary (generated on end)
|
|
18
|
+
├── sprint-2.json
|
|
19
|
+
└── sprint-2-summary.md
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Sprint File Format
|
|
23
|
+
|
|
24
|
+
```json
|
|
25
|
+
{
|
|
26
|
+
"sprint_number": 1,
|
|
27
|
+
"name": "Sprint 1",
|
|
28
|
+
"start_date": "2024-03-01",
|
|
29
|
+
"end_date": "2024-03-15",
|
|
30
|
+
"status": "active",
|
|
31
|
+
"goals": [
|
|
32
|
+
"Complete user authentication",
|
|
33
|
+
"Add dashboard UI"
|
|
34
|
+
],
|
|
35
|
+
"features": [
|
|
36
|
+
{
|
|
37
|
+
"name": "user-auth",
|
|
38
|
+
"status": "completed",
|
|
39
|
+
"points": 8
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"name": "dashboard",
|
|
43
|
+
"status": "in_progress",
|
|
44
|
+
"points": 5
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"metrics": {
|
|
48
|
+
"planned_points": 13,
|
|
49
|
+
"completed_points": 8,
|
|
50
|
+
"velocity": 8
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
## Velocity Tracking
|
|
56
|
+
|
|
57
|
+
Velocity is calculated as the average story points completed per sprint.
|
|
58
|
+
Use `pa:velocity` to see trends over time.
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# File Watch List
|
|
2
|
+
# Files and patterns that require CONFIRMATION before AI modifies them.
|
|
3
|
+
# AI must ask user before changing these files.
|
|
4
|
+
|
|
5
|
+
# Critical files that should never be auto-modified
|
|
6
|
+
critical:
|
|
7
|
+
- ".env*" # Environment variables
|
|
8
|
+
- "*.config.js" # Configuration files
|
|
9
|
+
- "*.config.ts"
|
|
10
|
+
- "package.json" # Dependencies
|
|
11
|
+
- "package-lock.json"
|
|
12
|
+
- "yarn.lock"
|
|
13
|
+
- "pnpm-lock.yaml"
|
|
14
|
+
- "tsconfig.json" # TypeScript config
|
|
15
|
+
- "docker-compose*.yml" # Docker configs
|
|
16
|
+
- "Dockerfile*"
|
|
17
|
+
- ".github/workflows/*" # CI/CD pipelines
|
|
18
|
+
- "database/migrations/*" # Database migrations
|
|
19
|
+
|
|
20
|
+
# Files that need careful review before changes
|
|
21
|
+
review_required:
|
|
22
|
+
- "src/lib/*" # Core libraries
|
|
23
|
+
- "src/utils/*" # Utility functions
|
|
24
|
+
- "src/config/*" # App configuration
|
|
25
|
+
- "src/middleware/*" # Middleware
|
|
26
|
+
- "src/auth/*" # Authentication code
|
|
27
|
+
|
|
28
|
+
# Patterns to never modify (absolute protection)
|
|
29
|
+
never_modify:
|
|
30
|
+
- ".git/*"
|
|
31
|
+
- "node_modules/*"
|
|
32
|
+
- "dist/*"
|
|
33
|
+
- "build/*"
|
|
34
|
+
- ".next/*"
|
|
35
|
+
- "*.lock"
|
|
36
|
+
- "*.log"
|
|
37
|
+
|
|
38
|
+
# Custom patterns (add your own)
|
|
39
|
+
custom: []
|