{
  "schemaVersion": "1.0",
  "item": {
    "slug": "fizzy-cli",
    "name": "fizzy.do - have your agent read, understand and update your fizzy.do boards",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/tobiasbischoff/fizzy-cli",
    "canonicalUrl": "https://clawhub.ai/tobiasbischoff/fizzy-cli",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/fizzy-cli",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fizzy-cli",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "fizzy-cli",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T00:56:16.827Z",
      "expiresAt": "2026-05-19T00:56:16.827Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fizzy-cli",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fizzy-cli",
        "contentDisposition": "attachment; filename=\"fizzy-cli-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "fizzy-cli"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/fizzy-cli"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/fizzy-cli",
    "agentPageUrl": "https://openagent3.xyz/skills/fizzy-cli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fizzy-cli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fizzy-cli/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Fizzy CLI Skill",
        "body": "Use this skill to operate the Fizzy kanban board via the fizzy-cli command. It covers authentication, configuration, and common CRUD workflows."
      },
      {
        "title": "Quick Start",
        "body": "Authenticate\n\nToken:\n\nfizzy-cli auth login --token $FIZZY_TOKEN\n\n\nMagic link:\n\nfizzy-cli auth login --email user@example.com\nIf non-interactive, pass --code ABC123.\n\nSet defaults\n\nAccount only: fizzy-cli account set 897362094\nPersist base URL + account: fizzy-cli config set --base-url https://app.fizzy.do --account 897362094\n\nVerify access\n\nfizzy-cli auth status\nfizzy-cli account list"
      },
      {
        "title": "Boards",
        "body": "List: fizzy-cli board list\nCreate: fizzy-cli board create --name \"Roadmap\"\nUpdate: fizzy-cli board update <board-id> --name \"New name\"\nDelete: fizzy-cli board delete <board-id>"
      },
      {
        "title": "Cards",
        "body": "List cards on a board:\n\nfizzy-cli card list --board-id <board-id>\n\n\nCreate card:\n\nfizzy-cli card create --board-id <board-id> --title \"Add dark mode\" --description \"Switch theme\"\n\n\nUpload image:\n\nfizzy-cli card create --board-id <board-id> --title \"Add hero\" --image ./hero.png\n\n\nUpdate card:\n\nfizzy-cli card update <card-number> --title \"Updated\" --tag-id <tag-id>\n\n\nMove to Not Now:\n\nfizzy-cli card not-now <card-number>\n\n\nClose / reopen:\n\nfizzy-cli card close <card-number>\nfizzy-cli card reopen <card-number>\n\n\nTriage / untriage:\n\nfizzy-cli card triage <card-number> --column-id <column-id>\nfizzy-cli card untriage <card-number>"
      },
      {
        "title": "Comments",
        "body": "List comments:\n\nfizzy-cli comment list <card-number>\n\n\nCreate comment:\n\nfizzy-cli comment create <card-number> --body \"Looks good\""
      },
      {
        "title": "Tags, Columns, Users, Notifications",
        "body": "Tags: fizzy-cli tag list\nColumns: fizzy-cli column list --board-id <board-id>\nUsers: fizzy-cli user list\nNotifications: fizzy-cli notification list --unread"
      },
      {
        "title": "Output Modes",
        "body": "Default: human-readable tables.\nMachine output:\n\n--json for raw API JSON.\n--plain for stable line-based output."
      },
      {
        "title": "Config & Auth Notes",
        "body": "Config file: ~/.config/fizzy/config.json.\nEnv vars: FIZZY_BASE_URL, FIZZY_TOKEN, FIZZY_ACCOUNT, FIZZY_CONFIG.\nPrecedence: flags > env > config file > defaults."
      },
      {
        "title": "Troubleshooting",
        "body": "If requests fail with auth errors, run fizzy-cli auth status and re-login.\nIf account is missing, set it via fizzy-cli account set <slug> or fizzy-cli config set --account <slug>.\nUse fizzy-cli --help or fizzy-cli help <command> for full usage."
      }
    ],
    "body": "Fizzy CLI Skill\n\nUse this skill to operate the Fizzy kanban board via the fizzy-cli command. It covers authentication, configuration, and common CRUD workflows.\n\nQuick Start\nAuthenticate\nToken:\nfizzy-cli auth login --token $FIZZY_TOKEN\nMagic link:\nfizzy-cli auth login --email user@example.com\nIf non-interactive, pass --code ABC123.\nSet defaults\nAccount only: fizzy-cli account set 897362094\nPersist base URL + account: fizzy-cli config set --base-url https://app.fizzy.do --account 897362094\nVerify access\nfizzy-cli auth status\nfizzy-cli account list\nCommon Tasks\nBoards\nList: fizzy-cli board list\nCreate: fizzy-cli board create --name \"Roadmap\"\nUpdate: fizzy-cli board update <board-id> --name \"New name\"\nDelete: fizzy-cli board delete <board-id>\nCards\nList cards on a board:\nfizzy-cli card list --board-id <board-id>\nCreate card:\nfizzy-cli card create --board-id <board-id> --title \"Add dark mode\" --description \"Switch theme\"\nUpload image:\nfizzy-cli card create --board-id <board-id> --title \"Add hero\" --image ./hero.png\nUpdate card:\nfizzy-cli card update <card-number> --title \"Updated\" --tag-id <tag-id>\nMove to Not Now:\nfizzy-cli card not-now <card-number>\nClose / reopen:\nfizzy-cli card close <card-number>\nfizzy-cli card reopen <card-number>\nTriage / untriage:\nfizzy-cli card triage <card-number> --column-id <column-id>\nfizzy-cli card untriage <card-number>\nComments\nList comments:\nfizzy-cli comment list <card-number>\nCreate comment:\nfizzy-cli comment create <card-number> --body \"Looks good\"\nTags, Columns, Users, Notifications\nTags: fizzy-cli tag list\nColumns: fizzy-cli column list --board-id <board-id>\nUsers: fizzy-cli user list\nNotifications: fizzy-cli notification list --unread\nOutput Modes\nDefault: human-readable tables.\nMachine output:\n--json for raw API JSON.\n--plain for stable line-based output.\nConfig & Auth Notes\nConfig file: ~/.config/fizzy/config.json.\nEnv vars: FIZZY_BASE_URL, FIZZY_TOKEN, FIZZY_ACCOUNT, FIZZY_CONFIG.\nPrecedence: flags > env > config file > defaults.\nTroubleshooting\nIf requests fail with auth errors, run fizzy-cli auth status and re-login.\nIf account is missing, set it via fizzy-cli account set <slug> or fizzy-cli config set --account <slug>.\nUse fizzy-cli --help or fizzy-cli help <command> for full usage."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/tobiasbischoff/fizzy-cli",
    "publisherUrl": "https://clawhub.ai/tobiasbischoff/fizzy-cli",
    "owner": "tobiasbischoff",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/fizzy-cli",
    "downloadUrl": "https://openagent3.xyz/downloads/fizzy-cli",
    "agentUrl": "https://openagent3.xyz/skills/fizzy-cli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fizzy-cli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fizzy-cli/agent.md"
  }
}