Install
openclaw skills install fizzy-cliUse the fizzy-cli tool to authenticate and manage Fizzy kanban boards, cards, comments, tags, columns, users, and notifications from the command line. Apply this skill when you need to list, create, update, or delete Fizzy resources or when scripting Fizzy workflows.
openclaw skills install fizzy-cliUse this skill to operate the Fizzy kanban board via the fizzy-cli command. It covers authentication, configuration, and common CRUD workflows.
fizzy-cli auth login --token $FIZZY_TOKENfizzy-cli auth login --email user@example.com--code ABC123.fizzy-cli account set 897362094fizzy-cli config set --base-url https://app.fizzy.do --account 897362094fizzy-cli auth statusfizzy-cli account listfizzy-cli board listfizzy-cli board create --name "Roadmap"fizzy-cli board update <board-id> --name "New name"fizzy-cli board delete <board-id>fizzy-cli card list --board-id <board-id>fizzy-cli card create --board-id <board-id> --title "Add dark mode" --description "Switch theme"fizzy-cli card create --board-id <board-id> --title "Add hero" --image ./hero.pngfizzy-cli card update <card-number> --title "Updated" --tag-id <tag-id>fizzy-cli card not-now <card-number>fizzy-cli card close <card-number>fizzy-cli card reopen <card-number>fizzy-cli card triage <card-number> --column-id <column-id>fizzy-cli card untriage <card-number>fizzy-cli comment list <card-number>fizzy-cli comment create <card-number> --body "Looks good"fizzy-cli tag listfizzy-cli column list --board-id <board-id>fizzy-cli user listfizzy-cli notification list --unread--json for raw API JSON.--plain for stable line-based output.~/.config/fizzy/config.json.FIZZY_BASE_URL, FIZZY_TOKEN, FIZZY_ACCOUNT, FIZZY_CONFIG.fizzy-cli auth status and re-login.fizzy-cli account set <slug> or fizzy-cli config set --account <slug>.fizzy-cli --help or fizzy-cli help <command> for full usage.