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
|
@@ -67,8 +67,10 @@ class BaseIdeSetup {
|
|
|
67
67
|
*/
|
|
68
68
|
injectDynamicContent(content, agileflowDir) {
|
|
69
69
|
const { injectContent } = require('../../lib/content-injector');
|
|
70
|
-
|
|
71
|
-
|
|
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
|
}
|