@wipcomputer/wip-ldm-os 0.4.85-alpha.23 → 0.4.85-alpha.24

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
@@ -22,7 +22,8 @@ Open your AI and paste this:
22
22
  ```
23
23
  Read https://wip.computer/install/wip-ldm-os.txt
24
24
 
25
- Use the install document and live local checks as the source of truth. Do not search memory or prior notes for this install.
25
+ Use the install document and live local checks as the source of truth.
26
+ Do not search memory or prior notes for this install. Do not pre-load context from `MEMORY.md`, `crystal_search`, local skill dev guides, or other local memory before fetching the install document.
26
27
 
27
28
  Check if LDM OS is installed (`which ldm && ldm --version`). Branch.
28
29
 
package/SKILL.md CHANGED
@@ -29,7 +29,7 @@ metadata:
29
29
 
30
30
  ## Source of truth
31
31
 
32
- Memory policy for install flows: your first action is to fetch `https://wip.computer/install/wip-ldm-os.txt`. Do not consult `MEMORY.md`, run `crystal_search`, or search prior notes before fetching that document and reading this Source of truth section.
32
+ Memory policy for install flows: do not consult `MEMORY.md`, do not run `crystal_search`, and do not search prior notes when this skill is invoked, including in any parallel or batched exploration step. The only context sources for this install flow are `https://wip.computer/install/wip-ldm-os.txt` and the live local commands that document prescribes. Read that document and run those commands. Do not pre-load other context.
33
33
 
34
34
  Use this install document and live local checks as the source of truth. Do not search memory or prior notes for this install.
35
35
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-ldm-os",
3
- "version": "0.4.85-alpha.23",
3
+ "version": "0.4.85-alpha.24",
4
4
  "type": "module",
5
5
  "description": "LDM OS: identity, memory, and sovereignty infrastructure for AI agents",
6
6
  "engines": {
@@ -19,7 +19,8 @@ const failures = [];
19
19
  for (const file of ["README.md", "shared/templates/install-prompt.md"]) {
20
20
  const text = contents[file];
21
21
  for (const phrase of [
22
- "Use the install document and live local checks as the source of truth. Do not search memory or prior notes for this install.",
22
+ "Use the install document and live local checks as the source of truth.",
23
+ "Do not search memory or prior notes for this install. Do not pre-load context from `MEMORY.md`, `crystal_search`, local skill dev guides, or other local memory before fetching the install document.",
23
24
  "If installed: run `ldm status`",
24
25
  "If yes to dry run, run `ldm install --dry-run`.",
25
26
  "`npm install -g @wipcomputer/wip-ldm-os@latest && ldm install && ldm doctor`",
@@ -37,8 +38,9 @@ for (const file of ["README.md", "shared/templates/install-prompt.md"]) {
37
38
 
38
39
  const skill = contents["SKILL.md"];
39
40
  for (const phrase of [
40
- "Memory policy for install flows: your first action is to fetch `https://wip.computer/install/wip-ldm-os.txt`.",
41
- "Do not consult `MEMORY.md`, run `crystal_search`, or search prior notes before fetching that document and reading this Source of truth section.",
41
+ "Memory policy for install flows: do not consult `MEMORY.md`, do not run `crystal_search`, and do not search prior notes when this skill is invoked, including in any parallel or batched exploration step.",
42
+ "The only context sources for this install flow are `https://wip.computer/install/wip-ldm-os.txt` and the live local commands that document prescribes.",
43
+ "Read that document and run those commands. Do not pre-load other context.",
42
44
  "Do not run GitHub release commands during the install-state flow.",
43
45
  "Do not run `gh release list` or `gh release view` unless the user explicitly asks for release notes.",
44
46
  "Use the output of `ldm status`, installed package metadata, and npm metadata.",
@@ -53,6 +55,11 @@ if (/gh release (list|view) --repo/.test(skill)) {
53
55
  failures.push("SKILL.md still includes concrete gh release commands in the install flow");
54
56
  }
55
57
 
58
+ const temporalMemoryPolicyPhrase = "your first action is " + "to fetch";
59
+ if (skill.includes(temporalMemoryPolicyPhrase)) {
60
+ failures.push("SKILL.md still uses temporal first-action memory-policy phrasing");
61
+ }
62
+
56
63
  if (failures.length > 0) {
57
64
  console.error("install prompt policy checks failed:");
58
65
  for (const failure of failures) console.error(` - ${failure}`);
@@ -6,7 +6,8 @@ Open your AI and paste this:
6
6
 
7
7
  Read https://wip.computer/install/wip-ldm-os.txt
8
8
 
9
- Use the install document and live local checks as the source of truth. Do not search memory or prior notes for this install.
9
+ Use the install document and live local checks as the source of truth.
10
+ Do not search memory or prior notes for this install. Do not pre-load context from `MEMORY.md`, `crystal_search`, local skill dev guides, or other local memory before fetching the install document.
10
11
 
11
12
  Check if LDM OS is installed (`which ldm && ldm --version`). Branch.
12
13