@yemi33/minions 0.1.597 → 0.1.598
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 +5 -0
- package/dashboard.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dashboard.js
CHANGED
|
@@ -170,7 +170,7 @@ function getEngineState() { return queries.getControl(); }
|
|
|
170
170
|
function _countWorktrees() {
|
|
171
171
|
try {
|
|
172
172
|
const config = queries.getConfig();
|
|
173
|
-
const projects =
|
|
173
|
+
const projects = shared.getProjects(config);
|
|
174
174
|
let count = 0;
|
|
175
175
|
for (const p of projects) {
|
|
176
176
|
const root = p.localPath ? path.resolve(p.localPath) : null;
|
|
@@ -1696,7 +1696,7 @@ Respond with ONLY valid JSON: { "duplicates": [{ "keep": N, "remove": [N], "reas
|
|
|
1696
1696
|
If nothing to do: { "duplicates": [], "reclassify": [], "remove": [] }`;
|
|
1697
1697
|
|
|
1698
1698
|
const result = await callLLM(prompt, 'Output only JSON.', {
|
|
1699
|
-
timeout: 120000, label: 'kb-sweep', model: 'haiku', maxTurns: 1
|
|
1699
|
+
timeout: 120000, label: 'kb-sweep', model: 'haiku', maxTurns: 1, direct: true
|
|
1700
1700
|
});
|
|
1701
1701
|
trackEngineUsage('kb-sweep', result.usage);
|
|
1702
1702
|
|
|
@@ -3400,7 +3400,7 @@ What would you like to discuss or change? When you're happy, say "approve" and I
|
|
|
3400
3400
|
|
|
3401
3401
|
const prompt = `Convert this schedule description to a 3-field cron expression (minute hour dayOfWeek, where dayOfWeek is 0=Sun..6=Sat or ranges like 1-5). Return JSON only: {"cron": "...", "description": "..."}. Input: ${text.trim()}`;
|
|
3402
3402
|
try {
|
|
3403
|
-
const result = await llm.callLLM(prompt, '', { model: 'haiku', maxTurns: 1, timeout: 30000, label: 'schedule-parse' });
|
|
3403
|
+
const result = await llm.callLLM(prompt, '', { model: 'haiku', maxTurns: 1, timeout: 30000, label: 'schedule-parse', direct: true });
|
|
3404
3404
|
const parsed = JSON.parse(result.text.trim());
|
|
3405
3405
|
if (!parsed.cron) return jsonReply(res, 422, { error: 'Could not parse schedule' });
|
|
3406
3406
|
return jsonReply(res, 200, { cron: parsed.cron, description: parsed.description || '' });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.598",
|
|
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"
|