groove-dev 0.25.12 → 0.25.13
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.
|
@@ -308,14 +308,14 @@ export class Daemon {
|
|
|
308
308
|
const initMapCreated = this.indexer.generateInitMap();
|
|
309
309
|
if (initMapCreated) {
|
|
310
310
|
console.log('[Groove] Init map generated — GROOVE_PROJECT_MAP.md');
|
|
311
|
-
// Seed journalist with the init map so it maintains it from here
|
|
312
|
-
this.journalist.seedFromInitMap();
|
|
313
|
-
// Record the init scan as a cold-start skip — the first planner
|
|
314
|
-
// will read the map instead of spending 8K+ tokens scanning
|
|
315
311
|
this.tokens.recordColdStartSkipped();
|
|
316
312
|
this.audit.log('init.map', { stats: this.indexer.getStatus().stats });
|
|
317
313
|
}
|
|
318
314
|
|
|
315
|
+
// Always seed journalist from existing map so getLastSynthesis()
|
|
316
|
+
// returns data on every startup (not just first run)
|
|
317
|
+
this.journalist.seedFromInitMap();
|
|
318
|
+
|
|
319
319
|
resolvePromise(this);
|
|
320
320
|
});
|
|
321
321
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "groove-dev",
|
|
3
|
-
"version": "0.25.
|
|
3
|
+
"version": "0.25.13",
|
|
4
4
|
"description": "Open-source agent orchestration layer — the AI company OS. MCP integrations (Slack, Gmail, Stripe, 15+), agent scheduling (cron), business roles (CMO, CFO, EA). GUI dashboard, multi-agent coordination, zero cold-start, infinite sessions. Works with Claude Code, Codex, Gemini CLI, Ollama.",
|
|
5
5
|
"license": "FSL-1.1-Apache-2.0",
|
|
6
6
|
"author": "Groove Dev <hello@groovedev.ai> (https://groovedev.ai)",
|
|
@@ -308,14 +308,14 @@ export class Daemon {
|
|
|
308
308
|
const initMapCreated = this.indexer.generateInitMap();
|
|
309
309
|
if (initMapCreated) {
|
|
310
310
|
console.log('[Groove] Init map generated — GROOVE_PROJECT_MAP.md');
|
|
311
|
-
// Seed journalist with the init map so it maintains it from here
|
|
312
|
-
this.journalist.seedFromInitMap();
|
|
313
|
-
// Record the init scan as a cold-start skip — the first planner
|
|
314
|
-
// will read the map instead of spending 8K+ tokens scanning
|
|
315
311
|
this.tokens.recordColdStartSkipped();
|
|
316
312
|
this.audit.log('init.map', { stats: this.indexer.getStatus().stats });
|
|
317
313
|
}
|
|
318
314
|
|
|
315
|
+
// Always seed journalist from existing map so getLastSynthesis()
|
|
316
|
+
// returns data on every startup (not just first run)
|
|
317
|
+
this.journalist.seedFromInitMap();
|
|
318
|
+
|
|
319
319
|
resolvePromise(this);
|
|
320
320
|
});
|
|
321
321
|
});
|