@wipcomputer/wip-ldm-os 0.4.46 → 0.4.47
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/SKILL.md +16 -5
- package/package.json +1 -1
package/SKILL.md
CHANGED
|
@@ -5,7 +5,7 @@ license: MIT
|
|
|
5
5
|
interface: [cli, skill]
|
|
6
6
|
metadata:
|
|
7
7
|
display-name: "LDM OS"
|
|
8
|
-
version: "0.4.
|
|
8
|
+
version: "0.4.47"
|
|
9
9
|
homepage: "https://github.com/wipcomputer/wip-ldm-os"
|
|
10
10
|
author: "Parker Todd Brooks"
|
|
11
11
|
category: infrastructure
|
|
@@ -159,7 +159,7 @@ Show a table of components with updates:
|
|
|
159
159
|
|
|
160
160
|
**Do NOT skip this step.** Before asking if the user wants to install, you MUST fetch and show release notes for every component with an update.
|
|
161
161
|
|
|
162
|
-
For each component with an update, fetch the release notes
|
|
162
|
+
For each component with an update, fetch the release notes:
|
|
163
163
|
|
|
164
164
|
```bash
|
|
165
165
|
# For each component with an update:
|
|
@@ -168,11 +168,22 @@ gh release list --repo wipcomputer/<repo-name> --limit 5 --json tagName,name --j
|
|
|
168
168
|
gh release view <tag> --repo wipcomputer/<repo-name> --json body --jq .body
|
|
169
169
|
```
|
|
170
170
|
|
|
171
|
-
|
|
171
|
+
**Write release notes like Apple, not like a git log.** The raw release notes are developer-facing. Translate them into plain language the user understands. Every bullet should answer "what changed for ME?" not "what did the developers do internally."
|
|
172
|
+
|
|
173
|
+
Good: "Your AIs now explain what LDM OS actually does when you ask them to install it"
|
|
174
|
+
Bad: "Restored rich product content to SKILL.md"
|
|
175
|
+
|
|
176
|
+
Good: "Fixed: install skill wasn't publishing to the website after the March update"
|
|
177
|
+
Bad: "Fix .publish-skill.json iCloud path bug"
|
|
178
|
+
|
|
179
|
+
Good: "Grok MCP server now starts correctly after install"
|
|
180
|
+
Bad: "Added missing @modelcontextprotocol/sdk dependency"
|
|
181
|
+
|
|
182
|
+
Show 2-3 bullet points per component in this user-facing style. No dev jargon. No commit messages. No architecture decisions. Just what changed for the person reading this.
|
|
172
183
|
|
|
173
184
|
Then answer:
|
|
174
|
-
1. **What changed for this AI?** New
|
|
175
|
-
2. **What changed across all my AIs?** Shared
|
|
185
|
+
1. **What changed for this AI?** New capabilities, new tools, bug fixes that affect this AI.
|
|
186
|
+
2. **What changed across all my AIs?** Shared memory improvements, new skills, things that work everywhere now.
|
|
176
187
|
|
|
177
188
|
### Ask
|
|
178
189
|
|