kiro-agents 1.9.0 → 1.9.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/build/npm/bin/cli.js +9 -5
- package/package.json +1 -1
package/build/npm/bin/cli.js
CHANGED
|
@@ -132,8 +132,7 @@ async function registerPowerInRegistry() {
|
|
|
132
132
|
powerCount: 1
|
|
133
133
|
};
|
|
134
134
|
registry.lastUpdated = new Date().toISOString();
|
|
135
|
-
|
|
136
|
-
console.log("✅ Registered power in Kiro registry");
|
|
135
|
+
console.log("ℹ️ Registry data prepared (write disabled - manual activation required)");
|
|
137
136
|
}
|
|
138
137
|
async function installFile(relativePath, installDir, sourceDir) {
|
|
139
138
|
const destPath = join(installDir, relativePath);
|
|
@@ -172,7 +171,7 @@ async function install() {
|
|
|
172
171
|
await installFile(file, POWER_INSTALL_DIR, "power");
|
|
173
172
|
}
|
|
174
173
|
console.log(`
|
|
175
|
-
\uD83D\uDCDD
|
|
174
|
+
\uD83D\uDCDD Registry registration (currently disabled)...`);
|
|
176
175
|
try {
|
|
177
176
|
await registerPowerInRegistry();
|
|
178
177
|
} catch (error) {
|
|
@@ -187,8 +186,13 @@ async function install() {
|
|
|
187
186
|
\uD83D\uDCC1 Steering files: ${STEERING_INSTALL_DIR}`);
|
|
188
187
|
console.log(`\uD83D\uDCC1 Power files: ${POWER_INSTALL_DIR}`);
|
|
189
188
|
console.log(`
|
|
190
|
-
\uD83D\uDCA1
|
|
191
|
-
console.log("
|
|
189
|
+
\uD83D\uDCA1 To activate the kiro-protocols power:`);
|
|
190
|
+
console.log(" 1. Open Kiro IDE Powers panel");
|
|
191
|
+
console.log(" 2. Add Repository → Local Directory");
|
|
192
|
+
console.log(` 3. Select: ${POWER_INSTALL_DIR}`);
|
|
193
|
+
console.log(" 4. Install the power");
|
|
194
|
+
console.log(`
|
|
195
|
+
\uD83D\uDCA1 Files are set to read-only. To modify them, change permissions first.`);
|
|
192
196
|
console.log(`
|
|
193
197
|
\uD83D\uDD04 To update, simply run 'npx kiro-agents' again.`);
|
|
194
198
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kiro-agents",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.1",
|
|
4
4
|
"description": "Advanced AI agent system for Kiro IDE - Create specialized AI agents, switch interaction modes, and enhance development workflows with minimal cognitive overhead",
|
|
5
5
|
"homepage": "https://github.com/Theadd/kiro-agents#readme",
|
|
6
6
|
"repository": {
|