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.
@@ -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: []