groove-dev 0.25.6 → 0.25.8

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';