appiq-solution 1.4.9 → 1.5.1
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
@@ -93,15 +93,26 @@ class IdeSetup extends BaseIdeSetup {
|
|
93
93
|
|
94
94
|
// Setup expansion pack commands
|
95
95
|
const expansionPacks = await this.getInstalledExpansionPacks(installDir);
|
96
|
+
console.log(chalk.blue(`📦 Found ${expansionPacks.length} expansion packs`));
|
97
|
+
|
96
98
|
for (const packInfo of expansionPacks) {
|
99
|
+
console.log(chalk.blue(`🔍 Processing expansion pack: ${packInfo.name} at ${packInfo.path}`));
|
100
|
+
|
97
101
|
const packSlashPrefix = await this.getExpansionPackSlashPrefix(packInfo.path);
|
98
102
|
const packAgents = await this.getExpansionPackAgents(packInfo.path);
|
99
103
|
const packTasks = await this.getExpansionPackTasks(packInfo.path);
|
100
104
|
|
105
|
+
console.log(chalk.blue(` - Slash prefix: ${packSlashPrefix}`));
|
106
|
+
console.log(chalk.blue(` - Found ${packAgents.length} agents: ${packAgents.join(', ')}`));
|
107
|
+
console.log(chalk.blue(` - Found ${packTasks.length} tasks: ${packTasks.join(', ')}`));
|
108
|
+
|
101
109
|
if (packAgents.length > 0 || packTasks.length > 0) {
|
102
110
|
// Use the actual directory name where the expansion pack is installed
|
103
111
|
const rootPath = path.relative(installDir, packInfo.path);
|
112
|
+
console.log(chalk.green(`✓ Setting up commands for ${packInfo.name} with root path: ${rootPath}`));
|
104
113
|
await this.setupClaudeCodeForPackage(installDir, packInfo.name, packSlashPrefix, packAgents, packTasks, rootPath);
|
114
|
+
} else {
|
115
|
+
console.log(chalk.yellow(`⚠ No agents or tasks found for ${packInfo.name}`));
|
105
116
|
}
|
106
117
|
}
|
107
118
|
|