@lythos/skill-deck 0.9.19 → 0.9.20

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 (2) hide show
  1. package/README.md +19 -17
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
  This package exposes a **CLI**. Invoke via:
10
10
 
11
11
  ```bash
12
- bunx @lythos/skill-deck@0.9.19 <command> [options]
12
+ bunx @lythos/skill-deck@0.9.20 <command> [options]
13
13
  ```
14
14
 
15
15
  No installation required. `bunx` auto-downloads the package.
@@ -41,26 +41,28 @@ path = "github.com/mattpocock/skills/skills/engineering/tdd"
41
41
  [tool.skills.gstack]
42
42
  path = "github.com/garrytan/gstack"
43
43
 
44
- [combo.skills.pdf] # Multi-skill bundles
45
- path = "github.com/anthropics/skills/skills/pdf"
44
+ [transient.trial-skill] # Trial skills with auto-expiry
45
+ path = "./skills/experimental"
46
+ expires = "2026-06-01" # ISO date; warns at ≤14 days
46
47
 
47
- [transient.handoff] # Temporary skills with expiry
48
- path = "./skills/handoff" # Local path (not cold pool)
49
- expires = "2026-05-01" # ISO date; warns at ≤14 days
48
+ # combo is a meta-declaration, not a skill type (doesn't count against max_cards):
49
+ [combo.report-generation]
50
+ skills = ["web-search", "docx", "mermaid"]
51
+ prompt = "Search for latest info, then generate professional document with diagrams"
50
52
  ```
51
53
 
52
54
  ### When to invoke
53
55
 
54
56
  | Situation | Command |
55
57
  |-----------|---------|
56
- | Sync working set with `skill-deck.toml` | `bunx @lythos/skill-deck@0.9.19 link` |
57
- | Validate `skill-deck.toml` before committing | `bunx @lythos/skill-deck@0.9.19 validate` |
58
- | Download a skill to cold pool and add to deck | `bunx @lythos/skill-deck@0.9.19 add owner/repo` |
59
- | Pull latest versions of declared skills | `bunx @lythos/skill-deck@0.9.19 refresh` |
60
- | Refresh a single skill by alias | `bunx @lythos/skill-deck@0.9.19 refresh tdd` |
61
- | Remove a skill from deck and working set | `bunx @lythos/skill-deck@0.9.19 remove tdd` |
62
- | GC unreferenced repos from cold pool | `bunx @lythos/skill-deck@0.9.19 prune` |
63
- | Use a custom deck file or working dir | `bunx @lythos/skill-deck@0.9.19 link --deck ./my-deck.toml --workdir /path/to/project` |
58
+ | Sync working set with `skill-deck.toml` | `bunx @lythos/skill-deck@0.9.20 link` |
59
+ | Validate `skill-deck.toml` before committing | `bunx @lythos/skill-deck@0.9.20 validate` |
60
+ | Download a skill to cold pool and add to deck | `bunx @lythos/skill-deck@0.9.20 add owner/repo` |
61
+ | Pull latest versions of declared skills | `bunx @lythos/skill-deck@0.9.20 refresh` |
62
+ | Refresh a single skill by alias | `bunx @lythos/skill-deck@0.9.20 refresh tdd` |
63
+ | Remove a skill from deck and working set | `bunx @lythos/skill-deck@0.9.20 remove tdd` |
64
+ | GC unreferenced repos from cold pool | `bunx @lythos/skill-deck@0.9.20 prune` |
65
+ | Use a custom deck file or working dir | `bunx @lythos/skill-deck@0.9.20 link --deck ./my-deck.toml --workdir /path/to/project` |
64
66
 
65
67
  ### Commands
66
68
 
@@ -81,7 +83,7 @@ expires = "2026-05-01" # ISO date; warns at ≤14 days
81
83
  | `--workdir <dir>` | Working directory | cwd |
82
84
 
83
85
  | `--alias <alias>` | Explicit alias for the skill (default: basename of path) | — |
84
- | `--type <type>` | Target section for `add`: `innate`, `tool`, or `combo` | `tool` |
86
+ | `--type <type>` | Target section for `add`: `innate`, `tool`, or `transient` | `tool` |
85
87
 
86
88
  ### Safety guards
87
89
 
@@ -117,7 +119,7 @@ path = "github.com/lythos-labs/lythoskill/skills/lythoskill-deck"
117
119
  EOF
118
120
 
119
121
  # 2. Link — creates symlinks in .claude/skills/
120
- bunx @lythos/skill-deck@0.9.19 link
122
+ bunx @lythos/skill-deck@0.9.20 link
121
123
  ```
122
124
 
123
125
  ### Key Concepts
@@ -146,7 +148,7 @@ Different agents look for skills in different directories. `skill-deck.toml` con
146
148
 
147
149
  | Symptom | Cause | Fix |
148
150
  |---------|-------|-----|
149
- | `❌ Skill not found: <name>` | Skill declared in deck but not in cold pool | `bunx @lythos/skill-deck@0.9.19 add github.com/owner/repo/skill` or clone manually into cold pool |
151
+ | `❌ Skill not found: <name>` | Skill declared in deck but not in cold pool | `bunx @lythos/skill-deck@0.9.20 add github.com/owner/repo/skill` or clone manually into cold pool |
150
152
  | `link` skips entries with warnings | Real files/directories exist in working set (not symlinks) | Delete the real directories in `working_set` and re-run `link`. Never create directories manually there |
151
153
  | `refresh` reports "Not a git repository" | Skill was copied (not cloned) into cold pool | Re-clone with `git clone` or use `deck add` which clones by default |
152
154
  | `deck update` prints deprecation warning | `update` was renamed to `refresh` in v0.8+ | Use `deck refresh` instead |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lythos/skill-deck",
3
- "version": "0.9.19",
3
+ "version": "0.9.20",
4
4
  "description": "Declarative skill deck governance — cold pool, working set, deny-by-default",
5
5
  "keywords": [
6
6
  "ai-agent",