Quick start
Connect
export FIZZY_HOST="https://fizzy.example.com"
export FIZZY_TOKEN="..." # PAT from Fizzy account settings
fizzy-cli config set --base-url "$FIZZY_HOST"
fizzy-cli auth login --token "$FIZZY_TOKEN"
fizzy-cli account set <SLUG> # required even with one account
fizzy-cli board list
Daily ops
fizzy-cli card create --board-id <ID> \
--title "fizzy setup test" --description "ok" --status published
fizzy-cli --json comment list <N> \
| jq -r '.[] | select(.creator.name != null) | .id'
Migrate a Jira issue
python3 scripts/jira_to_fizzy.py \
--from-json /tmp/PROJ-123.json \
--board <fizzy-board-id> \
--site your-site.atlassian.net \
--split-numbered
Cached JSON is produced by the Atlassian MCP getJiraIssue tool.
Pass --wipe-user-comments <username> on --card <N>
to clean a previous run before re-importing.