skillpm-skill 0.0.6 → 0.0.8

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": "skillpm-skill",
3
- "version": "0.0.6",
3
+ "version": "0.0.8",
4
4
  "description": "Agent Skill for managing skills with skillpm — install, publish, and wire Agent Skills into AI agent directories",
5
5
  "keywords": [
6
6
  "agent-skill",
@@ -88,6 +88,16 @@ npx skillpm sync
88
88
 
89
89
  Re-scans `node_modules/` and re-links all skills into agent directories without reinstalling. Useful after manual changes.
90
90
 
91
+ **Monorepo / npm workspace support:** If your repo uses npm workspaces, npm creates symlinks in `node_modules/` pointing to your first-party skill packages. `skillpm sync` detects these symlinks and copies their `configs/` files into the workspace root — same as for externally installed skills. Contributors run `skillpm sync` after editing a skill's source files, then commit the regenerated configs.
92
+
93
+ ```
94
+ node_modules/
95
+ @org/
96
+ my-skill → ../../skills/my-skill ← symlink (npm workspace)
97
+ ```
98
+
99
+ Workspace packages appear in sync output as: `Linking workspace package @org/my-skill@1.0.0`.
100
+
91
101
  ### Configure MCP servers
92
102
 
93
103
  ```bash