@sallmarta/eye-hate-agent 1.0.10 → 1.0.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sallmarta/eye-hate-agent",
3
- "version": "1.0.10",
3
+ "version": "1.0.12",
4
4
  "description": "A simple Spec-Driven Development (SDD) for AI-agent-assisted project workflows.",
5
5
  "directories": {
6
6
  "doc": "docs"
@@ -234,7 +234,7 @@ ${loadSkillContent(skill)}`;
234
234
 
235
235
  function buildCopilotDeviceInstructionsFile(workflows) {
236
236
  const workflowTable = workflows
237
- .map(w => `- \`${w.commandName}\` → \`~/.copilot/prompts/eha-${w.commandName}.prompt.md\``)
237
+ .map(w => `- \`${w.commandName}\` → \`~/.copilot/skills/eha-${w.commandName}/SKILL.md\``)
238
238
  .join('\n');
239
239
 
240
240
  return `---
@@ -343,10 +343,10 @@ const RUNTIME_ADAPTERS = {
343
343
  generateDeviceFiles(homeDir, workflows, skills) {
344
344
  const files = [];
345
345
 
346
- // Prompts → ~/.copilot/prompts/eha-<name>.prompt.md
346
+ // Prompts → ~/.copilot/skills/eha-<name>/SKILL.md
347
347
  for (const workflow of workflows) {
348
348
  files.push({
349
- absolutePath: path.join(homeDir, '.copilot', 'prompts', `eha-${workflow.commandName}.prompt.md`),
349
+ absolutePath: path.join(homeDir, '.copilot', 'skills', `eha-${workflow.commandName}`, 'SKILL.md'),
350
350
  content: buildCopilotPromptFile(workflow),
351
351
  isSentinel: false,
352
352
  });
@@ -361,9 +361,9 @@ const RUNTIME_ADAPTERS = {
361
361
  });
362
362
  }
363
363
 
364
- // Instructions → ~/.copilot/instructions/eha.instructions.md (own file, NOT sentinel)
364
+ // Instructions → ~/.copilot/instructions/eha-agent-rules.instructions.md (own file, NOT sentinel)
365
365
  files.push({
366
- absolutePath: path.join(homeDir, '.copilot', 'instructions', 'eha.instructions.md'),
366
+ absolutePath: path.join(homeDir, '.copilot', 'instructions', 'eha-agent-rules.instructions.md'),
367
367
  content: buildCopilotDeviceInstructionsFile(workflows),
368
368
  isSentinel: false,
369
369
  });
@@ -379,7 +379,7 @@ const RUNTIME_ADAPTERS = {
379
379
  const files = [];
380
380
  for (const workflow of workflows) {
381
381
  files.push({
382
- relativePath: path.join('.agents', 'workflows', `eha-${workflow.commandName}`, 'SKILL.md'),
382
+ relativePath: path.join('.agents', 'workflows', `eha-${workflow.commandName}.md`),
383
383
  content: buildAntigravityCommandFile(workflow),
384
384
  });
385
385
  }
@@ -410,7 +410,7 @@ const RUNTIME_ADAPTERS = {
410
410
  }
411
411
  for (const skill of skills) {
412
412
  files.push({
413
- absolutePath: path.join(homeDir, '.gemini', 'skills', `eha-${skill.commandName}`, 'SKILL.md'),
413
+ absolutePath: path.join(homeDir, '.gemini', 'config', 'skills', `eha-${skill.commandName}`, 'SKILL.md'),
414
414
  content: buildAntigravitySkillFile(skill),
415
415
  isSentinel: false,
416
416
  });