konban

konban is a skill for Claude Code, Codex from kkauf/claude-notion. It costs 59 tokens per session (1,728 once invoked), scanned A, original, MIT.

A personal Kanban board— a task board that shows work as cards moving through statuses—managed in Notion.

In plain words
What is it for?
Use it to view active work, search tasks, create or update cards, record progress, and prepare for daily standups.
Why use it?
It keeps task tracking, priorities, time estimates, due dates, and progress notes in one place for daily planning.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: reads .claude/ paths.

Good fit Use it to view active work, search tasks, create or update cards, record progress, and prepare for daily standups.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kkauf/claude-notion/konban
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 kkauf/claude-notion --skill konban
Clone the repo
git clone --depth 1 https://github.com/kkauf/claude-notion

Made for: Claude Code, Codex.

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 konban

README.md
[![agentmods](https://agentmods.dev/badge/skills/kkauf/claude-notion/konban/github.svg)](https://agentmods.dev/skills/kkauf/claude-notion/konban)
Your own site
<a href="https://agentmods.dev/skills/kkauf/claude-notion/konban"><img src="https://agentmods.dev/badge/skills/kkauf/claude-notion/konban/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 konban

Your own site · 80×15
<a href="https://agentmods.dev/skills/kkauf/claude-notion/konban"><img src="https://agentmods.dev/badge/skills/kkauf/claude-notion/konban.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,728 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.00059 $0.01728
Opus 5 $0.00030 $0.00864
Sonnet 5 $0.00012 $0.00346
Haiku 4.5 $0.00006 $0.00173

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

Security

Grade A, and why

konban 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 10d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (notion-api.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

All operations go through the helper script (avoids shell quoting issues with curl + Bearer tokens):
konban/SKILL.md · 186 lines

How it starts

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

Konban — Personal Kanban via Notion API

Overview

Claude skill for reading and managing a personal Kanban board ("Konban") in Notion. Used during daily standups and ad-hoc task management.

Helper Script

All operations go through the helper script (avoids shell quoting issues with curl + Bearer tokens):

python3 <skill-dir>/konban/notion-api.py <command> [args]

Commands

# Read active board (standup view — excludes Done/Grave)
python3 <script> board

# Read all items including Done/Grave
python3 <script> all

# Search tasks by keyword (active only — excludes Done/Grave)
python3 <script> search "QA tester"

# Create a task (ALWAYS search first — see Deduplication below)
python3 <script> create "Task name" \
  --priority High --timebox "1 h" --due 2026-02-20

# Update a task (any combination of flags)
python3 <script> update PAGE_ID \
# update accepts: page_id (positional), --name, --status, --priority, --timebox, --due
  --status "Doing ⚡️" --priority High

# Log progress on a task (appends timestamped note to page body)
python3 <script> log PAGE_ID "Sent proposal, awaiting response"

# Read task history (all log entries on a page)
python3 <script> history PAGE_ID

# Mark done
python3 <script> done PAGE_ID

# Trash a task
python3 <script> trash PAGE_ID

What create Does NOT Support

create only accepts --priority, --timebox, and --due. There are no --description, --domain, --tag, or --estimate flags. To add context to a new task, create it first then log:

# WRONG: create "Task" --description "Details" --domain KH --tag feature
# RIGHT:
python3 <script> create "Task" --priority High
python3 <script> log PAGE_ID "Details and context here"

When a task has associated content (draft text, a plan, deliverable outline), log it immediately after creation. The task body is the working surface — future sessions should find the content there, not have to reconstruct it:

# Create task, then log the deliverable content into the body
python3 <script> create "Write blog post about X" --priority Medium --due 2026-03-02
python3 <script> log PAGE_ID "DRAFT:\n\nHey everyone, I built a thing..."

Read the full file on GitHub · 186 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 10d ago First seen · 186 lines · 59 tokens per session scan A c73bd3a18e10

Subscribe to this mod's changes

konban is a skill published in the GitHub repository kkauf/claude-notion (2 stars, last pushed 6mo ago), licensed MIT. It adds 59 tokens to every session and 1,728 once invoked, about $0.0003 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-08-31.

Related

Other skills, from other repositories

recipe-create-meet-space

Create a Google Meet meeting space and share the join link.

googleworkspace/cli · 18 tokens

workthreads

SpecStory Workthreads - a weekly work-thread rollup across a team's repos from SpecStory coding histories (any agent - Claude Code, Codex, Cursor, Gemini, and more). It groups the window's sessions into threads of work per project and labels each new / open / recently closed, so a lead sees what shipped, what is still…

specstoryai/getspecstory · 126 tokens

atmos-config

Atmos root configuration: atmos.yaml discovery, precedence, deep merging, basepath, imports, minimal bootstrap, and routing to narrower Atmos skills.

cloudposse/atmos · 31 tokens

story-readiness

Validate that a story file is implementation-ready. Checks for embedded GDD requirements, ADR references, engine notes, clear acceptance criteria, and no open design questions. Produces READY / NEEDS WORK / BLOCKED verdict with specific gaps. Use when user says 'is this story ready', 'can I start on this story', 'is…

Donchitos/Claude-Code-Game-Studios · 77 tokens

autotask-creator

Rules for automation CRUD from the group-chat commander. The commander does not call mutation tools and does not edit cloud/autotasks files directly. It emits one or more top-level ... containers in its final text; the bus parses and applies them after the turn.

Orkas-AI/Orkas · 5 tokens

projects

List all managed projects with status, branch, open PRs, and open issue counts — portfolio-level view.

me2resh/apexyard · 24 tokens