agileflow 2.32.2 → 2.32.3

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": "agileflow",
3
- "version": "2.32.2",
3
+ "version": "2.32.3",
4
4
  "description": "AI-driven agile development system for Claude Code, Cursor, Windsurf, and more",
5
5
  "keywords": [
6
6
  "agile",
@@ -67,8 +67,10 @@ class BaseIdeSetup {
67
67
  */
68
68
  injectDynamicContent(content, agileflowDir) {
69
69
  const { injectContent } = require('../../lib/content-injector');
70
- const agentsDir = path.join(agileflowDir, 'src', 'core', 'agents');
71
- const commandsDir = path.join(agileflowDir, 'src', 'core', 'commands');
70
+ // agileflowDir is the user's .agileflow installation directory
71
+ // which has agents/ and commands/ at the root level (not src/core/)
72
+ const agentsDir = path.join(agileflowDir, 'agents');
73
+ const commandsDir = path.join(agileflowDir, 'commands');
72
74
 
73
75
  return injectContent(content, agentsDir, commandsDir);
74
76
  }