@fusioncode/cli-win32-arm64 0.1.0

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.
Files changed (2) hide show
  1. package/README.md +75 -0
  2. package/package.json +19 -0
package/README.md ADDED
@@ -0,0 +1,75 @@
1
+ # Fusion
2
+
3
+ **Fusion** is a terminal-first AI coding agent — **made by Fusion AI**.
4
+
5
+ | Desktop | Mobile (Termux) |
6
+ |:---:|:---:|
7
+ | ![Fusion TUI](docs/screenshot.png) | ![Fusion on Termux](docs/screenshot_mobile.png) |
8
+
9
+
10
+ ## Install
11
+
12
+ Install `fusion` globally across all platforms:
13
+
14
+ ### npm (Recommended — macOS, Windows, Linux)
15
+ ```bash
16
+ npm i -g @fusioncode/cli
17
+ ```
18
+
19
+ ### Windows (Scoop / PowerShell)
20
+ ```powershell
21
+ scoop bucket add fusion https://github.com/theaungmyatmoe/fusion
22
+ scoop install fusion
23
+ ```
24
+
25
+ ### macOS & Linux (Homebrew)
26
+ ```bash
27
+ brew tap theaungmyatmoe/fusion https://github.com/theaungmyatmoe/fusion
28
+ brew install fusion
29
+ ```
30
+
31
+ ### Standalone Script (macOS, Linux, Termux)
32
+ ```bash
33
+ curl -fsSL https://fusioncode.app/install | bash
34
+ ```
35
+
36
+ ### JSR / Deno
37
+ ```bash
38
+ deno install -g -n fusion jsr:@fusioncode/cli
39
+ ```
40
+
41
+
42
+ ## Usage
43
+
44
+ ```bash
45
+ fusion login # sign in via browser OAuth
46
+ fusion # interactive TUI
47
+ fusion -p "fix the bug" # single-turn prompt
48
+ fusion --always-approve # auto-approve tool execution
49
+ ```
50
+
51
+ ### Sign In Flow
52
+
53
+ ```bash
54
+ $ fusion login
55
+
56
+ Initializing Fusion login session…
57
+
58
+ Opening browser to sign in to Fusion…
59
+ If browser does not open automatically, visit:
60
+ https://fusioncode.app/cli-auth?token=...
61
+
62
+ Waiting for authorization…
63
+
64
+ ✓ Logged in as user@example.com
65
+ API key saved to: ~/.fusion/fusion.toml
66
+
67
+ You can now run `fusion` to start the AI agent.
68
+ ```
69
+
70
+ > For configuration, build instructions, architecture details, and the full CLI reference see **[docs/DETAILS.md](docs/DETAILS.md)**.
71
+
72
+
73
+ ## License
74
+
75
+ MIT OR Apache-2.0
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "@fusioncode/cli-win32-arm64",
3
+ "version": "0.1.0",
4
+ "description": "win32-arm64 binary for @fusioncode/cli. Do not install directly; install @fusioncode/cli instead.",
5
+ "license": "Apache-2.0",
6
+ "files": [
7
+ "bin/",
8
+ "THIRD_PARTY_NOTICES.md"
9
+ ],
10
+ "os": [
11
+ "win32"
12
+ ],
13
+ "cpu": [
14
+ "arm64"
15
+ ],
16
+ "publishConfig": {
17
+ "access": "public"
18
+ }
19
+ }