@penadidik/meo-agent 1.2.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/CHANGELOG.md +84 -0
- package/LICENSE +24 -0
- package/README.md +483 -0
- package/bin/meo-agent.js +158 -0
- package/developer-kit/README.md +99 -0
- package/developer-kit/developer-kit.sh +108 -0
- package/developer-kit/templates/requirements.md +95 -0
- package/developer-kit/templates/tasks.md +85 -0
- package/developer-kit/templates/tdd.md +128 -0
- package/examples/plugins/meo-agent-logger.js +21 -0
- package/index.js +2 -0
- package/lib/args.js +134 -0
- package/lib/checksum.js +29 -0
- package/lib/config.js +52 -0
- package/lib/doctor.js +84 -0
- package/lib/downloader.js +115 -0
- package/lib/mirror.js +137 -0
- package/lib/plugins.js +93 -0
- package/lib/reporter.js +108 -0
- package/package.json +87 -0
- package/pull_request/README.md +104 -0
- package/pull_request/generate-pr.sh +190 -0
- package/pull_request/templates/basic.md +41 -0
- package/pull_request/templates/hod-review.md +101 -0
- package/pull_request/templates/lead-review.md +83 -0
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
## Pull Request Review (Lead Developer)
|
|
2
|
+
|
|
3
|
+
**Repository:** {{REPO}}
|
|
4
|
+
**PR URL:** https://github.com/ivosights/{{REPO}}/pull/{{PR_NUMBER}}
|
|
5
|
+
**Branch:** `{{BRANCH}}`
|
|
6
|
+
**Reviewed By:** Lead Developer
|
|
7
|
+
**Date:** {{DATE}}
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## 1. Summary
|
|
12
|
+
|
|
13
|
+
{{SUMMARY}}
|
|
14
|
+
|
|
15
|
+
### Scope
|
|
16
|
+
- **Files:** {{FILES_COUNT}} (PHP: {{BACKEND_COUNT}}, JS/TS: {{FRONTEND_COUNT}}, Blade: {{BLADE_COUNT}})
|
|
17
|
+
- **Lines:** +{{LINES_ADDED}} / -{{LINES_REMOVED}}
|
|
18
|
+
- **Commits:** {{COMMITS_COUNT}}
|
|
19
|
+
|
|
20
|
+
> _Qualitative review to be completed by reviewer._
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## 2. Critical Issues 🔴
|
|
25
|
+
|
|
26
|
+
<!-- REVIEW:CRITICAL -->
|
|
27
|
+
_Blocking issues that must be fixed before merge._
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## 3. Medium Issues ⚠️
|
|
32
|
+
|
|
33
|
+
<!-- REVIEW:MEDIUM -->
|
|
34
|
+
_Code quality, duplication, maintainability concerns._
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
## 4. Minor Issues 🟡
|
|
39
|
+
|
|
40
|
+
<!-- REVIEW:MINOR -->
|
|
41
|
+
_Style, naming, documentation nits._
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
## 5. Testing Recommendations
|
|
46
|
+
|
|
47
|
+
- [ ] _..._
|
|
48
|
+
- [ ] _..._
|
|
49
|
+
- [ ] _..._
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
## 6. Required Changes Before Approval
|
|
54
|
+
|
|
55
|
+
| Priority | Issue | Owner |
|
|
56
|
+
|----------|-------|-------|
|
|
57
|
+
| 🔴 HIGH | _..._ | _..._ |
|
|
58
|
+
| 🟡 MEDIUM | _..._ | _..._ |
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
62
|
+
## 7. Approval Status
|
|
63
|
+
|
|
64
|
+
| Criteria | Status |
|
|
65
|
+
|----------|--------|
|
|
66
|
+
| Functionality | ⬜ TBD |
|
|
67
|
+
| Code Quality | ⬜ TBD |
|
|
68
|
+
| Testing | ⬜ TBD |
|
|
69
|
+
|
|
70
|
+
**Decision:** ⬜ TBD
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
## 8. Diff Summary
|
|
75
|
+
|
|
76
|
+
```
|
|
77
|
+
{{DIFF_STAT}}
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
### Commits
|
|
81
|
+
```
|
|
82
|
+
{{COMMITS}}
|
|
83
|
+
```
|