groove-dev 0.24.15 → 0.24.16
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.
|
@@ -183,6 +183,15 @@ export class ProcessManager {
|
|
|
183
183
|
// Generate introduction context (team awareness + negotiation)
|
|
184
184
|
const introContext = introducer.generateContext(agent, { taskNegotiation });
|
|
185
185
|
|
|
186
|
+
// Track cold-start savings — agent gets context from planner/journalist/team
|
|
187
|
+
// instead of exploring the codebase from scratch
|
|
188
|
+
const otherAgents = registry.getAll().filter((a) => a.id !== agent.id);
|
|
189
|
+
const hasTeamContext = otherAgents.length > 0;
|
|
190
|
+
const hasJournalistContext = this.daemon.journalist?.getLastSynthesis()?.projectMap;
|
|
191
|
+
if (hasTeamContext || hasJournalistContext) {
|
|
192
|
+
this.daemon.tokens.recordColdStartSkipped();
|
|
193
|
+
}
|
|
194
|
+
|
|
186
195
|
// Update AGENTS_REGISTRY.md (other agents can see this new agent)
|
|
187
196
|
introducer.writeRegistryFile(this.daemon.projectDir);
|
|
188
197
|
|
|
@@ -5,7 +5,8 @@ import { readFileSync, writeFileSync, existsSync } from 'fs';
|
|
|
5
5
|
import { resolve } from 'path';
|
|
6
6
|
|
|
7
7
|
// Estimated tokens wasted per cold-start without GROOVE context
|
|
8
|
-
|
|
8
|
+
// (agent explores codebase, reads files, discovers structure, builds mental model)
|
|
9
|
+
const COLD_START_OVERHEAD = 8000;
|
|
9
10
|
// Estimated tokens wasted per file conflict (agent discovers, backs off, retries)
|
|
10
11
|
const CONFLICT_OVERHEAD = 500;
|
|
11
12
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "groove-dev",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.16",
|
|
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)",
|
|
@@ -183,6 +183,15 @@ export class ProcessManager {
|
|
|
183
183
|
// Generate introduction context (team awareness + negotiation)
|
|
184
184
|
const introContext = introducer.generateContext(agent, { taskNegotiation });
|
|
185
185
|
|
|
186
|
+
// Track cold-start savings — agent gets context from planner/journalist/team
|
|
187
|
+
// instead of exploring the codebase from scratch
|
|
188
|
+
const otherAgents = registry.getAll().filter((a) => a.id !== agent.id);
|
|
189
|
+
const hasTeamContext = otherAgents.length > 0;
|
|
190
|
+
const hasJournalistContext = this.daemon.journalist?.getLastSynthesis()?.projectMap;
|
|
191
|
+
if (hasTeamContext || hasJournalistContext) {
|
|
192
|
+
this.daemon.tokens.recordColdStartSkipped();
|
|
193
|
+
}
|
|
194
|
+
|
|
186
195
|
// Update AGENTS_REGISTRY.md (other agents can see this new agent)
|
|
187
196
|
introducer.writeRegistryFile(this.daemon.projectDir);
|
|
188
197
|
|
|
@@ -5,7 +5,8 @@ import { readFileSync, writeFileSync, existsSync } from 'fs';
|
|
|
5
5
|
import { resolve } from 'path';
|
|
6
6
|
|
|
7
7
|
// Estimated tokens wasted per cold-start without GROOVE context
|
|
8
|
-
|
|
8
|
+
// (agent explores codebase, reads files, discovers structure, builds mental model)
|
|
9
|
+
const COLD_START_OVERHEAD = 8000;
|
|
9
10
|
// Estimated tokens wasted per file conflict (agent discovers, backs off, retries)
|
|
10
11
|
const CONFLICT_OVERHEAD = 500;
|
|
11
12
|
|