@yemi33/minions 0.1.794 → 0.1.795

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,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.794 (2026-04-10)
3
+ ## 0.1.795 (2026-04-10)
4
4
 
5
5
  ### Features
6
6
  - add open-source community sources to agentic research pipeline
@@ -8,6 +8,7 @@
8
8
  - cap review→fix cycles at evalMaxIterations (default 3)
9
9
 
10
10
  ### Fixes
11
+ - remove redundant 'PR' prefix from dispatch labels (id already has it)
11
12
  - include PR title in all dispatch labels and escalation alerts
12
13
  - never downgrade reviewStatus from 'approved' unless explicitly rejected
13
14
  - warn on invalid pipeline JSON instead of silently dropping + add test
package/engine.js CHANGED
@@ -1628,7 +1628,7 @@ async function discoverFromPrs(config, project) {
1628
1628
  const item = buildPrDispatch(agentId, config, project, pr, 'review', {
1629
1629
  pr_id: pr.id, pr_number: prNumber, pr_title: pr.title || '', pr_branch: pr.branch || '',
1630
1630
  pr_author: pr.agent || '', pr_url: pr.url || '',
1631
- }, `Review PR ${pr.id}: ${pr.title}`, { dispatchKey: key, source: 'pr', pr, branch: pr.branch, project: projMeta });
1631
+ }, `Review ${pr.id}: ${pr.title}`, { dispatchKey: key, source: 'pr', pr, branch: pr.branch, project: projMeta });
1632
1632
  if (item) { newWork.push(item); setCooldown(key); }
1633
1633
  }
1634
1634
 
@@ -1643,7 +1643,7 @@ async function discoverFromPrs(config, project) {
1643
1643
  const item = buildPrDispatch(agentId, config, project, pr, 'fix', {
1644
1644
  pr_id: pr.id, pr_branch: pr.branch || '',
1645
1645
  review_note: pr.minionsReview?.note || pr.reviewNote || 'See PR thread comments',
1646
- }, `Fix PR ${pr.id}: ${pr.title || ''} — review feedback`, { dispatchKey: key, source: 'pr', pr, branch: pr.branch, project: projMeta });
1646
+ }, `Fix ${pr.id}: ${pr.title || ''} — review feedback`, { dispatchKey: key, source: 'pr', pr, branch: pr.branch, project: projMeta });
1647
1647
  if (item) {
1648
1648
  newWork.push(item); setCooldown(key); fixDispatched = true;
1649
1649
  // Increment review→fix cycle counter
@@ -1682,7 +1682,7 @@ async function discoverFromPrs(config, project) {
1682
1682
  pr_id: pr.id, pr_number: prNumber, pr_title: pr.title || '', pr_branch: pr.branch || '',
1683
1683
  reviewer: 'Human Reviewer',
1684
1684
  review_note: reviewNote,
1685
- }, `Fix PR ${pr.id}: ${pr.title || ''} — human feedback`, { dispatchKey: key, source: 'pr-human-feedback', pr, branch: pr.branch, project: projMeta });
1685
+ }, `Fix ${pr.id}: ${pr.title || ''} — human feedback`, { dispatchKey: key, source: 'pr-human-feedback', pr, branch: pr.branch, project: projMeta });
1686
1686
  if (item) { newWork.push(item); setCooldown(key); fixDispatched = true; }
1687
1687
  }
1688
1688
 
@@ -1730,7 +1730,7 @@ async function discoverFromPrs(config, project) {
1730
1730
  const item = buildPrDispatch(agentId, config, project, pr, 'fix', {
1731
1731
  pr_id: pr.id, pr_branch: pr.branch || '',
1732
1732
  review_note: reviewNote,
1733
- }, `Fix build failure on PR ${pr.id}: ${pr.title || ''}`, { dispatchKey: key, source: 'pr', pr, branch: pr.branch, project: projMeta });
1733
+ }, `Fix build failure on ${pr.id}: ${pr.title || ''}`, { dispatchKey: key, source: 'pr', pr, branch: pr.branch, project: projMeta });
1734
1734
  if (item) {
1735
1735
  newWork.push(item); setCooldown(key);
1736
1736
  // Increment build fix attempts counter
@@ -1780,7 +1780,7 @@ async function discoverFromPrs(config, project) {
1780
1780
  const item = buildPrDispatch(agentId, config, project, pr, 'fix', {
1781
1781
  pr_id: pr.id, pr_branch: pr.branch || '',
1782
1782
  review_note: `This PR has merge conflicts with the target branch. Resolve the conflicts:\n\n1. Pull latest from main/master\n2. Resolve all conflicts (prefer PR branch changes unless main has critical fixes)\n3. Build and test after resolving\n4. Push the resolved branch`,
1783
- }, `Fix merge conflicts on PR ${pr.id}: ${pr.title || ''}`, { dispatchKey: key, source: 'pr', pr, branch: pr.branch, project: projMeta });
1783
+ }, `Fix merge conflicts on ${pr.id}: ${pr.title || ''}`, { dispatchKey: key, source: 'pr', pr, branch: pr.branch, project: projMeta });
1784
1784
  if (item) { newWork.push(item); setCooldown(key); }
1785
1785
  }
1786
1786
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.794",
3
+ "version": "0.1.795",
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"