agentskillsdk 0.4.1 → 0.4.2
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 +1 -1
- package/src/commands/add.js +1 -1
package/package.json
CHANGED
package/src/commands/add.js
CHANGED
|
@@ -122,7 +122,7 @@ export async function addCommand(skillName, options) {
|
|
|
122
122
|
} else {
|
|
123
123
|
// Build hint using first agent (representative)
|
|
124
124
|
const a = agents[0];
|
|
125
|
-
const result = await selectPrompt(
|
|
125
|
+
const result = await selectPrompt(`hvor skal "${installName}" installeres?`, [
|
|
126
126
|
{ label: 'projekt', hint: `(lokalt ${a.folder}/skills/)`, value: 'project' },
|
|
127
127
|
{ label: 'globalt', hint: `(~/${a.globalFolder}/skills/)`, value: 'global' },
|
|
128
128
|
]);
|