groove-dev 0.25.6 → 0.25.7
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.
|
@@ -250,6 +250,20 @@ export class ProcessManager {
|
|
|
250
250
|
spawnConfig.prompt = `You are a ${agent.role} agent. No task has been assigned yet. Introduce yourself briefly and ask the user what they would like you to work on. Stay focused — do not analyze the codebase until given a task.`;
|
|
251
251
|
}
|
|
252
252
|
|
|
253
|
+
// Inject skill content into the prompt
|
|
254
|
+
if (config.skills?.length > 0 && this.daemon.skills) {
|
|
255
|
+
const skillSections = [];
|
|
256
|
+
for (const skillId of config.skills) {
|
|
257
|
+
const content = this.daemon.skills.getContent(skillId);
|
|
258
|
+
if (content) {
|
|
259
|
+
skillSections.push(`## Skill: ${skillId}\n\n${content}`);
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
if (skillSections.length > 0) {
|
|
263
|
+
spawnConfig.prompt += '\n\n' + skillSections.join('\n\n');
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
|
|
253
267
|
// Apply PM review instructions for Auto permission mode
|
|
254
268
|
// Agents call the PM endpoint before risky operations for AI review
|
|
255
269
|
const permission = config.permission || 'full';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "groove-dev",
|
|
3
|
-
"version": "0.25.
|
|
3
|
+
"version": "0.25.7",
|
|
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)",
|
|
@@ -250,6 +250,20 @@ export class ProcessManager {
|
|
|
250
250
|
spawnConfig.prompt = `You are a ${agent.role} agent. No task has been assigned yet. Introduce yourself briefly and ask the user what they would like you to work on. Stay focused — do not analyze the codebase until given a task.`;
|
|
251
251
|
}
|
|
252
252
|
|
|
253
|
+
// Inject skill content into the prompt
|
|
254
|
+
if (config.skills?.length > 0 && this.daemon.skills) {
|
|
255
|
+
const skillSections = [];
|
|
256
|
+
for (const skillId of config.skills) {
|
|
257
|
+
const content = this.daemon.skills.getContent(skillId);
|
|
258
|
+
if (content) {
|
|
259
|
+
skillSections.push(`## Skill: ${skillId}\n\n${content}`);
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
if (skillSections.length > 0) {
|
|
263
|
+
spawnConfig.prompt += '\n\n' + skillSections.join('\n\n');
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
|
|
253
267
|
// Apply PM review instructions for Auto permission mode
|
|
254
268
|
// Agents call the PM endpoint before risky operations for AI review
|
|
255
269
|
const permission = config.permission || 'full';
|