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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentskillsdk",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "Install agent skills from agentskills.dk",
5
5
  "type": "module",
6
6
  "bin": {
@@ -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('installationsomfang:', [
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
  ]);