cvm-server 0.16.0-next.0 → 0.16.0-next.1

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": "cvm-server",
3
- "version": "0.16.0-next.0",
3
+ "version": "0.16.0-next.1",
4
4
  "description": "Cognitive Virtual Machine (CVM) - A deterministic bytecode VM with AI cognitive operations",
5
5
  "keywords": [
6
6
  "mcp",
@@ -126,4 +126,4 @@
126
126
  }
127
127
  }
128
128
  }
129
- }
129
+ }
@@ -67,8 +67,9 @@ function main() {
67
67
 
68
68
  CC("GREEN PHASE [" + progress + "] block " + block.id + ": " + block.title + ". " +
69
69
  "Implement the minimum code to make all failing tests pass. " +
70
+ "IMPORTANT: Read the plan file for implementation details and reference code: " + block.planRef + " " +
70
71
  "CONTEXT: " + block.intro + " " +
71
- block.planRef + toolsReminder + submitDone);
72
+ toolsReminder + submitDone);
72
73
 
73
74
  console.log("GREEN done for " + block.id);
74
75