fizzylisted
Install: claude install-skill cskwork/fizzy-skill
# fizzy
Operate `tobiasbischoff/fizzy-cli` against a **self-hosted Fizzy instance**. Single skill covers:
1. **Onboarding** — install, base-URL, auth (PAT or magic-link), default account
2. **Daily ops** — board/card/comment CRUD with the markdown gotchas baked in
3. **Jira → Fizzy migration** — pull a Jira issue's description, attachments, and 14-comment thread into a card (+ sub-cards) without losing formatting
## Quick decision
```
Need to set up fizzy-cli from scratch? → §1 Onboarding
Need to create/update cards or comments? → §2 Daily ops
Need to import a Jira issue into Fizzy? → §3 Jira → Fizzy migration
Markdown looks broken after posting to Fizzy? → §4 Markdown quirks
```
## Inputs (env)
- `FIZZY_HOST` — base URL (e.g. `https://fizzy.example.com`)
- `FIZZY_EMAIL` — account email
- `FIZZY_TOKEN` (preferred) OR magic-link from inbox
For Jira import: `acli` must be authenticated to the source site (`acli auth status` → ✓).
---
## §1 Onboarding
### 1.1 Install
Homebrew (documented):
```bash
brew install tobiasbischoff/tap/fizzy-cli
```
If brew is blocked, build from source:
```bash
git clone https://github.com/tobiasbischoff/fizzy-cli.git ~/.local/src/fizzy-cli
cd ~/.local/src/fizzy-cli && go build -o ~/.local/bin/fizzy-cli ./cmd/fizzy-cli
```
> **Pitfall — `go install` does NOT work.** `go.mod` declares `module fizzy-cli` (short form), so `go install github.com/...` fails. Always clone + `go build -o`.
### 1.2 Point at the host
```bash