setup

setup is a command for Claude Code from keskinonur/claude-plugin-fizzy. It costs 6 tokens per session (267 once invoked), scanned B, original, Apache-2.0.

A setup command for connecting the coding agent to Fizzy.do, a task-tracking service, using an account token.

In plain words
What is it for?
Use it to save a Fizzy.do token, verify the account connection, and prepare the plugin for selecting a sync board.
Why use it?
It stores the connection details securely and checks whether the token works, making the integration ready for board configuration and syncing.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths.

Part of the fizzy plugin — 1 skill, 4 commands, 1 agent, 1 hook shipped together

Good fit Use it to save a Fizzy.do token, verify the account connection, and…

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/keskinonur/claude-plugin-fizzy/setup
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/keskinonur/claude-plugin-fizzy

Made for: Claude Code.

Or install fizzy, the plugin that ships this one along with the rest of its 1 skill, 4 commands, 1 agent, 1 hook.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for setup

README.md
[![agentmods](https://agentmods.dev/badge/commands/keskinonur/claude-plugin-fizzy/setup.svg)](https://agentmods.dev/commands/keskinonur/claude-plugin-fizzy/setup)
Your own site
<a href="https://agentmods.dev/commands/keskinonur/claude-plugin-fizzy/setup"><img src="https://agentmods.dev/badge/commands/keskinonur/claude-plugin-fizzy/setup.svg" alt="Measured on agentmods" height="20"></a>
Per session 6 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 267 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00006 $0.00267
Opus 5 $0.00003 $0.00133
Sonnet 5 $0.00001 $0.00053
Haiku 4.5 $0.00001 $0.00027

Measured 6d ago against content hash df064e8426fb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade B, and why

setup scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

chmod 600 ~/.claude/plugins/fizzy/config.json

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s -H "Authorization: Bearer TOKEN_HERE" -H "Accept: application/json" https://app.fizzy.do/my/identity | jq -r 'if .accounts[0].name then "✓ Connected: " + .accounts[0].name else "✗ Invalid token" end'
plugins/fizzy/commands/setup.md · 35 lines

What it actually says

Fizzy Setup

Connect the plugin to your Fizzy.do account.

Usage

/fizzy:setup <token> where token is from https://app.fizzy.do/settings

Steps

  1. Save the token securely:
mkdir -p ~/.claude/plugins/fizzy
echo '{"token": "TOKEN_HERE", "url": "https://app.fizzy.do"}' > ~/.claude/plugins/fizzy/config.json
chmod 600 ~/.claude/plugins/fizzy/config.json
  1. Verify the connection:
curl -s -H "Authorization: Bearer TOKEN_HERE" -H "Accept: application/json" https://app.fizzy.do/my/identity | jq -r 'if .accounts[0].name then "✓ Connected: " + .accounts[0].name else "✗ Invalid token" end'
  1. On success, tell the user:

    • Setup complete! Run /fizzy:configure "Board Name" to set your sync target.
  2. On failure, ask user to verify their token at https://app.fizzy.do/settings

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 35 lines · 6 tokens per session scan B df064e8426fb

Subscribe to this mod's changes

setup is a command published in the GitHub repository keskinonur/claude-plugin-fizzy (3 stars, last pushed 7mo ago), licensed Apache-2.0. It adds 6 tokens to every session and 267 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it B with 2 findings (asks for root, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.