@skilly-hand/skilly-hand 0.26.5 → 0.27.0

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.
Files changed (37) hide show
  1. package/CHANGELOG.md +45 -0
  2. package/catalog/skills/project-security/assets/github-actions-security-gate.yml +7 -7
  3. package/catalog/skills/prompt-engineering/manifest.json +27 -1
  4. package/catalog/skills/prompt-engineering/references/notebookllm/AI_Red_Teaming.pdf +0 -0
  5. package/catalog/skills/prompt-engineering/references/notebookllm/Automatic_Prompt_Engineering.pdf +0 -0
  6. package/catalog/skills/prompt-engineering/references/notebookllm/Calibrating_LLMs.pdf +0 -0
  7. package/catalog/skills/prompt-engineering/references/notebookllm/Frequency_Penalty.pdf +0 -0
  8. package/catalog/skills/prompt-engineering/references/notebookllm/Introduction.pdf +0 -0
  9. package/catalog/skills/prompt-engineering/references/notebookllm/LLM_Self_Evaluation.pdf +0 -0
  10. package/catalog/skills/prompt-engineering/references/notebookllm/LLMs_and_How_Do_They_Work.pdf +0 -0
  11. package/catalog/skills/prompt-engineering/references/notebookllm/Max_Tokens.pdf +0 -0
  12. package/catalog/skills/prompt-engineering/references/notebookllm/Models_commonly_known.pdf +0 -0
  13. package/catalog/skills/prompt-engineering/references/notebookllm/Output_Control.pdf +0 -0
  14. package/catalog/skills/prompt-engineering/references/notebookllm/Presence_Penalty.pdf +0 -0
  15. package/catalog/skills/prompt-engineering/references/notebookllm/Prompt_Debiasing.pdf +0 -0
  16. package/catalog/skills/prompt-engineering/references/notebookllm/Prompt_Engineering.pdf +0 -0
  17. package/catalog/skills/prompt-engineering/references/notebookllm/Prompt_Ensembling.pdf +0 -0
  18. package/catalog/skills/prompt-engineering/references/notebookllm/Prompting_Best_Practices.pdf +0 -0
  19. package/catalog/skills/prompt-engineering/references/notebookllm/Prompting_Techniques.pdf +0 -0
  20. package/catalog/skills/prompt-engineering/references/notebookllm/Repetition_Penalties.pdf +0 -0
  21. package/catalog/skills/prompt-engineering/references/notebookllm/Sampling_Parameters.pdf +0 -0
  22. package/catalog/skills/prompt-engineering/references/notebookllm/Stop_Sequences.pdf +0 -0
  23. package/catalog/skills/prompt-engineering/references/notebookllm/Structured_Outputs.pdf +0 -0
  24. package/catalog/skills/prompt-engineering/references/notebookllm/Temperature.pdf +0 -0
  25. package/catalog/skills/prompt-engineering/references/notebookllm/Top-K.pdf +0 -0
  26. package/catalog/skills/prompt-engineering/references/notebookllm/Top-P.pdf +0 -0
  27. package/catalog/skills/prompt-engineering/references/notebookllm/Vocabulary.pdf +0 -0
  28. package/catalog/skills/prompt-engineering/references/notebookllm/Whats_a_prompt.pdf +0 -0
  29. package/catalog/skills/prompt-engineering/references/notebookllm/Whats_prompt_engineering.pdf +0 -0
  30. package/catalog/skills/prompt-engineering/references/notebookllm-source-map.md +21 -19
  31. package/package.json +6 -5
  32. package/packages/catalog/package.json +1 -1
  33. package/packages/cli/package.json +1 -1
  34. package/packages/cli/src/inquirer-ui.js +48 -55
  35. package/packages/core/package.json +1 -1
  36. package/packages/detectors/package.json +1 -1
  37. package/catalog/catalog-index.json +0 -21
package/CHANGELOG.md CHANGED
@@ -16,6 +16,51 @@ All notable changes to this project are documented in this file.
16
16
  ### Removed
17
17
  - _None._
18
18
 
19
+ ## [0.27.0] - 2026-05-16
20
+ [View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.27.0)
21
+
22
+ ### Added
23
+ - _None._
24
+
25
+ ### Changed
26
+ - _None._
27
+
28
+ ### Fixed
29
+ - _None._
30
+
31
+ ### Removed
32
+ - _None._
33
+
34
+ ## [0.26.7] - 2026-05-12
35
+ [View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.26.7)
36
+
37
+ ### Added
38
+ - _None._
39
+
40
+ ### Changed
41
+ - _None._
42
+
43
+ ### Fixed
44
+ - Added release notes for the NotebookLLM prompt-engineering reference bundle so the next automated trusted-publisher release has non-empty changelog metadata.
45
+
46
+ ### Removed
47
+ - _None._
48
+
49
+ ## [0.26.6] - 2026-05-12
50
+ [View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.26.6)
51
+
52
+ ### Added
53
+ - Added NotebookLLM prompt-engineering PDF references to the `prompt-engineering` skill manifest and source map.
54
+
55
+ ### Changed
56
+ - _None._
57
+
58
+ ### Fixed
59
+ - _None._
60
+
61
+ ### Removed
62
+ - _None._
63
+
19
64
  ## [0.26.5] - 2026-05-09
20
65
  [View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.26.5)
21
66
 
@@ -15,12 +15,12 @@ jobs:
15
15
  runs-on: ubuntu-24.04
16
16
  steps:
17
17
  - name: Checkout
18
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
18
+ uses: actions/checkout@v6
19
19
 
20
20
  - name: Setup Node
21
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
21
+ uses: actions/setup-node@v6
22
22
  with:
23
- node-version: "20"
23
+ node-version: "24"
24
24
 
25
25
  - name: Install dependencies (auto-detect package manager)
26
26
  run: |
@@ -44,12 +44,12 @@ jobs:
44
44
  runs-on: ubuntu-24.04
45
45
  steps:
46
46
  - name: Checkout
47
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
47
+ uses: actions/checkout@v6
48
48
 
49
49
  - name: Setup Node
50
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
50
+ uses: actions/setup-node@v6
51
51
  with:
52
- node-version: "20"
52
+ node-version: "24"
53
53
 
54
54
  - name: Install dependencies (auto-detect package manager)
55
55
  run: |
@@ -70,7 +70,7 @@ jobs:
70
70
  node scripts/dependency-security-check.mjs --json > dependency-security-report.json
71
71
 
72
72
  - name: Upload dependency report artifact
73
- uses: actions/upload-artifact@65462800fd760344b1a7b4382951275f52d1598f
73
+ uses: actions/upload-artifact@v4
74
74
  with:
75
75
  name: dependency-security-report
76
76
  path: dependency-security-report.json
@@ -30,7 +30,33 @@
30
30
  { "path": "assets/prompt-templates.md", "kind": "asset" },
31
31
  { "path": "assets/scenario-recipes.md", "kind": "asset" },
32
32
  { "path": "assets/evaluation-checklist.md", "kind": "asset" },
33
- { "path": "references/notebookllm-source-map.md", "kind": "reference" }
33
+ { "path": "references/notebookllm-source-map.md", "kind": "reference" },
34
+ { "path": "references/notebookllm/AI_Red_Teaming.pdf", "kind": "reference" },
35
+ { "path": "references/notebookllm/Automatic_Prompt_Engineering.pdf", "kind": "reference" },
36
+ { "path": "references/notebookllm/Calibrating_LLMs.pdf", "kind": "reference" },
37
+ { "path": "references/notebookllm/Frequency_Penalty.pdf", "kind": "reference" },
38
+ { "path": "references/notebookllm/Introduction.pdf", "kind": "reference" },
39
+ { "path": "references/notebookllm/LLM_Self_Evaluation.pdf", "kind": "reference" },
40
+ { "path": "references/notebookllm/LLMs_and_How_Do_They_Work.pdf", "kind": "reference" },
41
+ { "path": "references/notebookllm/Max_Tokens.pdf", "kind": "reference" },
42
+ { "path": "references/notebookllm/Models_commonly_known.pdf", "kind": "reference" },
43
+ { "path": "references/notebookllm/Output_Control.pdf", "kind": "reference" },
44
+ { "path": "references/notebookllm/Presence_Penalty.pdf", "kind": "reference" },
45
+ { "path": "references/notebookllm/Prompt_Debiasing.pdf", "kind": "reference" },
46
+ { "path": "references/notebookllm/Prompt_Ensembling.pdf", "kind": "reference" },
47
+ { "path": "references/notebookllm/Prompt_Engineering.pdf", "kind": "reference" },
48
+ { "path": "references/notebookllm/Prompting_Best_Practices.pdf", "kind": "reference" },
49
+ { "path": "references/notebookllm/Prompting_Techniques.pdf", "kind": "reference" },
50
+ { "path": "references/notebookllm/Repetition_Penalties.pdf", "kind": "reference" },
51
+ { "path": "references/notebookllm/Sampling_Parameters.pdf", "kind": "reference" },
52
+ { "path": "references/notebookllm/Stop_Sequences.pdf", "kind": "reference" },
53
+ { "path": "references/notebookllm/Structured_Outputs.pdf", "kind": "reference" },
54
+ { "path": "references/notebookllm/Temperature.pdf", "kind": "reference" },
55
+ { "path": "references/notebookllm/Top-K.pdf", "kind": "reference" },
56
+ { "path": "references/notebookllm/Top-P.pdf", "kind": "reference" },
57
+ { "path": "references/notebookllm/Vocabulary.pdf", "kind": "reference" },
58
+ { "path": "references/notebookllm/Whats_a_prompt.pdf", "kind": "reference" },
59
+ { "path": "references/notebookllm/Whats_prompt_engineering.pdf", "kind": "reference" }
34
60
  ],
35
61
  "dependencies": []
36
62
  }
@@ -2,47 +2,49 @@
2
2
 
3
3
  This skill was derived from the user's NotebookLLM AI Engineering prompt-engineering PDFs. The skill intentionally compresses the course material into operational guidance and avoids copying the PDFs as long-form text.
4
4
 
5
+ Bundle-level export: [Prompt_Engineering.pdf](notebookllm/Prompt_Engineering.pdf)
6
+
5
7
  ## Core Foundations
6
8
 
7
9
  | Skill section | Source PDFs |
8
10
  | --- | --- |
9
- | Prompt anatomy and principles | `Introduction.pdf`, `Whats_a_prompt.pdf`, `Whats_prompt_engineering.pdf`, `Prompting_Best_Practices.pdf` |
10
- | LLM mechanics and durable model-selection principles | `LLMs_and_How_Do_They_Work.pdf`, `Vocabulary.pdf`, `Models_commonly_known.pdf` |
11
- | Scenario decision tree | `Prompting_Techniques.pdf`, `Prompting_Best_Practices.pdf` |
11
+ | Prompt anatomy and principles | [Introduction.pdf](notebookllm/Introduction.pdf), [Whats_a_prompt.pdf](notebookllm/Whats_a_prompt.pdf), [Whats_prompt_engineering.pdf](notebookllm/Whats_prompt_engineering.pdf), [Prompting_Best_Practices.pdf](notebookllm/Prompting_Best_Practices.pdf) |
12
+ | LLM mechanics and durable model-selection principles | [LLMs_and_How_Do_They_Work.pdf](notebookllm/LLMs_and_How_Do_They_Work.pdf), [Vocabulary.pdf](notebookllm/Vocabulary.pdf), [Models_commonly_known.pdf](notebookllm/Models_commonly_known.pdf) |
13
+ | Scenario decision tree | [Prompting_Techniques.pdf](notebookllm/Prompting_Techniques.pdf), [Prompting_Best_Practices.pdf](notebookllm/Prompting_Best_Practices.pdf) |
12
14
 
13
15
  ## Prompting Strategies
14
16
 
15
17
  | Strategy | Source PDFs |
16
18
  | --- | --- |
17
- | Zero-shot, one-shot, few-shot | `Prompting_Techniques.pdf`, `Whats_a_prompt.pdf` |
18
- | Step-back prompting | `Prompting_Techniques.pdf`, `Prompt_Debiasing.pdf` |
19
- | Chain-of-thought and bounded reasoning | `Prompting_Techniques.pdf`, `LLMs_and_How_Do_They_Work.pdf` |
20
- | Self-consistency and Tree of Thoughts | `Prompting_Techniques.pdf` |
21
- | ReAct and tool boundaries | `Prompting_Techniques.pdf`, `Stop_Sequences.pdf`, `Output_Control.pdf` |
22
- | Prompt ensembling and automatic prompt engineering | `Prompt_Ensembling.pdf`, `Automatic_Prompt_Engineering.pdf` |
19
+ | Zero-shot, one-shot, few-shot | [Prompting_Techniques.pdf](notebookllm/Prompting_Techniques.pdf), [Whats_a_prompt.pdf](notebookllm/Whats_a_prompt.pdf) |
20
+ | Step-back prompting | [Prompting_Techniques.pdf](notebookllm/Prompting_Techniques.pdf), [Prompt_Debiasing.pdf](notebookllm/Prompt_Debiasing.pdf) |
21
+ | Chain-of-thought and bounded reasoning | [Prompting_Techniques.pdf](notebookllm/Prompting_Techniques.pdf), [LLMs_and_How_Do_They_Work.pdf](notebookllm/LLMs_and_How_Do_They_Work.pdf) |
22
+ | Self-consistency and Tree of Thoughts | [Prompting_Techniques.pdf](notebookllm/Prompting_Techniques.pdf) |
23
+ | ReAct and tool boundaries | [Prompting_Techniques.pdf](notebookllm/Prompting_Techniques.pdf), [Stop_Sequences.pdf](notebookllm/Stop_Sequences.pdf), [Output_Control.pdf](notebookllm/Output_Control.pdf) |
24
+ | Prompt ensembling and automatic prompt engineering | [Prompt_Ensembling.pdf](notebookllm/Prompt_Ensembling.pdf), [Automatic_Prompt_Engineering.pdf](notebookllm/Automatic_Prompt_Engineering.pdf) |
23
25
 
24
26
  ## Output and Parameter Control
25
27
 
26
28
  | Skill topic | Source PDFs |
27
29
  | --- | --- |
28
- | Temperature, top-p, top-k | `Sampling_Parameters.pdf`, `Temperature.pdf`, `Top-P.pdf`, `Top-K.pdf` |
29
- | Max tokens and stop sequences | `Max_Tokens.pdf`, `Stop_Sequences.pdf`, `Output_Control.pdf` |
30
- | Repetition penalties | `Repetition_Penalties.pdf`, `Frequency_Penalty.pdf`, `Presence_Penalty.pdf` |
31
- | Structured outputs | `Structured_Outputs.pdf`, `Output_Control.pdf`, `Prompting_Best_Practices.pdf` |
30
+ | Temperature, top-p, top-k | [Sampling_Parameters.pdf](notebookllm/Sampling_Parameters.pdf), [Temperature.pdf](notebookllm/Temperature.pdf), [Top-P.pdf](notebookllm/Top-P.pdf), [Top-K.pdf](notebookllm/Top-K.pdf) |
31
+ | Max tokens and stop sequences | [Max_Tokens.pdf](notebookllm/Max_Tokens.pdf), [Stop_Sequences.pdf](notebookllm/Stop_Sequences.pdf), [Output_Control.pdf](notebookllm/Output_Control.pdf) |
32
+ | Repetition penalties | [Repetition_Penalties.pdf](notebookllm/Repetition_Penalties.pdf), [Frequency_Penalty.pdf](notebookllm/Frequency_Penalty.pdf), [Presence_Penalty.pdf](notebookllm/Presence_Penalty.pdf) |
33
+ | Structured outputs | [Structured_Outputs.pdf](notebookllm/Structured_Outputs.pdf), [Output_Control.pdf](notebookllm/Output_Control.pdf), [Prompting_Best_Practices.pdf](notebookllm/Prompting_Best_Practices.pdf) |
32
34
 
33
35
  ## Reliability, Safety, and Evaluation
34
36
 
35
37
  | Skill topic | Source PDFs |
36
38
  | --- | --- |
37
- | Prompt testing and versioning | `Prompting_Best_Practices.pdf`, `Automatic_Prompt_Engineering.pdf` |
38
- | Self-evaluation and rubric judging | `LLM_Self_Evaluation.pdf` |
39
- | Confidence, abstention, calibration | `Calibrating_LLMs.pdf`, `LLM_Self_Evaluation.pdf` |
40
- | Debiasing and counterfactual testing | `Prompt_Debiasing.pdf` |
41
- | Red teaming and prompt-injection defense | `AI_Red_Teaming.pdf`, `Vocabulary.pdf`, `Prompting_Best_Practices.pdf` |
39
+ | Prompt testing and versioning | [Prompting_Best_Practices.pdf](notebookllm/Prompting_Best_Practices.pdf), [Automatic_Prompt_Engineering.pdf](notebookllm/Automatic_Prompt_Engineering.pdf) |
40
+ | Self-evaluation and rubric judging | [LLM_Self_Evaluation.pdf](notebookllm/LLM_Self_Evaluation.pdf) |
41
+ | Confidence, abstention, calibration | [Calibrating_LLMs.pdf](notebookllm/Calibrating_LLMs.pdf), [LLM_Self_Evaluation.pdf](notebookllm/LLM_Self_Evaluation.pdf) |
42
+ | Debiasing and counterfactual testing | [Prompt_Debiasing.pdf](notebookllm/Prompt_Debiasing.pdf) |
43
+ | Red teaming and prompt-injection defense | [AI_Red_Teaming.pdf](notebookllm/AI_Red_Teaming.pdf), [Vocabulary.pdf](notebookllm/Vocabulary.pdf), [Prompting_Best_Practices.pdf](notebookllm/Prompting_Best_Practices.pdf) |
42
44
 
43
45
  ## Durable-Only Provider Guidance
44
46
 
45
- `Models_commonly_known.pdf` includes provider and flagship-model examples that may become stale. This skill uses only durable selection criteria from that material:
47
+ [Models_commonly_known.pdf](notebookllm/Models_commonly_known.pdf) includes provider and flagship-model examples that may become stale. This skill uses only durable selection criteria from that material:
46
48
 
47
49
  - context window and retrieval strategy
48
50
  - cost and latency
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skilly-hand/skilly-hand",
3
- "version": "0.26.5",
3
+ "version": "0.27.0",
4
4
  "license": "CC-BY-NC-4.0",
5
5
  "type": "module",
6
6
  "repository": {
@@ -28,6 +28,7 @@
28
28
  "engines": {
29
29
  "node": ">=22.0.0"
30
30
  },
31
+ "packageManager": "pnpm@11.1.2",
31
32
  "scripts": {
32
33
  "build": "node ./scripts/build-catalog-index.mjs",
33
34
  "catalog:check": "node ./scripts/check-catalog.mjs",
@@ -53,11 +54,11 @@
53
54
  "detect": "node ./packages/cli/src/bin.js detect",
54
55
  "list": "node ./packages/cli/src/bin.js list",
55
56
  "doctor": "node ./packages/cli/src/bin.js doctor",
56
- "site:dev": "npm run dev -w @skilly-hand/site",
57
- "site:build": "npm run build -w @skilly-hand/site",
58
- "site:preview": "npm run preview -w @skilly-hand/site"
57
+ "site:dev": "pnpm --filter @skilly-hand/site dev",
58
+ "site:build": "pnpm --filter @skilly-hand/site build",
59
+ "site:preview": "pnpm --filter @skilly-hand/site preview"
59
60
  },
60
61
  "dependencies": {
61
- "inquirer": "13.4.1"
62
+ "@inquirer/prompts": "8.4.3"
62
63
  }
63
64
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skilly-hand/catalog",
3
- "version": "0.26.5",
3
+ "version": "0.27.0",
4
4
  "private": true,
5
5
  "type": "module"
6
6
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skilly-hand/cli",
3
- "version": "0.26.5",
3
+ "version": "0.27.0",
4
4
  "private": true,
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,4 +1,9 @@
1
- import inquirer from "inquirer";
1
+ import {
2
+ checkbox as checkboxPrompt,
3
+ confirm as confirmPrompt,
4
+ search as searchPrompt,
5
+ select as selectPrompt
6
+ } from "@inquirer/prompts";
2
7
  import { filterCommands, getInteractiveCommands } from "./command-registry.js";
3
8
 
4
9
  function writeBlock(write, title, body) {
@@ -74,21 +79,25 @@ const COMMAND_HINTS = {
74
79
  uninstall: "Tip: run `npx skilly-hand install` anytime to restore managed files."
75
80
  };
76
81
 
82
+ const DEFAULT_PROMPT_FNS = {
83
+ checkbox: checkboxPrompt,
84
+ confirm: confirmPrompt,
85
+ search: searchPrompt,
86
+ select: selectPrompt
87
+ };
88
+
77
89
  export function createInquirerInteractiveUi({
78
- prompt = (questions) => inquirer.prompt(questions),
90
+ promptFns = {},
79
91
  write = (value) => process.stdout.write(value)
80
92
  } = {}) {
93
+ const prompts = { ...DEFAULT_PROMPT_FNS, ...promptFns };
94
+
81
95
  async function confirm({ message, defaultValue = false }) {
82
96
  try {
83
- const response = await prompt([
84
- {
85
- type: "confirm",
86
- name: "confirmed",
87
- message: String(message),
88
- default: defaultValue
89
- }
90
- ]);
91
- return Boolean(response.confirmed);
97
+ return Boolean(await prompts.confirm({
98
+ message: String(message),
99
+ default: defaultValue
100
+ }));
92
101
  } catch (error) {
93
102
  if (error?.name === "ExitPromptError") return false;
94
103
  throw error;
@@ -100,21 +109,17 @@ export function createInquirerInteractiveUi({
100
109
  writeBlock(write, "Guided Home", buildGuidedHomeIntro());
101
110
 
102
111
  while (true) {
103
- const { command } = await prompt([
104
- {
105
- type: "search",
106
- name: "command",
107
- message: `${header}: choose a command`,
108
- source: async (term) =>
109
- filterCommands(commands, term).map((item) => ({
110
- name: commandChoiceName(item),
111
- value: item.value,
112
- description: `${item.bestFor} | aliases: ${(item.aliases || []).join(", ") || "none"}`
113
- })),
114
- default: "install",
115
- pageSize: 10
116
- }
117
- ]);
112
+ const command = await prompts.search({
113
+ message: `${header}: choose a command`,
114
+ source: async (term) =>
115
+ filterCommands(commands, term).map((item) => ({
116
+ name: commandChoiceName(item),
117
+ value: item.value,
118
+ description: `${item.bestFor} | aliases: ${(item.aliases || []).join(", ") || "none"}`
119
+ })),
120
+ default: "install",
121
+ pageSize: 10
122
+ });
118
123
 
119
124
  if (command === "exit") return;
120
125
  if (command === "command-guide") {
@@ -129,27 +134,19 @@ export function createInquirerInteractiveUi({
129
134
 
130
135
  writeBlock(write, "Install Tips", installTipsBlock());
131
136
 
132
- const { selectedSkillIds } = await prompt([
133
- {
134
- type: "checkbox",
135
- name: "selectedSkillIds",
136
- message: "Select skills to install",
137
- choices: skillChoices,
138
- pageSize: 16
139
- }
140
- ]);
137
+ const selectedSkillIds = await prompts.checkbox({
138
+ message: "Select skills to install",
139
+ choices: skillChoices,
140
+ pageSize: 16
141
+ });
141
142
 
142
143
  writeBlock(write, "Assistant Target Tips", agentTipsBlock());
143
144
 
144
- const { selectedAgents } = await prompt([
145
- {
146
- type: "checkbox",
147
- name: "selectedAgents",
148
- message: "Select assistant targets",
149
- choices: agentChoices,
150
- pageSize: 12
151
- }
152
- ]);
145
+ const selectedAgents = await prompts.checkbox({
146
+ message: "Select assistant targets",
147
+ choices: agentChoices,
148
+ pageSize: 12
149
+ });
153
150
 
154
151
  const previewBundle = await actions.previewInstallBundle({
155
152
  selectedSkillIds,
@@ -157,17 +154,13 @@ export function createInquirerInteractiveUi({
157
154
  });
158
155
  writeBlock(write, "Install Preview", previewBundle?.text || "");
159
156
 
160
- const { installDecision } = await prompt([
161
- {
162
- type: "list",
163
- name: "installDecision",
164
- message: "Next action (type 'apply' to install, or 'menu' to go back)",
165
- choices: [
166
- { name: "Apply installation", value: "apply" },
167
- { name: "Back to command menu", value: "menu" }
168
- ]
169
- }
170
- ]);
157
+ const installDecision = await prompts.select({
158
+ message: "Next action (type 'apply' to install, or 'menu' to go back)",
159
+ choices: [
160
+ { name: "Apply installation", value: "apply" },
161
+ { name: "Back to command menu", value: "menu" }
162
+ ]
163
+ });
171
164
 
172
165
  if (installDecision === "apply") {
173
166
  const applyBundle = await actions.applyInstallBundle({
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skilly-hand/core",
3
- "version": "0.26.5",
3
+ "version": "0.27.0",
4
4
  "private": true,
5
5
  "type": "module"
6
6
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skilly-hand/detectors",
3
- "version": "0.26.5",
3
+ "version": "0.27.0",
4
4
  "private": true,
5
5
  "type": "module"
6
6
  }
@@ -1,21 +0,0 @@
1
- [
2
- "accessibility-audit",
3
- "agents-root-orchestrator",
4
- "angular-guidelines",
5
- "figma-mcp-0to1",
6
- "frontend-design",
7
- "gsap-animation",
8
- "motion-animation",
9
- "output-optimizer",
10
- "project-security",
11
- "project-teacher",
12
- "prompt-engineering",
13
- "react-guidelines",
14
- "review-rangers",
15
- "roaster",
16
- "skill-creator",
17
- "spec-driven-development",
18
- "test-driven-development",
19
- "token-optimizer",
20
- "user-story-crafting"
21
- ]