vibe-export-kanban

vibe-export-kanban is a skill for Claude Code from OAI-Labs/vibe-flow. It costs 62 tokens per session (1,559 once invoked), scanned A, original, MIT.

A workflow that reports completed work from a merged pull request back to vibe-kanban, an issue-tracking system. It comments with the pull request link and commit identifier, then marks linked issues as done.

In plain words
What is it for?
Use it after the final pull request is merged to update linked vibe-kanban issues.
Why use it?
It closes the gap between merged code and the project board while avoiding changes to the issues' main details. Re-running it is safe because it detects its marker comment.

Skill for Claude Code

Written for Claude Code: $ARGUMENTS substitution.

Part of the vibe-flow plugin — 14 skills, 2 agents shipped together

Good fit Use it after the final pull request is merged to update linked vibe-kanban issues.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/oai-labs/vibe-flow/vibe-export-kanban
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 OAI-Labs/vibe-flow --skill vibe-export-kanban
Clone the repo
git clone --depth 1 https://github.com/OAI-Labs/vibe-flow

Made for: Claude Code.

Or install vibe-flow, the plugin that ships this one along with the rest of its 14 skills, 2 agents.

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 vibe-export-kanban

README.md
[![agentmods](https://agentmods.dev/badge/skills/oai-labs/vibe-flow/vibe-export-kanban/github.svg)](https://agentmods.dev/skills/oai-labs/vibe-flow/vibe-export-kanban)
Your own site
<a href="https://agentmods.dev/skills/oai-labs/vibe-flow/vibe-export-kanban"><img src="https://agentmods.dev/badge/skills/oai-labs/vibe-flow/vibe-export-kanban/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 vibe-export-kanban

Your own site · 80×15
<a href="https://agentmods.dev/skills/oai-labs/vibe-flow/vibe-export-kanban"><img src="https://agentmods.dev/badge/skills/oai-labs/vibe-flow/vibe-export-kanban.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 62 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,559 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 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.00062 $0.01559
Opus 5 $0.00031 $0.00779
Sonnet 5 $0.00012 $0.00312
Haiku 4.5 $0.00006 $0.00156

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

Security

Grade A, and why

vibe-export-kanban scanned grade A with 0 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 11d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/vibe-flow/skills/vibe-export-kanban/SKILL.md · 160 lines

How it starts

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

vibe-export-kanban

Overview

One-way sync from a completed local run back to vibe-kanban. For each issue in plan-local.json that has a kanban_id, post a "merged" comment with the final PR url and the commit SHA, then transition the issue to done. Idempotent — re-running is safe.

Core principle: Comment + transition only. Never touch title, description, tags, or relationships. Teammates own the canonical metadata; we just close the loop.

Announce at start: "I'm using the vibe-export-kanban skill to sync results back."

When to use

  • vibe-ship-fast finished, the final PR is merged to main (verified via gh pr view --json state)
  • .vibe-flow/plan-local.json exists and at least one issue has a non-null kanban_id

Do NOT use if:

  • Final PR is still open or closed-without-merge → wait or abandon
  • Plan was created by vibe-plan --local (no kanban links) → nothing to export, exit early with a message
  • A previous export already ran for this commit (detected via marker comment) → no-op confirmation

The process

Step 1: Verify preconditions

# Final PR must be merged
PR_URL=$(jq -r '.pr_url' .vibe-flow/state-local.json)
PR_NUM=$(echo "$PR_URL" | grep -oE '[0-9]+$')
STATE=$(gh pr view "$PR_NUM" --json state,mergeCommit --jq '.state')
[ "$STATE" = "MERGED" ] || { echo "PR $PR_NUM not merged (state=$STATE)"; exit 1; }
MERGE_SHA=$(gh pr view "$PR_NUM" --json mergeCommit --jq '.mergeCommit.oid')

If preconditions fail → STOP, report to user.

Step 2: Load plan + state

Read .vibe-flow/plan-local.json and .vibe-flow/state-local.json. Build the export set:

for each issue in plan-local.json.issues:
  if issue.kanban_id is null → skip (local-only)
  if state-local.json.issues[issue.id].status != "merged" → skip (not actually shipped this run)
  else → include in export set

If export set is empty → output "nothing to sync" and exit.

Step 3: Check the idempotency marker

For each issue in the export set, call list_issue_comments(issue_id) (or equivalent MCP read). Look for an existing comment containing:

Read the full file on GitHub · 160 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. 11d ago First seen · 160 lines · 62 tokens per session scan A c7422f30cabe

Subscribe to this mod's changes

vibe-export-kanban is a skill published in the GitHub repository OAI-Labs/vibe-flow (1 stars, last pushed 1mo ago), licensed MIT. It adds 62 tokens to every session and 1,559 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

lead

Use when acting as the factory tech lead: classify work, ask the minimum questions, create tickets, and dispatch without implementing.

Kripu77/software-factory · 27 tokens

to-tickets

Use when breaking a plan into tracer-bullet GitHub issues with blocking edges.

Kripu77/software-factory · 20 tokens

merge-review

Reviews pending fleet worktree merges before they're accepted. Reads the merge-check queue, detects file-level conflicts between branches, proposes a safe merge order, and surfaces reconciliation plans for overlapping changes.

SethGammon/Citadel · 40 tokens

workspace

Multi-repo campaign coordinator. Same lifecycle as fleet -- scope claims, discovery relay, wave-based execution -- but the unit of work is a repo, not a file. Coordinates campaigns across repositories with shared context.

SethGammon/Citadel · 44 tokens

decision-map

Turn a loose idea into a git-tracked, session-resumable map of typed investigation tickets, then drive them to resolution one at a time. The planning-loop engine for work that is still being figured out — too fuzzy for a campaign, too big for a single intake item. Resolved tickets graduate into .planning/intake/ for…

SethGammon/Citadel · 77 tokens

unharness

Safely leave Citadel using the active adoption receipt. Produces a no-write, reviewable plan, preserves a portable archive, removes only exact owned material, and reports modified or externally registered surfaces as retained or unknown. Legacy installs must be imported before exact leave is claimed.

SethGammon/Citadel · 59 tokens