@sylphai/adal-cli 0.3.0-beta.7 → 0.3.0-beta.9

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 ADDED
@@ -0,0 +1,16 @@
1
+ # Changelog
2
+ All notable changes to AdaL CLI will be documented in this file.
3
+
4
+ ## [0.3.0] - 2025-12-15
5
+ - Reduced token usage by ~20%
6
+ - Full history HTML view (/stats): export and view complete conversation history in HTML format
7
+ - Unified input behavior: consistent copy/paste experience across texts, files, and images
8
+ - Improved session resume (/resume): better state preservation and recovery
9
+ - Faster response time: optimized agent execution
10
+ - Integrated Claude Opus 4.5 into model pool (/model)
11
+ - Other minor bugfixes
12
+
13
+ ## [0.2.3] - 2025-12-04
14
+ - Fixed known streaming bugs
15
+ - Improved user experience
16
+
package/bin/adal-cli.js CHANGED
@@ -14,12 +14,12 @@ const os = require('os');
14
14
  const platform = os.platform();
15
15
  const arch = os.arch();
16
16
 
17
+ // Map Node.js platform/arch to our package naming
17
18
  // Map Node.js platform/arch to our package naming
18
19
  const platformMap = {
19
20
  'darwin-arm64': '@sylphai/adal-cli-darwin-arm64',
20
21
  'darwin-x64': '@sylphai/adal-cli-darwin-x64',
21
22
  'linux-x64': '@sylphai/adal-cli-linux-x64',
22
- 'linux-arm64': '@sylphai/adal-cli-linux-arm64',
23
23
  'win32-x64': '@sylphai/adal-cli-win32-x64',
24
24
  'win32-ia32': '@sylphai/adal-cli-win32-x64', // Use x64 for 32-bit Windows too
25
25
  };
@@ -11,7 +11,6 @@ const platformMap = {
11
11
  'darwin-arm64': '@sylphai/adal-cli-darwin-arm64',
12
12
  'darwin-x64': '@sylphai/adal-cli-darwin-x64',
13
13
  'linux-x64': '@sylphai/adal-cli-linux-x64',
14
- 'linux-arm64': '@sylphai/adal-cli-linux-arm64',
15
14
  'win32-x64': '@sylphai/adal-cli-win32-x64',
16
15
  'win32-ia32': '@sylphai/adal-cli-win32-x64',
17
16
  };
@@ -17,7 +17,6 @@ const platformMap = {
17
17
  'darwin-arm64': '@sylphai/adal-cli-darwin-arm64',
18
18
  'darwin-x64': '@sylphai/adal-cli-darwin-x64',
19
19
  'linux-x64': '@sylphai/adal-cli-linux-x64',
20
- 'linux-arm64': '@sylphai/adal-cli-linux-arm64',
21
20
  'win32-x64': '@sylphai/adal-cli-win32-x64',
22
21
  'win32-ia32': '@sylphai/adal-cli-win32-x64',
23
22
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sylphai/adal-cli",
3
- "version": "0.3.0-beta.7",
3
+ "version": "0.3.0-beta.9",
4
4
  "description": "AI-powered CLI for development and research tasks",
5
5
  "bin": {
6
6
  "adal": "bin/adal-cli.js"
@@ -9,15 +9,15 @@
9
9
  "postinstall": "node lib/setup-cache.js"
10
10
  },
11
11
  "optionalDependencies": {
12
- "@sylphai/adal-cli-darwin-arm64": "0.3.0-beta.7",
13
- "@sylphai/adal-cli-darwin-x64": "0.3.0-beta.7",
14
- "@sylphai/adal-cli-linux-x64": "0.3.0-beta.7",
15
- "@sylphai/adal-cli-linux-arm64": "0.3.0-beta.7",
16
- "@sylphai/adal-cli-win32-x64": "0.3.0-beta.7"
12
+ "@sylphai/adal-cli-darwin-arm64": "0.3.0-beta.9",
13
+ "@sylphai/adal-cli-darwin-x64": "0.3.0-beta.9",
14
+ "@sylphai/adal-cli-linux-x64": "0.3.0-beta.9",
15
+ "@sylphai/adal-cli-win32-x64": "0.3.0-beta.9"
17
16
  },
18
17
  "files": [
19
18
  "bin/",
20
- "lib/"
19
+ "lib/",
20
+ "CHANGELOG.md"
21
21
  ],
22
22
  "keywords": ["ai", "cli", "development", "research", "assistant"],
23
23
  "author": "SylphAI",