zergboard-skill
Read and manage Zergboard cards, boards, and workspaces. Use when the user asks to check Zergboard, view cards, find tasks, check sprint/cycle status, manage work items, invite guests, or interact with their Zergboard boards from the CLI.
What this skill does
# Zergboard Skill — Card & Board Management Read, search, and manage Zergboard cards via the REST API. Lists workspaces (organizations), boards, cards, comments; supports create / update / move / reorder; works with workspace members and per-board guests. ## First-Time Setup (~2 minutes) ### 1. Create an API token In the Zergboard UI: 1. Sign in at https://zergboard.fly.dev (or your local instance) 2. Open the CLI README's instructions — or use the Zergboard CLI directly: ```bash cd zerg-stack/zergboard/cli/zb go build -o zb && ./zb login --email [email protected] --password '...' ./zb token create --name claude --org-id <org-id> --scopes org:read,org:write,org:admin ``` 3. Copy the printed token (starts with `zb_`). ### 2. Save token ```bash mkdir -p ~/.claude/skills/zergboard-skill cat > ~/.claude/skills/zergboard-skill/config.json <<EOF { "base_url": "https://zergboard.fly.dev", "api_token": "zb_..._...", "default_organization_id": "<optional-uuid>" } EOF ``` `base_url` defaults to `https://zergboard.fly.dev` if omitted. `default_organization_id` is optional — when set, commands that take a workspace can use the default. Tokens may also be workspace-bound (created with `--org-id`); when bound, every call must reference that workspace. ## Commands All commands print JSON to stdout for easy piping. ### My cards Cards assigned to me across every board I can see (workspace member or board guest). ```bash python3 ~/.claude/skills/zergboard-skill/zergboard_skill.py my-cards [--status STATUS] [--limit N] ``` `--status`: `todo` · `in_progress` · `done` · `canceled` ### Workspaces ```bash python3 ~/.claude/skills/zergboard-skill/zergboard_skill.py workspaces ``` ### Boards ```bash python3 ~/.claude/skills/zergboard-skill/zergboard_skill.py boards [WORKSPACE] ``` `WORKSPACE` accepts a workspace name, slug, or UUID; defaults to the configured `default_organization_id`. ### Cards on a board ```bash python3 ~/.claude/skills/zergboard-skill/zergboard_skill.py cards BOARD [--status STATUS] [--priority P] [--limit N] ``` `BOARD` accepts a board UUID, name, or card prefix (e.g. `CES`). ### Card details ```bash python3 ~/.claude/skills/zergboard-skill/zergboard_skill.py card CARD_ID ``` `CARD_ID` accepts the card UUID or its external id (e.g. `CES-1`). ### Cycles (sprints) Active cycle: ```bash python3 ~/.claude/skills/zergboard-skill/zergboard_skill.py cycle BOARD ``` All cycles for a board: ```bash python3 ~/.claude/skills/zergboard-skill/zergboard_skill.py cycles BOARD [--limit N] ``` ### Search ```bash python3 ~/.claude/skills/zergboard-skill/zergboard_skill.py search "query" [--workspace WORKSPACE] [--board BOARD] [--limit N] ``` Substring match across title, description, and external id. ### Create a card ```bash python3 ~/.claude/skills/zergboard-skill/zergboard_skill.py create BOARD --title "Title" \ [--description "..."] [--priority urgent|high|medium|low] [--column "Backlog"] [--assignee EMAIL] ``` If `--column` is omitted the card is placed in the first column. ### Update a card ```bash python3 ~/.claude/skills/zergboard-skill/zergboard_skill.py update CARD_ID \ [--title "..."] [--description "..."] [--priority P] [--due 2026-05-01] [--estimate 3] ``` ### Move a card to a different column ```bash python3 ~/.claude/skills/zergboard-skill/zergboard_skill.py move CARD_ID --column "In Progress" [--position 0] ``` ### Reorder cards within a column ```bash python3 ~/.claude/skills/zergboard-skill/zergboard_skill.py reorder CARD1 CARD2 CARD3 ... ``` All cards must currently be in the same column. The first id ends up at the top of the lane. ### Comments ```bash python3 ~/.claude/skills/zergboard-skill/zergboard_skill.py comments CARD_ID python3 ~/.claude/skills/zergboard-skill/zergboard_skill.py comment CARD_ID --body "..." ``` ### Invite a guest to a board ```bash python3 ~/.claude/skills/zergboard-skill/zergboard_skill.py invite-guest BOARD --email [email protected] [--role viewer|editor|admin] ``` If the email belongs to an existing user they're added immediately; otherwise an invite link is emailed. ## Output All commands emit JSON. Card output includes: - `external_id` — the human-readable id (e.g. `CES-1`) - `title`, `description` - `status`, `priority`, `state_kind`, `state_name` - `column_name` - `board_id`, `board_name`, `board_card_prefix` - `organization_id`, `organization_name` ## Status / Priority values Status (board state kind): - `todo` — Not yet started - `in_progress` — Active work - `done` — Completed - `canceled` — Won't do Priority: - `urgent` - `high` - `medium` - `low` ## Requirements Python standard library only. ## Security - Tokens don't expire by default but can be revoked from the Zergboard UI under workspace settings → API tokens. - Stored locally in `~/.claude/skills/zergboard-skill/config.json`. - Workspace-bound tokens cannot reach boards in other workspaces. ## Related - API surface: `zerg-stack/zergboard/README.md` - Zergboard repo: `zerg-stack/zergboard` - CLI source: `zerg-stack/zergboard/cli/zb` (Go + Bubble Tea)
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.