@yemi33/minions 0.1.1124 → 0.1.1125

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,5 +1,53 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.1125 (2026-04-18)
4
+
5
+ ### Features
6
+ - validate project name and path on POST /api/projects/add (SEC-04, SEC-05) (#1298)
7
+ - seed realActivityMap at spawn time, stamp pid in live-output (#1200)
8
+
9
+ ### Fixes
10
+ - auto-fetch PR title on link-pr (closes #1283) (#1299)
11
+ - scheduler double-fire within same cron minute (#1277)
12
+ - gate auto-fix dispatch on throttle state to prevent stale-data spurious fixes
13
+ - preserve buildErrorLog through transient build states (#1232) (#1274)
14
+ - annotate fast-exit empty-output failures with diagnostic hint (#1276)
15
+ - invalidate PRD cache on pr-links.json change + guard aggregate PRs (#1220) (#1272)
16
+ - pass --add-dir for minions + ~/.claude to agents (#1271)
17
+ - preserve VERDICT marker by tail-slicing agent output (#1234) (#1270)
18
+ - PRD info cache staleness and aggregate PR bleed-through (#1222)
19
+ - avoid no-op work item writes
20
+ - resilient claude binary resolution + surface spawn errors
21
+ - resolve native claude.exe from npm wrapper on Windows
22
+ - cap temp-agent creation at maxConcurrent per tick (#1219)
23
+ - reassign pending items from unspawned temp agents to idle named agents (#1204) (#1212)
24
+ - guard undefined agent in pending dispatch loop (closes #1206) (#1210)
25
+ - improve fallback meeting conclusion
26
+ - remove command center chevron
27
+ - stamp live-output.log stub before spawn (#1198)
28
+ - harden settings save and migrate pr poll config
29
+
30
+ ### Other
31
+ - refactor: hoist fixThrottled before PR loop and drop underscore prefix
32
+ - docs(skill): add substitute-scheduler-template-vars (#1278)
33
+ - Clarify PR poll labels
34
+ - Prevent modal opens on text selection
35
+ - refactor: clarify settings page section structure and PR polling dependencies
36
+ - refactor: extract _probeClaudePackage helper, use shared.log for spawn errors
37
+ - Make work item descriptions scrollable
38
+ - Use PAT for publish merges
39
+ - test(queries): add unit tests for invalidateDispatchCache/getInbox/getAgentCharter (#1214)
40
+ - test(shared): add unit tests for truncateTextBytes/tailTextBytes/execSilent/trackReviewMetric/parseCanonicalPrId (#1215)
41
+ - Fix publish workflow merge
42
+ - chore: raise default meeting round timeout
43
+ - Harden prompt context handling
44
+ - Harden loop watch conversion
45
+ - Add watches sidebar activity badge
46
+ - test(cli): add unit tests for handleCommand, start, stop, kill, spawn (#1191)
47
+ - chore: untrack pipeline files — local config only
48
+ - restore: recover daily-arch-improvement and weekly-dead-code-cleanup pipelines
49
+ - Harden CC stream resilience
50
+
3
51
  ## 0.1.1124 (2026-04-18)
4
52
 
5
53
  ### Features
package/dashboard.js CHANGED
@@ -4918,7 +4918,8 @@ What would you like to discuss or change? When you're happy, say "approve" and I
4918
4918
  mutateJsonFileLocked(prPath, (prs) => {
4919
4919
  const pr = prs.find(p => p.id === prId);
4920
4920
  if (!pr) return prs;
4921
- if (!title && prData.title) pr.title = prData.title.slice(0, 120);
4921
+ // Remote title always wins — any user-supplied title is a placeholder (closes #1283)
4922
+ if (prData.title) pr.title = prData.title.slice(0, 120);
4922
4923
  if (prData.description) pr.description = prData.description.slice(0, 500);
4923
4924
  if (!pr.branch && prData.branch) pr.branch = prData.branch;
4924
4925
  if (pr.agent === 'human' && prData.author) pr.agent = prData.author;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.1124",
3
+ "version": "0.1.1125",
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"