@skilly-hand/skilly-hand 0.26.5 → 0.26.7

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 (35) hide show
  1. package/CHANGELOG.md +30 -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 +1 -1
  32. package/packages/catalog/package.json +1 -1
  33. package/packages/cli/package.json +1 -1
  34. package/packages/core/package.json +1 -1
  35. package/packages/detectors/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -16,6 +16,36 @@ All notable changes to this project are documented in this file.
16
16
  ### Removed
17
17
  - _None._
18
18
 
19
+ ## [0.26.7] - 2026-05-12
20
+ [View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.26.7)
21
+
22
+ ### Added
23
+ - _None._
24
+
25
+ ### Changed
26
+ - _None._
27
+
28
+ ### Fixed
29
+ - Added release notes for the NotebookLLM prompt-engineering reference bundle so the next automated trusted-publisher release has non-empty changelog metadata.
30
+
31
+ ### Removed
32
+ - _None._
33
+
34
+ ## [0.26.6] - 2026-05-12
35
+ [View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.26.6)
36
+
37
+ ### Added
38
+ - Added NotebookLLM prompt-engineering PDF references to the `prompt-engineering` skill manifest and source map.
39
+
40
+ ### Changed
41
+ - _None._
42
+
43
+ ### Fixed
44
+ - _None._
45
+
46
+ ### Removed
47
+ - _None._
48
+
19
49
  ## [0.26.5] - 2026-05-09
20
50
  [View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.26.5)
21
51
 
@@ -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.26.7",
4
4
  "license": "CC-BY-NC-4.0",
5
5
  "type": "module",
6
6
  "repository": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skilly-hand/catalog",
3
- "version": "0.26.5",
3
+ "version": "0.26.7",
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.26.7",
4
4
  "private": true,
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skilly-hand/core",
3
- "version": "0.26.5",
3
+ "version": "0.26.7",
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.26.7",
4
4
  "private": true,
5
5
  "type": "module"
6
6
  }