@navi-agent/navi 0.2.3 → 0.3.4
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 +1 -1
- package/bin/install.js +1 -1
- package/bin/navi.js +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -36,7 +36,7 @@ If no prebuilt binary is available for your platform, the postinstall script wil
|
|
|
36
36
|
|
|
37
37
|
```bash
|
|
38
38
|
# Shell installer (primary — no Node required)
|
|
39
|
-
curl -fsSL https://
|
|
39
|
+
curl -fsSL https://github.com/navi-ai-org/navi/raw/refs/heads/main/scripts/install.sh | sh
|
|
40
40
|
|
|
41
41
|
# From source (development)
|
|
42
42
|
cargo install --git https://github.com/navi-ai-org/navi navi-cli
|
package/bin/install.js
CHANGED
|
@@ -103,7 +103,7 @@ async function main() {
|
|
|
103
103
|
console.warn('');
|
|
104
104
|
console.warn('The navi CLI may not be available. You can install it via:');
|
|
105
105
|
console.warn(' cargo install navi-cli');
|
|
106
|
-
console.warn(` curl -fsSL https://
|
|
106
|
+
console.warn(` curl -fsSL https://github.com/navi-ai-org/navi/raw/refs/heads/main/scripts/install.sh | sh`);
|
|
107
107
|
// Don't fail install — the user might install the binary separately
|
|
108
108
|
}
|
|
109
109
|
}
|
package/bin/navi.js
CHANGED
|
@@ -66,7 +66,7 @@ if (!binary) {
|
|
|
66
66
|
'To resolve this:',
|
|
67
67
|
' 1. Try reinstalling: npm install -g @navi-agent/navi',
|
|
68
68
|
' 2. Or install via cargo: cargo install navi-cli',
|
|
69
|
-
' 3. Or use the shell installer: curl -fsSL https://
|
|
69
|
+
' 3. Or use the shell installer: curl -fsSL https://github.com/navi-ai-org/navi/raw/refs/heads/main/scripts/install.sh | sh',
|
|
70
70
|
'',
|
|
71
71
|
`Expected package: @navi-agent/navi-${platformArch}`,
|
|
72
72
|
].join('\n'),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@navi-agent/navi",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"description": "The coding agent engine that lives in your terminal. Install the navi CLI binary.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "NAVI Contributors",
|
|
@@ -45,11 +45,11 @@
|
|
|
45
45
|
"arm64"
|
|
46
46
|
],
|
|
47
47
|
"optionalDependencies": {
|
|
48
|
-
"@navi-agent/navi-linux-x64": "0.
|
|
49
|
-
"@navi-agent/navi-linux-arm64": "0.
|
|
50
|
-
"@navi-agent/navi-darwin-x64": "0.
|
|
51
|
-
"@navi-agent/navi-darwin-arm64": "0.
|
|
52
|
-
"@navi-agent/navi-win32-x64": "0.
|
|
48
|
+
"@navi-agent/navi-linux-x64": "0.3.4",
|
|
49
|
+
"@navi-agent/navi-linux-arm64": "0.3.4",
|
|
50
|
+
"@navi-agent/navi-darwin-x64": "0.3.4",
|
|
51
|
+
"@navi-agent/navi-darwin-arm64": "0.3.4",
|
|
52
|
+
"@navi-agent/navi-win32-x64": "0.3.4"
|
|
53
53
|
},
|
|
54
54
|
"publishConfig": {
|
|
55
55
|
"access": "public",
|