daedalus-cli 1.80.0 → 1.81.0
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 +7 -0
- package/dist/agents/orchestrator.js +1 -1
- package/dist/model.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [1.81.0](https://github.com/bgill55/daedalus/compare/v1.80.0...v1.81.0) (2026-07-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **tui:** change spinner color from cyan to blue for consistency ([a93fd4d](https://github.com/bgill55/daedalus/commit/a93fd4d250d41feff2cc296f5a84afff564dbc5f))
|
|
7
|
+
|
|
1
8
|
# [1.80.0](https://github.com/bgill55/daedalus/compare/v1.79.0...v1.80.0) (2026-07-27)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -206,7 +206,7 @@ export class Orchestrator {
|
|
|
206
206
|
{ role: 'system', content: systemPrompt + (attempts > 1 ? `\n\nIMPORTANT: You MUST create a valid plan. Each subtask needs an explicit file path and concrete wording.${retryHint}` : '') + simplifyBlock },
|
|
207
207
|
{ role: 'user', content: `Create a step-by-step plan with one subtask per file for: ${goal}\n\nProject context:\n${projectContext || '(none discovered)'}${Orchestrator.getFrameworkGuidance(projectContext, this.toolContext.projectRoot)}\n\n${this.toolContext.activeFiles.size > 0 ? 'Files in context: ' + Array.from(this.toolContext.activeFiles.values()).join(', ') : ''}\n\nRemember: one subtask per file, include the exact file path in each subtask, order by dependencies.` },
|
|
208
208
|
];
|
|
209
|
-
const planSpinner = new DaedalusSpinner({ text: `planner generating plan`, color: (s) => pc.
|
|
209
|
+
const planSpinner = new DaedalusSpinner({ text: `planner generating plan`, color: (s) => pc.blue(s) });
|
|
210
210
|
planSpinner.start();
|
|
211
211
|
let completion;
|
|
212
212
|
try {
|
package/dist/model.js
CHANGED
|
@@ -142,7 +142,7 @@ export function createModelFunctions(deps) {
|
|
|
142
142
|
console.log(pc.dim('\n [STOP] Stopped'));
|
|
143
143
|
return { content: lastContent, toolCalls: [] };
|
|
144
144
|
}
|
|
145
|
-
const spinner = new DaedalusSpinner({ text: 'Daedalus thinking', color: (s) => pc.
|
|
145
|
+
const spinner = new DaedalusSpinner({ text: 'Daedalus thinking', color: (s) => pc.blue(s) });
|
|
146
146
|
spinner.start();
|
|
147
147
|
let fullContent = '';
|
|
148
148
|
const toolCallMap = new Map();
|