@lythos/skill-deck 0.9.14 → 0.9.15
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/README.md +11 -11
- 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 <command> [options]
|
|
12
|
+
bunx @lythos/skill-deck@0.9.15 <command> [options]
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
No installation required. `bunx` auto-downloads the package.
|
|
@@ -53,14 +53,14 @@ expires = "2026-05-01" # ISO date; warns at ≤14 days
|
|
|
53
53
|
|
|
54
54
|
| Situation | Command |
|
|
55
55
|
|-----------|---------|
|
|
56
|
-
| Sync working set with `skill-deck.toml` | `bunx @lythos/skill-deck link` |
|
|
57
|
-
| Validate `skill-deck.toml` before committing | `bunx @lythos/skill-deck validate` |
|
|
58
|
-
| Download a skill to cold pool and add to deck | `bunx @lythos/skill-deck add owner/repo` |
|
|
59
|
-
| Pull latest versions of declared skills | `bunx @lythos/skill-deck refresh` |
|
|
60
|
-
| Refresh a single skill by alias | `bunx @lythos/skill-deck refresh tdd` |
|
|
61
|
-
| Remove a skill from deck and working set | `bunx @lythos/skill-deck remove tdd` |
|
|
62
|
-
| GC unreferenced repos from cold pool | `bunx @lythos/skill-deck prune` |
|
|
63
|
-
| Use a custom deck file or working dir | `bunx @lythos/skill-deck link --deck ./my-deck.toml --workdir /path/to/project` |
|
|
56
|
+
| Sync working set with `skill-deck.toml` | `bunx @lythos/skill-deck@0.9.15 link` |
|
|
57
|
+
| Validate `skill-deck.toml` before committing | `bunx @lythos/skill-deck@0.9.15 validate` |
|
|
58
|
+
| Download a skill to cold pool and add to deck | `bunx @lythos/skill-deck@0.9.15 add owner/repo` |
|
|
59
|
+
| Pull latest versions of declared skills | `bunx @lythos/skill-deck@0.9.15 refresh` |
|
|
60
|
+
| Refresh a single skill by alias | `bunx @lythos/skill-deck@0.9.15 refresh tdd` |
|
|
61
|
+
| Remove a skill from deck and working set | `bunx @lythos/skill-deck@0.9.15 remove tdd` |
|
|
62
|
+
| GC unreferenced repos from cold pool | `bunx @lythos/skill-deck@0.9.15 prune` |
|
|
63
|
+
| Use a custom deck file or working dir | `bunx @lythos/skill-deck@0.9.15 link --deck ./my-deck.toml --workdir /path/to/project` |
|
|
64
64
|
|
|
65
65
|
### Commands
|
|
66
66
|
|
|
@@ -117,7 +117,7 @@ path = "github.com/lythos-labs/lythoskill/skills/lythoskill-deck"
|
|
|
117
117
|
EOF
|
|
118
118
|
|
|
119
119
|
# 2. Link — creates symlinks in .claude/skills/
|
|
120
|
-
bunx @lythos/skill-deck link
|
|
120
|
+
bunx @lythos/skill-deck@0.9.15 link
|
|
121
121
|
```
|
|
122
122
|
|
|
123
123
|
### Key Concepts
|
|
@@ -146,7 +146,7 @@ Different agents look for skills in different directories. `skill-deck.toml` con
|
|
|
146
146
|
|
|
147
147
|
| Symptom | Cause | Fix |
|
|
148
148
|
|---------|-------|-----|
|
|
149
|
-
| `❌ Skill not found: <name>` | Skill declared in deck but not in cold pool | `bunx @lythos/skill-deck add github.com/owner/repo/skill` or clone manually into cold pool |
|
|
149
|
+
| `❌ Skill not found: <name>` | Skill declared in deck but not in cold pool | `bunx @lythos/skill-deck@0.9.15 add github.com/owner/repo/skill` or clone manually into cold pool |
|
|
150
150
|
| `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
151
|
| `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
152
|
| `deck update` prints deprecation warning | `update` was renamed to `refresh` in v0.8+ | Use `deck refresh` instead |
|