@trygentic/agentloop 0.2.0-alpha.4 → 0.4.1-alpha.5

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  **Commercial License Agreement**
2
2
  Software: AgentLoop
3
- Copyright © Troy Edwards Jr, All Rights Reserved
3
+ Copyright © Trygentic, Inc., All Rights Reserved
4
4
 
5
5
  This Software is licensed, not sold.
6
6
 
package/bin/agentloop CHANGED
@@ -35,7 +35,7 @@ function findBinary() {
35
35
  const arch = os.arch() === "arm64" ? "arm64" : "x64";
36
36
  const suffix = isMusl() ? "-musl" : "";
37
37
  const packageName = `@trygentic/agentloop-${platform}-${arch}${suffix}`;
38
- const executableName = platform === "windows" ? "agentloop.exe" : "agentloop";
38
+ const executableName = platform === "windows" ? "agentloop-cli.exe" : "agentloop-cli";
39
39
 
40
40
  // Check for symlinked binary in same directory (created by postinstall)
41
41
  const localBinary = path.join(__dirname, executableName);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trygentic/agentloop",
3
- "version": "0.2.0-alpha.4",
3
+ "version": "0.4.1-alpha.5",
4
4
  "description": "AI-powered autonomous coding agent",
5
5
  "bin": {
6
6
  "agentloop": "./bin/agentloop"
@@ -9,13 +9,9 @@
9
9
  "postinstall": "node ./scripts/postinstall.mjs"
10
10
  },
11
11
  "optionalDependencies": {
12
- "@trygentic/agentloop-darwin-arm64": "0.2.0-alpha.4",
13
- "@trygentic/agentloop-darwin-x64": "0.2.0-alpha.4",
14
- "@trygentic/agentloop-linux-arm64": "0.2.0-alpha.4",
15
- "@trygentic/agentloop-linux-x64": "0.2.0-alpha.4",
16
- "@trygentic/agentloop-linux-x64-musl": "0.2.0-alpha.4",
17
- "@trygentic/agentloop-linux-arm64-musl": "0.2.0-alpha.4",
18
- "@trygentic/agentloop-windows-x64": "0.2.0-alpha.4"
12
+ "@trygentic/agentloop-darwin-arm64": "0.4.1-alpha.5",
13
+ "@trygentic/agentloop-linux-x64": "0.4.1-alpha.5",
14
+ "@trygentic/agentloop-windows-x64": "0.4.1-alpha.5"
19
15
  },
20
16
  "engines": {
21
17
  "node": ">=18.0.0"