groove-dev 0.25.5 → 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.
- package/node_modules/@groove-dev/daemon/src/process.js +14 -0
- package/node_modules/@groove-dev/gui/dist/assets/index-DlWsuLvF.js +623 -0
- package/node_modules/@groove-dev/gui/dist/assets/index-GYcMwmjs.css +1 -0
- package/node_modules/@groove-dev/gui/dist/index.html +2 -2
- package/node_modules/@groove-dev/gui/src/components/agents/agent-feed.jsx +27 -2
- package/node_modules/@groove-dev/gui/src/components/agents/spawn-wizard.jsx +101 -24
- package/package.json +1 -1
- package/packages/daemon/src/process.js +14 -0
- package/packages/gui/dist/assets/index-DlWsuLvF.js +623 -0
- package/packages/gui/dist/assets/index-GYcMwmjs.css +1 -0
- package/packages/gui/dist/index.html +2 -2
- package/packages/gui/src/components/agents/agent-feed.jsx +27 -2
- package/packages/gui/src/components/agents/spawn-wizard.jsx +101 -24
- package/node_modules/@groove-dev/gui/dist/assets/index-B8gbMMHj.css +0 -1
- package/node_modules/@groove-dev/gui/dist/assets/index-feaBOh4i.js +0 -617
- package/packages/gui/dist/assets/index-B8gbMMHj.css +0 -1
- package/packages/gui/dist/assets/index-feaBOh4i.js +0 -617
|
@@ -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';
|