@trygentic/agentloop 0.2.0-alpha.4 → 0.4.0-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 +1 -1
- package/bin/agentloop +1 -1
- package/package.json +8 -8
package/LICENSE
CHANGED
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.
|
|
3
|
+
"version": "0.4.0-alpha.5",
|
|
4
4
|
"description": "AI-powered autonomous coding agent",
|
|
5
5
|
"bin": {
|
|
6
6
|
"agentloop": "./bin/agentloop"
|
|
@@ -9,13 +9,13 @@
|
|
|
9
9
|
"postinstall": "node ./scripts/postinstall.mjs"
|
|
10
10
|
},
|
|
11
11
|
"optionalDependencies": {
|
|
12
|
-
"@trygentic/agentloop-darwin-arm64": "0.
|
|
13
|
-
"@trygentic/agentloop-darwin-x64": "0.
|
|
14
|
-
"@trygentic/agentloop-linux-arm64": "0.
|
|
15
|
-
"@trygentic/agentloop-linux-x64": "0.
|
|
16
|
-
"@trygentic/agentloop-linux-x64-musl": "0.
|
|
17
|
-
"@trygentic/agentloop-linux-arm64-musl": "0.
|
|
18
|
-
"@trygentic/agentloop-windows-x64": "0.
|
|
12
|
+
"@trygentic/agentloop-darwin-arm64": "0.4.0-alpha.5",
|
|
13
|
+
"@trygentic/agentloop-darwin-x64": "0.4.0-alpha.5",
|
|
14
|
+
"@trygentic/agentloop-linux-arm64": "0.4.0-alpha.5",
|
|
15
|
+
"@trygentic/agentloop-linux-x64": "0.4.0-alpha.5",
|
|
16
|
+
"@trygentic/agentloop-linux-x64-musl": "0.4.0-alpha.5",
|
|
17
|
+
"@trygentic/agentloop-linux-arm64-musl": "0.4.0-alpha.5",
|
|
18
|
+
"@trygentic/agentloop-windows-x64": "0.4.0-alpha.5"
|
|
19
19
|
},
|
|
20
20
|
"engines": {
|
|
21
21
|
"node": ">=18.0.0"
|