@yemi33/minions 0.1.314 → 0.1.315

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 CHANGED
@@ -1,11 +1,12 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.314 (2026-04-03)
3
+ ## 0.1.315 (2026-04-03)
4
4
 
5
5
  ### Fixes
6
6
  - show reviewer names in dashboard Signed Off By column
7
7
 
8
8
  ### Other
9
+ - cleanup: remove evaluate.md (re-created by agents), fix stale references
9
10
  - perf: CC message handling — debounce localStorage, cap array, batch scroll
10
11
 
11
12
  ## 0.1.312 (2026-04-03)
@@ -70,7 +70,7 @@ function derivePlanStatus(prdFile, mdFile, prdJsonStatus, workItems) {
70
70
  w.sourcePlan === prdFile || w.sourcePlan === mdFile ||
71
71
  (w.type === 'plan-to-prd' && (w.planFile === prdFile || w.planFile === mdFile))
72
72
  );
73
- const implementWi = wi.filter(w => w.type !== 'plan-to-prd' && w.type !== 'verify' && w.type !== 'evaluate');
73
+ const implementWi = wi.filter(w => w.type !== 'plan-to-prd' && w.type !== 'verify');
74
74
  const hasPendingPrd = wi.some(w => w.type === 'plan-to-prd' && (w.status === 'pending' || w.status === 'dispatched'));
75
75
  const hasActiveWork = implementWi.some(w => w.status === 'pending' || w.status === 'dispatched');
76
76
  const allDone = implementWi.length > 0 && implementWi.every(w => w.status === 'done');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.314",
3
+ "version": "0.1.315",
4
4
  "description": "Multi-agent AI dev team that runs from ~/.minions/ — five autonomous agents share a single engine, dashboard, and knowledge base",
5
5
  "bin": {
6
6
  "minions": "bin/minions.js"
@@ -1,114 +0,0 @@
1
- # Evaluate: {{item_name}}
2
-
3
- > Agent: {{agent_name}} ({{agent_role}}) | Team root: {{team_root}}
4
-
5
- ## Context
6
-
7
- Project: {{project_name}}
8
- Repo: {{repo_name}} | Org: {{ado_org}} | ADO Project: {{ado_project}}
9
- PR: {{pr_url}}
10
- Work Item: {{item_id}}
11
-
12
- ## Acceptance Criteria
13
-
14
- {{acceptance_criteria}}
15
-
16
- ## Task Description
17
-
18
- {{task_description}}
19
-
20
- ## Your Task
21
-
22
- You are the **Evaluator** in the Planner-Generator-Evaluator pattern. Your job is to independently verify whether the implementation in the PR branch meets the acceptance criteria. You are NOT the implementer — you are the skeptic.
23
-
24
- **Mindset: Do not pass unless build succeeds AND all acceptance criteria are demonstrably met.** Assume the implementation is incomplete or wrong until proven otherwise. Look for edge cases, missing requirements, and silent failures.
25
-
26
- ## Step 1: Check Out the PR Branch
27
-
28
- ```bash
29
- cd {{project_path}}
30
- git fetch origin
31
- git checkout {{branch_name}}
32
- git pull origin {{branch_name}}
33
- ```
34
-
35
- ## Step 2: Build
36
-
37
- Run the project build. Check `CLAUDE.md`, `package.json`, or `README` for build instructions.
38
-
39
- ```bash
40
- # Typical:
41
- npm install && npm run build
42
- # Or whatever the project uses
43
- ```
44
-
45
- Record: **PASS** or **FAIL** with error output.
46
-
47
- If the build fails, **stop here** — the verdict is `pass: false`. Include the build error in feedback.
48
-
49
- ## Step 3: Run Tests
50
-
51
- Run the full test suite:
52
-
53
- ```bash
54
- npm test
55
- ```
56
-
57
- Record: **X passed / Y failed / Z skipped**.
58
-
59
- If any tests fail, note which ones and whether they are related to the changes.
60
-
61
- ## Step 4: Diff Review Against Acceptance Criteria
62
-
63
- Review the actual code changes:
64
-
65
- ```bash
66
- git diff {{main_branch}}...{{branch_name}} --stat
67
- git diff {{main_branch}}...{{branch_name}}
68
- ```
69
-
70
- For **each** acceptance criterion, determine:
71
- - **Met**: The diff demonstrably satisfies this criterion. Cite the specific file/line.
72
- - **Not met**: The diff does not satisfy this criterion, or satisfies it only partially. Explain what's missing.
73
-
74
- Be precise. "Looks good" is not an evaluation — cite file paths and line numbers.
75
-
76
- ## Step 5: Output Structured Verdict
77
-
78
- After completing your evaluation, output the following JSON block as your final output. This MUST be valid JSON wrapped in a `json` fenced code block:
79
-
80
- ```json
81
- {
82
- "pass": false,
83
- "build": true,
84
- "tests": "42/42",
85
- "criteria_met": [
86
- "criterion 1 — met because X (source: path/to/file.js:42)"
87
- ],
88
- "criteria_failed": [
89
- "criterion 2 — not met because Y is missing"
90
- ],
91
- "feedback": "Summary of what needs to change for this to pass. Be specific — file names, line numbers, what to add/fix."
92
- }
93
- ```
94
-
95
- Field definitions:
96
- - `pass`: `true` only if build succeeds AND **all** acceptance criteria are met. Otherwise `false`.
97
- - `build`: `true` if the build completed without errors, `false` otherwise.
98
- - `tests`: String in format `"passed/total"` (e.g., `"38/40"`). Use `"N/A"` if no test suite exists.
99
- - `criteria_met`: Array of strings — one per criterion that IS met. Include source references.
100
- - `criteria_failed`: Array of strings — one per criterion that is NOT met. Explain why.
101
- - `feedback`: Actionable feedback for the implementer. Be specific about what to fix. If `pass` is `true`, use this for minor suggestions or "LGTM".
102
-
103
- ## Rules
104
-
105
- - **No Playwright / browser testing** — this phase evaluates build, tests, and code review only.
106
- - **Do NOT fix code** — only evaluate and report. You are the evaluator, not the implementer.
107
- - **Do NOT rubber-stamp** — if a criterion is ambiguous, evaluate conservatively (fail it and explain).
108
- - **Build failure is an automatic fail** — do not evaluate criteria if the build doesn't pass.
109
- - **Every criterion must be addressed** — `criteria_met` + `criteria_failed` should cover all acceptance criteria.
110
- - **Cite sources** — reference file paths and line numbers for every met/failed criterion.
111
-
112
- {{references}}
113
-
114
- **Note:** Do NOT write to `agents/*/status.json` — the engine manages your status automatically.