forbocai 0.3.8 → 0.3.9

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
@@ -99,7 +99,7 @@ AI state (memories, personality, mood) is complex and sensitive. Classes encoura
99
99
  npm install forbocai
100
100
  ```
101
101
 
102
- **Windows:** The SDK requires **CMake** and the **Visual Studio C++ workload** ("Desktop development with C++") to build the native Cortex (`node-llama-cpp`). The install runs a preinstall check; if it fails, you'll see a message for either missing CMake or missing C++ toolset. Install [CMake](https://cmake.org/download/) (add to PATH) and [Visual Studio Build Tools](https://visualstudio.microsoft.com/visual-cpp-build-tools/) with "Desktop development with C++" selected (or add that workload via Visual Studio Installer → Modify). Then run `npm install forbocai` again.
102
+ **Windows:** The SDK requires **CMake** and the **Visual Studio C++ workload** ("Desktop development with C++") to build the native Cortex (`node-llama-cpp`). The install runs a preinstall check; if it fails, you'll see a message for either missing CMake or missing C++ toolset. Install [CMake](https://cmake.org/download/) (add to PATH) and [Visual Studio Build Tools](https://visualstudio.microsoft.com/visual-cpp-build-tools/) with "Desktop development with C++" selected via the Visual Studio Installer (Modify check "Desktop development with C++"). Then run `npm install forbocai` again.
103
103
 
104
104
  ---
105
105
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forbocai",
3
- "version": "0.3.8",
3
+ "version": "0.3.9",
4
4
  "description": "The Infrastructure Layer for Autonomous AI Characters",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -48,8 +48,6 @@ if (!cmakeAvailable()) {
48
48
  ' 2. Install Visual Studio Build Tools: https://visualstudio.microsoft.com/visual-cpp-build-tools/',
49
49
  ' - Select "Desktop development with C++".',
50
50
  ' 3. Close and reopen your terminal, then run: npm install forbocai',
51
- '',
52
- 'Or install via Chocolatey: choco install cmake visualstudio2022buildtools',
53
51
  ''
54
52
  ];
55
53
  console.error(msg.join('\n'));
@@ -68,8 +66,6 @@ if (!vcToolsetAvailable()) {
68
66
  ' 2. Find "Build Tools 2022" (or your VS version) → click "Modify".',
69
67
  ' 3. Check "Desktop development with C++" and install.',
70
68
  ' 4. Close and reopen your terminal, then run: npm install forbocai',
71
- '',
72
- 'Or install the workload via Chocolatey: choco install visualstudio2022-workload-vctools -y',
73
69
  ''
74
70
  ];
75
71
  console.error(msg.join('\n'));