@sylphai/adal-cli 1.2.2-beta.8 → 1.2.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 +11 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
All notable changes to AdaL CLI will be documented in this file.
|
|
3
3
|
|
|
4
|
+
## [1.2.2] - 2026-05-28
|
|
5
|
+
|
|
6
|
+
- New `/agent` command — switch between Coding, Deep Research, and Browser Use modes from a single dialog
|
|
7
|
+
- Shift+Tab now cycles through all permission modes: Strict → Accept Edits → YOLO
|
|
8
|
+
- Tab key now toggles Plan mode only when in Coding mode
|
|
9
|
+
- More reliable agent responses — eliminated a class of premature turn stops
|
|
10
|
+
- Cleaner command cancellation — child processes no longer linger after Ctrl+C
|
|
11
|
+
- Desktop: Full image support — paste, drag-and-drop, or send image-only queries
|
|
12
|
+
- More reliable `/resume` — sessions restore cleanly without stale state errors
|
|
13
|
+
- Removed deprecated Gemini 3 Pro from the model list
|
|
14
|
+
|
|
4
15
|
## [1.2.1] - 2026-05-23
|
|
5
16
|
|
|
6
17
|
- Gemini 3.5 Flash model now available via `/model`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sylphai/adal-cli",
|
|
3
|
-
"version": "1.2.2
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"description": "AI-powered CLI for development and research tasks",
|
|
5
5
|
"bin": {
|
|
6
6
|
"adal": "bin/adal-cli.js"
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
"postinstall": "node lib/setup-cache.js"
|
|
10
10
|
},
|
|
11
11
|
"optionalDependencies": {
|
|
12
|
-
"@sylphai/adal-cli-darwin-arm64": "1.2.2
|
|
13
|
-
"@sylphai/adal-cli-darwin-x64": "1.2.2
|
|
14
|
-
"@sylphai/adal-cli-linux-x64": "1.2.2
|
|
15
|
-
"@sylphai/adal-cli-linux-x64-musl": "1.2.2
|
|
16
|
-
"@sylphai/adal-cli-linux-arm64": "1.2.2
|
|
17
|
-
"@sylphai/adal-cli-win32-x64": "1.2.2
|
|
12
|
+
"@sylphai/adal-cli-darwin-arm64": "1.2.2",
|
|
13
|
+
"@sylphai/adal-cli-darwin-x64": "1.2.2",
|
|
14
|
+
"@sylphai/adal-cli-linux-x64": "1.2.2",
|
|
15
|
+
"@sylphai/adal-cli-linux-x64-musl": "1.2.2",
|
|
16
|
+
"@sylphai/adal-cli-linux-arm64": "1.2.2",
|
|
17
|
+
"@sylphai/adal-cli-win32-x64": "1.2.2"
|
|
18
18
|
},
|
|
19
19
|
"files": [
|
|
20
20
|
"bin/",
|