@sylphai/adal-cli 0.9.9 → 0.9.10-beta.2
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/CHANGELOG.md +0 -4
- package/bin/adal-cli.js +2 -0
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
All notable changes to AdaL CLI will be documented in this file.
|
|
3
3
|
|
|
4
|
-
## [0.9.9] - 2026-03-18
|
|
5
|
-
- Added MiniMax M2.7 and M2.7 Highspeed models
|
|
6
|
-
- Added YOLO mode to auto-approve all tools and bash commands (/permissions)
|
|
7
|
-
|
|
8
4
|
## [0.9.8] - 2026-03-17
|
|
9
5
|
- Improved Claude streaming reliability with fewer timeout errors
|
|
10
6
|
- Improved error messages for rate limits for clarity
|
package/bin/adal-cli.js
CHANGED
|
@@ -20,6 +20,7 @@ const platformMap = {
|
|
|
20
20
|
'darwin-arm64': '@sylphai/adal-cli-darwin-arm64',
|
|
21
21
|
'darwin-x64': '@sylphai/adal-cli-darwin-x64',
|
|
22
22
|
'linux-x64': '@sylphai/adal-cli-linux-x64',
|
|
23
|
+
'linux-arm64': '@sylphai/adal-cli-linux-arm64',
|
|
23
24
|
'win32-x64': '@sylphai/adal-cli-win32-x64',
|
|
24
25
|
'win32-ia32': '@sylphai/adal-cli-win32-x64', // Use x64 for 32-bit Windows too
|
|
25
26
|
};
|
|
@@ -34,6 +35,7 @@ if (!packageName) {
|
|
|
34
35
|
console.error(' • macOS (Apple Silicon)');
|
|
35
36
|
console.error(' • macOS (Intel)');
|
|
36
37
|
console.error(' • Linux (x64)');
|
|
38
|
+
console.error(' • Linux (arm64)');
|
|
37
39
|
console.error(' • Windows (x64)');
|
|
38
40
|
console.error('');
|
|
39
41
|
console.error('📖 For more details, see: https://adal-cli-docs.onrender.com/troubleshooting/installation');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sylphai/adal-cli",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.10-beta.2",
|
|
4
4
|
"description": "AI-powered CLI for development and research tasks",
|
|
5
5
|
"bin": {
|
|
6
6
|
"adal": "bin/adal-cli.js"
|
|
@@ -9,10 +9,11 @@
|
|
|
9
9
|
"postinstall": "node lib/setup-cache.js"
|
|
10
10
|
},
|
|
11
11
|
"optionalDependencies": {
|
|
12
|
-
"@sylphai/adal-cli-darwin-arm64": "0.9.
|
|
13
|
-
"@sylphai/adal-cli-darwin-x64": "0.9.
|
|
14
|
-
"@sylphai/adal-cli-linux-x64": "0.9.
|
|
15
|
-
"@sylphai/adal-cli-
|
|
12
|
+
"@sylphai/adal-cli-darwin-arm64": "0.9.10-beta.2",
|
|
13
|
+
"@sylphai/adal-cli-darwin-x64": "0.9.10-beta.2",
|
|
14
|
+
"@sylphai/adal-cli-linux-x64": "0.9.10-beta.2",
|
|
15
|
+
"@sylphai/adal-cli-linux-arm64": "0.9.10-beta.2",
|
|
16
|
+
"@sylphai/adal-cli-win32-x64": "0.9.10-beta.2"
|
|
16
17
|
},
|
|
17
18
|
"files": [
|
|
18
19
|
"bin/",
|