agent-skill-manager 1.8.2 → 1.9.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.
package/README.md CHANGED
@@ -154,6 +154,10 @@ asm install github:user/skills --path skills/code-review
154
154
  asm install github:user/skills --all -p claude -y
155
155
  asm install github:user/skills # interactive picker
156
156
 
157
+ # Subfolder URL (auto-detects branch and path)
158
+ asm install https://github.com/user/skills/tree/main/skills/agent-config
159
+ asm install github:user/skills#main:skills/agent-config
160
+
157
161
  # Private repos (SSH transport)
158
162
  asm install github:user/private-skill --transport ssh
159
163
  asm install github:user/private-skill -t auto # try HTTPS, fallback to SSH
@@ -164,7 +168,7 @@ asm install github:user/my-skill --force
164
168
  asm install github:user/my-skill -p claude --yes --json
165
169
  ```
166
170
 
167
- **Source format:** `github:owner/repo[#branch-or-tag]`
171
+ **Source format:** `github:owner/repo[#branch-or-tag]` or `github:owner/repo#ref:path` for subfolder installs. HTTPS GitHub URLs with `/tree/` paths (e.g., `https://github.com/user/skills/tree/main/skills/agent-config`) are also supported — the branch and subfolder are auto-detected.
168
172
 
169
173
  **Install flags:**
170
174