agentskillsdk 0.5.1 → 0.5.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 +2 -4
package/package.json
CHANGED
package/src/commands/add.js
CHANGED
|
@@ -123,11 +123,9 @@ export async function addCommand(skillName, options) {
|
|
|
123
123
|
} else if (options.project) {
|
|
124
124
|
scope = 'project';
|
|
125
125
|
} else {
|
|
126
|
-
// Build hint using first agent (representative)
|
|
127
|
-
const a = agents[0];
|
|
128
126
|
const result = await selectPrompt(chalk.bold(`hvor skal "${installName}" installeres?`), [
|
|
129
|
-
{ label: 'projekt', hint:
|
|
130
|
-
{ label: 'globalt', hint:
|
|
127
|
+
{ label: 'projekt', hint: '(lokalt .agents/skills/)', value: 'project' },
|
|
128
|
+
{ label: 'globalt', hint: '(~/.agents/skills/)', value: 'global' },
|
|
131
129
|
]);
|
|
132
130
|
|
|
133
131
|
if (result === null) {
|