@trygentic/agentloop 0.7.0-alpha.6 → 0.8.1-alpha.7

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.
Files changed (2) hide show
  1. package/README.md +9 -0
  2. package/package.json +3 -4
package/README.md CHANGED
@@ -44,6 +44,15 @@ npm install @trygentic/agentloop
44
44
  npx @trygentic/agentloop
45
45
  ```
46
46
 
47
+ ### Windows Users
48
+
49
+ Native Windows is not currently supported. Please install AgentLoop using [WSL (Windows Subsystem for Linux)](https://learn.microsoft.com/en-us/windows/wsl/install):
50
+
51
+ ```bash
52
+ # In WSL terminal
53
+ npm install -g @trygentic/agentloop
54
+ ```
55
+
47
56
  ### Development Setup
48
57
 
49
58
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trygentic/agentloop",
3
- "version": "0.7.0-alpha.6",
3
+ "version": "0.8.1-alpha.7",
4
4
  "description": "AI-powered autonomous coding agent",
5
5
  "bin": {
6
6
  "agentloop": "./bin/agentloop"
@@ -9,9 +9,8 @@
9
9
  "postinstall": "node ./scripts/postinstall.mjs"
10
10
  },
11
11
  "optionalDependencies": {
12
- "@trygentic/agentloop-darwin-arm64": "0.7.0-alpha.6",
13
- "@trygentic/agentloop-linux-x64": "0.7.0-alpha.6",
14
- "@trygentic/agentloop-windows-x64": "0.7.0-alpha.6"
12
+ "@trygentic/agentloop-darwin-arm64": "0.8.1-alpha.7",
13
+ "@trygentic/agentloop-linux-x64": "0.8.1-alpha.7"
15
14
  },
16
15
  "engines": {
17
16
  "node": ">=18.0.0"