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.
npx skills add kkauf/claude-notion --skill konbangit clone --depth 1 https://github.com/kkauf/claude-notionWrote 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.
[](https://agentmods.dev/skills/kkauf/claude-notion/konban)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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): 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..."
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.
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.
- 10d ago First seen · 186 lines · 59 tokens per session scan A c73bd3a18e10
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.
Other skills, from other repositories
recipe-create-meet-space
Create a Google Meet meeting space and share the join link.
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…
atmos-config
Atmos root configuration: atmos.yaml discovery, precedence, deep merging, basepath, imports, minimal bootstrap, and routing to narrower Atmos skills.
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…
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.
projects
List all managed projects with status, branch, open PRs, and open issue counts — portfolio-level view.