@yemi33/minions 0.1.940 → 0.1.942
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 +2 -2
- package/dashboard.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.942 (2026-04-14)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
- make ADO poll frequency configurable and ungate reconcilePrs
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
- add red dot notification on CC tab when response completes (#934) (#946)
|
|
24
24
|
|
|
25
25
|
### Fixes
|
|
26
|
+
- use repositoryId+reasonFilter for ADO build query
|
|
26
27
|
- deduplicate work item creation by title
|
|
27
28
|
- ADO build query uses repositoryId+pullRequest instead of branchName
|
|
28
29
|
- persist adoPollEnabled/ghPollEnabled in settings save
|
|
@@ -42,7 +43,6 @@
|
|
|
42
43
|
- optimistic archive hides both PRD and linked source plan simultaneously
|
|
43
44
|
- align CC tab unread dot to same position as working dot
|
|
44
45
|
- pipeline artifact links use pushModalBack instead of setTimeout race (#993)
|
|
45
|
-
- close unclosed code fences and lone backticks in renderMd (#991)
|
|
46
46
|
|
|
47
47
|
### Other
|
|
48
48
|
- test(preflight): add unit tests for findClaudeBinary, runPreflight, printPreflight, checkOrExit (#953)
|
package/dashboard.js
CHANGED
|
@@ -1476,7 +1476,7 @@ const server = http.createServer(async (req, res) => {
|
|
|
1476
1476
|
}
|
|
1477
1477
|
const id = 'W-' + shared.uid();
|
|
1478
1478
|
const item = {
|
|
1479
|
-
id, title: body.title, type: body.type || 'implement',
|
|
1479
|
+
id, title: body.title.trim(), type: body.type || 'implement',
|
|
1480
1480
|
priority: body.priority || 'medium', description: body.description || '',
|
|
1481
1481
|
status: WI_STATUS.PENDING, created: new Date().toISOString(), createdBy: 'dashboard',
|
|
1482
1482
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.942",
|
|
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"
|