@yemi33/minions 0.1.283 → 0.1.285
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 +3 -1
- package/dashboard/js/command-center.js +1 -0
- package/minions.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.285 (2026-04-03)
|
|
4
4
|
|
|
5
5
|
### Fixes
|
|
6
|
+
- scan default path uses os.homedir() not env vars
|
|
7
|
+
- render proper thinking layout immediately — no flash of unstyled text
|
|
6
8
|
- thinking indicator layout — text ... dots ... elapsed time right-aligned
|
|
7
9
|
- thinking indicator shows immediately when user sends message
|
|
8
10
|
|
|
@@ -203,6 +203,7 @@ async function _ccDoSend(message, skipUserMsg) {
|
|
|
203
203
|
}
|
|
204
204
|
// Start phase timer immediately so thinking text updates while waiting for SSE
|
|
205
205
|
const phaseTimer = setInterval(updateStreamDiv, 1000);
|
|
206
|
+
updateStreamDiv(); // render proper layout immediately (not raw "Thinking..." text)
|
|
206
207
|
|
|
207
208
|
try {
|
|
208
209
|
// Stream response via SSE — shows text as it arrives
|
package/minions.js
CHANGED
|
@@ -293,7 +293,7 @@ async function scanAndAdd({ root, depth } = {}) {
|
|
|
293
293
|
if (root) {
|
|
294
294
|
scanRoots = [path.resolve(root)];
|
|
295
295
|
} else {
|
|
296
|
-
const homeDir =
|
|
296
|
+
const homeDir = require('os').homedir();
|
|
297
297
|
const answer = await ask('Where are your projects? (comma-separate for multiple)', homeDir);
|
|
298
298
|
scanRoots = answer.split(',').map(s => path.resolve(s.trim())).filter(Boolean);
|
|
299
299
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.285",
|
|
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"
|