fuigo 1.0.4 → 1.0.5

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 +8 -12
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -2,20 +2,14 @@
2
2
 
3
3
  Bring Fuigo into your terminal. Fast, flicker-free CLI built for plans, subagents, and parallel work.
4
4
 
5
- **[Homepage](https://x.ai/cli)** | **[Documentation](https://docs.x.ai/build/overview)**
6
-
7
5
  ## Install
8
6
 
9
- ```bash
10
- curl -fsSL https://x.ai/cli/install.sh | bash
11
- ```
12
-
13
- Or install with npm:
14
-
15
7
  ```bash
16
8
  npm i -g fuigo
17
9
  ```
18
10
 
11
+ npm downloads only the binary matching your platform, not all six.
12
+
19
13
  ## Get Started
20
14
 
21
15
  ```bash
@@ -26,7 +20,7 @@ fuigo
26
20
  fuigo -p "Explain this codebase"
27
21
  ```
28
22
 
29
- On first launch, Fuigo opens your browser to authenticate. For CI or headless environments, use an API key from [console.x.ai](https://console.x.ai):
23
+ On first launch, Fuigo helps you set up a provider. For CI or headless environments, set an API key directly:
30
24
 
31
25
  ```bash
32
26
  export FUIGO_API_KEY="fuigo-..."
@@ -48,13 +42,15 @@ npm i -g fuigo@latest
48
42
 
49
43
  | Platform | Architecture |
50
44
  |---|---|
51
- | macOS | Apple Silicon (arm64) |
45
+ | macOS | Apple Silicon (arm64), Intel (x86_64) |
52
46
  | Linux | x86_64, arm64 |
53
- | Windows | x86_64 |
47
+ | Windows | x86_64, arm64 |
54
48
 
55
49
  ## Documentation
56
50
 
57
- For full documentation including configuration, MCP servers, custom models, headless mode, agent mode, and more, visit [docs.x.ai/build/overview](https://docs.x.ai/build/overview).
51
+ Fuigo ships its own documentation. Run `/docs` inside the TUI, or read the
52
+ extracted copy under `~/.fuigo/docs/user-guide/`, covering configuration, MCP
53
+ servers, custom models, headless mode and agent mode.
58
54
 
59
55
  ## Feedback
60
56
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fuigo",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Bring Fuigo into your terminal",
5
5
  "license": "Apache-2.0",
6
6
  "bin": {
@@ -35,11 +35,11 @@
35
35
  "@iarna/toml": "^3.0.0"
36
36
  },
37
37
  "optionalDependencies": {
38
- "@fuigo/darwin-arm64": "1.0.4",
39
- "@fuigo/darwin-x64": "1.0.4",
40
- "@fuigo/linux-arm64": "1.0.4",
41
- "@fuigo/linux-x64": "1.0.4",
42
- "@fuigo/win32-arm64": "1.0.4",
43
- "@fuigo/win32-x64": "1.0.4"
38
+ "@fuigo/darwin-arm64": "1.0.5",
39
+ "@fuigo/darwin-x64": "1.0.5",
40
+ "@fuigo/linux-arm64": "1.0.5",
41
+ "@fuigo/linux-x64": "1.0.5",
42
+ "@fuigo/win32-arm64": "1.0.5",
43
+ "@fuigo/win32-x64": "1.0.5"
44
44
  }
45
45
  }