tbd

tbd is a skill for Claude Code, Codex from jlevy/simple-modern-uv. It costs 223 tokens per session (3,808 once invoked), scanned A, original, MIT.

A Git-based toolkit for tracking software tasks, planning changes, injecting engineering guidance, and using reusable workflow templates.

In plain words
What is it for?
Use it to create and manage bugs, features, and tasks; plan work from specifications; retrieve guidance on topics such as TDD, testing, Python, TypeScript, and monorepos; and restore project context.
Why use it?
It keeps tasks and their dependencies with the repository and gives agents repeatable instructions for planning, coding, testing, reviews, and handoffs.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/jlevy/simple-modern-uv/tbd
Any agent
npx skills add jlevy/simple-modern-uv --skill tbd
Clone the repo
git clone --depth 1 https://github.com/jlevy/simple-modern-uv

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 tbd

README.md
[![agentmods](https://agentmods.dev/badge/skills/jlevy/simple-modern-uv/tbd.svg)](https://agentmods.dev/skills/jlevy/simple-modern-uv/tbd)
Your own site
<a href="https://agentmods.dev/skills/jlevy/simple-modern-uv/tbd"><img src="https://agentmods.dev/badge/skills/jlevy/simple-modern-uv/tbd.svg" alt="Measured on agentmods" height="20"></a>
Per session 223 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,808 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00223 $0.03808
Opus 5 $0.00112 $0.01904
Sonnet 5 $0.00045 $0.00762
Haiku 4.5 $0.00022 $0.00381

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

Security

Grade A, and why

tbd 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 5d 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.

.agents/skills/tbd/SKILL.md · 294 lines

How it starts

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

tbd helps humans and agents ship code with greater speed, quality, and discipline.

  1. Beads: Git-native issue tracking (tasks, bugs, features). Never lose work across sessions. Drop-in replacement for bd.
  2. Spec-Driven Workflows: Plan features → break into beads → implement systematically.
  3. Knowledge Injection: 25+ engineering guidelines (TypeScript, Python, TDD, testing, Convex, monorepos) available on demand.
  4. Shortcuts: Reusable instruction templates for common workflows (code review, commits, PRs, cleanup, handoffs).

Installation

npm install -g get-tbd@latest
tbd setup --auto --prefix=<name>   # Fresh project (--prefix is REQUIRED: 2-8 alphabetic chars recommended. ALWAYS ASK THE USER FOR THE PREFIX; do not guess it)
tbd setup --auto                   # Existing tbd project (prefix already set)
tbd setup --from-beads             # Migration from .beads/ if `bd` has been used

Routine Commands

tbd --help    # Command reference
tbd status    # Status
tbd doctor    # If there are problems

tbd setup --auto   # Run any time to refresh setup
tbd prime      # Restore full context on tbd after compaction

CRITICAL: You Operate tbd — The User Doesn’t

You are the tbd operator: Users talk naturally; you translate their requests to tbd actions. DO NOT tell users to run tbd commands. That’s your job.

  • WRONG: “Run tbd create to track this bug”

  • RIGHT: (you run tbd create yourself and tell the user it’s tracked)

Welcoming a user: When users ask “what is tbd?” or want help → run tbd shortcut welcome-user

User Request → Agent Action

User Says You (the Agent) Run
Issues/Beads
“There’s a bug where …” tbd create "..." --type=bug
“Create a task/feature for …” tbd create "..." --type=task or --type=feature
“Let’s work on issues/beads” tbd ready
“Show me issue X” tbd show <id>
“Close this issue” tbd close <id>
“Search issues for X” tbd search "X"
“Add label X to issue” tbd label add <id> <label>
“What issues are stale?” tbd stale
Planning & Specs
“Plan a new feature” / “Create a spec” tbd shortcut new-plan-spec
“Break spec into beads” tbd shortcut plan-implementation-with-beads
“Implement these beads” tbd shortcut implement-beads
Code Review & Commits
“Review this code” / “Code review” tbd shortcut review-code
“Review this PR” tbd shortcut review-github-pr
“Commit this” / “Use the commit shortcut” tbd shortcut code-review-and-commit
“Create a PR” / “File a PR” tbd shortcut create-or-update-pr-simple
“Merge main into my branch” tbd shortcut merge-upstream
Guidelines & Knowledge
(any engineering work) Load the General engineering group first (see below)
“Use TypeScript best practices” tbd guidelines typescript-rules
“Use Python best practices” tbd guidelines python-rules
“Build a TypeScript CLI” tbd guidelines typescript-cli-tool-rules
“Improve monorepo setup” tbd guidelines pnpm-monorepo-patterns or bun-monorepo-patterns
“Add golden/e2e testing” tbd guidelines golden-testing-guidelines
“Use TDD” / “Test-driven development” tbd guidelines general-tdd-guidelines
“Convex best practices” tbd guidelines convex-rules
Documentation
“Research this topic” tbd shortcut new-research-brief
“Document architecture” tbd shortcut new-architecture-doc
Cleanup & Maintenance
“Clean up this code” / “Remove dead code” tbd shortcut code-cleanup-all
“Fix repository problems” tbd doctor --fix
Sessions & Handoffs
“Hand off to another agent” tbd shortcut agent-handoff
“Check out this library’s source” tbd shortcut checkout-third-party-repo
(your choice whenever appropriate) tbd list, tbd dep add, tbd close, tbd sync, etc.

Read the full file on GitHub · 294 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. 5d ago First seen · 294 lines · 223 tokens per session scan A 8a9648c8dbb3

Subscribe to this mod's changes

tbd is a skill published in the GitHub repository jlevy/simple-modern-uv (299 stars, last pushed 10d ago), licensed MIT. It adds 223 tokens to every session and 3,808 once invoked, about $0.0011 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-30.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

next-cache-components-optimizer

Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…

vercel/next.js · 170 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens