You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That's it. The installer detects your platform and architecture, downloads the right binary, and verifies checksums. The setup wizard then walks you through configuring your token, selecting your account, and optionally setting a default board. Try `fizzy board list` to verify everything is working.
32
+
That's it. The installer detects your platform and architecture, downloads the right binary, and verifies checksums. The setup wizard then walks you through configuring your token, selecting your account, and optionally setting a default board.
33
+
34
+
Recommended first checks:
35
+
36
+
```bash
37
+
fizzy doctor
38
+
fizzy board list
39
+
```
40
+
41
+
Use `fizzy doctor` any time you want a full health check of your install, config, auth, API connectivity, board context, and agent setup.
33
42
34
43
<details>
35
44
<summary>Other installation methods</summary>
@@ -121,6 +130,8 @@ Breadcrumbs suggest next commands, making it easy for humans and agents to navig
121
130
122
131
**Agent discovery:** Every command supports `--help --agent` for structured help output. Use `fizzy commands --json` for the full command catalog.
123
132
133
+
**Troubleshooting:** Run `fizzy doctor` for a read-only health check with remediation hints and next steps.
134
+
124
135
## Configuration
125
136
126
137
```
@@ -141,6 +152,37 @@ Configuration priority (highest to lowest):
141
152
142
153
`FIZZY_ACCOUNT` is accepted as a deprecated alias for `FIZZY_PROFILE`.
143
154
155
+
Inspect the effective config and precedence:
156
+
157
+
```bash
158
+
fizzy config show
159
+
fizzy config explain
160
+
fizzy config explain --profile acme
161
+
```
162
+
163
+
## Troubleshooting
164
+
165
+
```bash
166
+
fizzy doctor # Full install/config/auth/API/agent health check
167
+
fizzy doctor --profile acme # Check one saved profile explicitly
168
+
fizzy doctor --all-profiles # Sweep every saved profile
169
+
fizzy doctor --verbose # Include effective config details and timings
170
+
fizzy doctor --json # Structured output for scripts and support
0 commit comments