agileflow 2.48.0 → 2.49.0

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.48.0",
3
+ "version": "2.49.0",
4
4
  "description": "AI-driven agile development system for Claude Code, Cursor, Windsurf, and more",
5
5
  "keywords": [
6
6
  "agile",
@@ -112,7 +112,7 @@ class ClaudeCodeSetup extends BaseIdeSetup {
112
112
  );
113
113
 
114
114
  // ALSO install agents as spawnable subagents (.claude/agents/agileflow/)
115
- // This allows Task tool to spawn them with subagent_type: "agileflow:ui"
115
+ // This allows Task tool to spawn them with subagent_type: "agileflow-ui"
116
116
  const spawnableAgentsDir = path.join(claudeDir, 'agents', 'agileflow');
117
117
  await this.installCommandsRecursive(
118
118
  agentsSource,
@@ -122,6 +122,23 @@ class ClaudeCodeSetup extends BaseIdeSetup {
122
122
  );
123
123
  console.log(chalk.dim(` - Spawnable agents: .claude/agents/agileflow/`));
124
124
 
125
+ // Install skills (.claude/skills/)
126
+ const skillsSource = path.join(agileflowDir, 'skills');
127
+ const skillsTargetDir = path.join(claudeDir, 'skills');
128
+ let skillCount = 0;
129
+ if (await this.exists(skillsSource)) {
130
+ const skillResult = await this.installCommandsRecursive(
131
+ skillsSource,
132
+ skillsTargetDir,
133
+ agileflowDir,
134
+ false
135
+ );
136
+ skillCount = skillResult.commands + skillResult.subdirs;
137
+ if (skillCount > 0) {
138
+ console.log(chalk.dim(` - Skills: .claude/skills/`));
139
+ }
140
+ }
141
+
125
142
  const totalCommands = commandResult.commands + agentResult.commands;
126
143
  const totalSubdirs = commandResult.subdirs + (agentResult.commands > 0 ? 1 : 0) + agentResult.subdirs;
127
144