swarmery-board-card

swarmery-board-card is a skill for Claude Code from atretyak1985/swarmery. It costs 130 tokens per session (3,756 once invoked), scanned A, original, Apache-2.0.

A workflow skill that creates a board card mirroring a Jira task run and moves it through triage, in progress, review, and completion.

In plain words
What is it for?
It helps automation create, update, reuse, and safely place board cards for Jira work.
Why use it?
It keeps the human-facing board aligned with the actual run without accidentally starting a second run of the same task.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the jira-pack plugin — 7 skills, 1 command, 1 agent shipped together

Good fit It helps automation create, update, reuse, and safely place board cards for Jira work.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/atretyak1985/swarmery/swarmery-board-card
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.

Any agent
npx skills add atretyak1985/swarmery --skill swarmery-board-card
Clone the repo
git clone --depth 1 https://github.com/atretyak1985/swarmery

Made for: Claude Code.

Or install jira-pack, the plugin that ships this one along with the rest of its 7 skills, 1 command, 1 agent.

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 swarmery-board-card

README.md
[![agentmods](https://agentmods.dev/badge/skills/atretyak1985/swarmery/swarmery-board-card/github.svg)](https://agentmods.dev/skills/atretyak1985/swarmery/swarmery-board-card)
Your own site
<a href="https://agentmods.dev/skills/atretyak1985/swarmery/swarmery-board-card"><img src="https://agentmods.dev/badge/skills/atretyak1985/swarmery/swarmery-board-card/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for swarmery-board-card

Your own site · 80×15
<a href="https://agentmods.dev/skills/atretyak1985/swarmery/swarmery-board-card"><img src="https://agentmods.dev/badge/skills/atretyak1985/swarmery/swarmery-board-card.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 130 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,756 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00130 $0.03756
Opus 5 $0.00065 $0.01878
Sonnet 5 $0.00026 $0.00751
Haiku 4.5 $0.00013 $0.00376

Measured 9d ago against content hash 130b3901fe61, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

swarmery-board-card scanned grade A with 1 finding 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 9d 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.

Makes network callslowCapability

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

wrapped in `requireLocalOrigin` — a same-host call that sends no `Origin` header, e.g. `curl` or an
plugins/jira-pack/skills/swarmery-board-card/SKILL.md · 252 lines

How it starts

The opening of the file, as written. The whole thing — 252 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Purpose

jira-task-runner mirrors its own progress on the swarmery /board so a human watching the board sees the same lifecycle the run is going through, without that card ever being able to trigger a second, competing run of the same job. This skill is the only place that talks to /api/board/tasks; every other jira-pack skill treats the card as a side effect of this one.

The load-bearing rule: this skill never sets boardColumn: "todo"

tools/swarmery/internal/dispatch/service.go:343 selects dispatch candidates with exactly:

WHERE t.source='queue' AND t.board_column='todo'

POST /api/board/tasks always writes source='queue' (tools/swarmery/internal/api/tasks_board.go:603, the INSERT INTO tasks call inside createBoardTask), and the handler carries its own comment right after the insert: "A task created directly into todo is immediately dispatchable — trigger the event fast path" (tasks_board.go:617). A card that lands in todo is therefore picked up by the dispatcher on its very next poke, which spawns a second jira-task-runner agent in its own worktree doing the exact same job the current run is already doing. This is a correctness bug — two agents racing to comment on and transition the same ticket — not a style preference.

Consequence: no step below may ever request boardColumn: "todo". The card is minted directly in triage and moved to in_progress on the very next call, skipping todo entirely. The lifecycle is exactly:

triage --(PATCH boardColumn=in_progress, immediately after creation)--> in_progress --(final PATCH)--> in_review | done

1. Resolve projectId

GET http://127.0.0.1:7777/api/projects returns the project registry as a list of projectDTO (tools/swarmery/internal/api/handlers.go:48-74: id, path, slug, …). Match the run's resolved working repo (the root jira-config's working-repo resolution already validated — see Related) against each row's path first (exact match), falling back to slug. No match at all → this skill cannot create a card; follow "5. Fallback: daemon unavailable" below with reason "no project registered for <path>" — a card is observability, not a correctness gate, so a missing project registration must not block the run.

Read the full file on GitHub · 252 lines

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. 9d ago First seen · 252 lines · 130 tokens per session scan A 130b3901fe61

Subscribe to this mod's changes

swarmery-board-card is a skill published in the GitHub repository atretyak1985/swarmery (6 stars, last pushed 2d ago), licensed Apache-2.0. It adds 130 tokens to every session and 3,756 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.