create-tasks

create-tasks is a skill for Claude Code, Codex from samsantosb/ship-it. It costs 50 tokens per session (2,229 once invoked), scanned A, original, MIT.

A skill that turns product scope into small technical work items ready for AI-assisted implementation. A tracker is a tool such as GitHub Issues or another system used to record and manage work.

In plain words
What is it for?
Use it with a product document, tracker item, project, milestone, or empty scope to produce implementation cards for `/do-task`.
Why use it?
It removes the need to split a broad product request into technical tasks by hand and previews the proposed work before creating anything.

Skill for Claude CodeCodex

Installs and runs on its own, but its text points at files inside its plugin — anything it tells you to read at a ${CLAUDE_PLUGIN_ROOT} path is only there once the plugin is installed. Installing the plugin gets both.

Part of the ship-it plugin — 7 skills shipped together

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/samsantosb/ship-it/create-tasks
Any agent
npx skills add samsantosb/ship-it --skill create-tasks
Clone the repo
git clone --depth 1 https://github.com/samsantosb/ship-it

Made for: Claude Code, Codex.

Or install ship-it, the plugin that ships this one along with the rest of its 7 skills.

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 create-tasks

README.md
[![agentmods](https://agentmods.dev/badge/skills/samsantosb/ship-it/create-tasks.svg)](https://agentmods.dev/skills/samsantosb/ship-it/create-tasks)
Your own site
<a href="https://agentmods.dev/skills/samsantosb/ship-it/create-tasks"><img src="https://agentmods.dev/badge/skills/samsantosb/ship-it/create-tasks.svg" alt="Measured on agentmods" height="20"></a>
Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,229 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.00050 $0.02229
Opus 5 $0.00025 $0.01115
Sonnet 5 $0.00010 $0.00446
Haiku 4.5 $0.00005 $0.00223

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

Security

Grade A, and why

create-tasks 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.

skills/create-tasks/SKILL.md · 96 lines

How it starts

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

Skill: create-tasks

Turns product scope into technical cards. Works against any tracker mode (${CLAUDE_PLUGIN_ROOT}/shared/card-format.md): tracker MCP, GitHub Issues via gh, or local Markdown. Respond in the conversation language (docs/agents/language.md; unset → the user's language).

Load before acting: ${CLAUDE_PLUGIN_ROOT}/shared/workflow-context.md (roles + project config), ${CLAUDE_PLUGIN_ROOT}/shared/card-format.md (the card contract this skill produces), and ${CLAUDE_PLUGIN_ROOT}/shared/guardrails.md (this skill mutates trackers — the loading contract applies).

Step 0 — Resolve context and parse the input

Resolve the Tracker role (and Repo, if a codebase is present) per workflow-context — batched question only for what detection can't settle.

Input shapes, checked in order (stop at the first match):

  1. Path to a local .md file → product doc; parents come from its scope.
  2. Tracker item URL or identifier (ENG-790, #123, TASK-007, item URL) → single parent. A URL pins the tracker (workflow-context rule).
  3. Tracker project / milestone / epic URL → collection of parents (tracker modes only).
  4. Empty → product-doc discovery order from card-format § Product context input; nothing found → offer to run /create-product right here.

Malformed input → show the accepted shapes with one example each; never guess.

Step 1 — Read the scope

  • Single parent: fetch the item + comments. Terminal status (done/canceled) or existing children → ask before proceeding (possible duplicate work).
  • Collection: list items; keep only eligible parents — not sub-items, not terminal, no existing children. Record everything else in skipped with a reason. If the collection mixes product and non-product items and docs/agents/tracker.md defines no product_filter, ask once how to identify product items (a team name, a label, or "all items") and write the answer back as product_filter: in tracker.md.
  • Product doc: read it; the doc (or each of its major scope items, if clearly separable) is the parent scope. High-level acceptance criteria become the source of each card's ## Test criteria (one it per criterion).
  • In all cases, read the project knowledge the cards must respect: the guideline files listed in docs/agents/validation.md and any docs/agents/guardrails.md rules. For each card's target area, the nearest GUIDELINES.md up the tree wins over the codebase-level one (make-guidelines precedence). No guidelines anywhere → offer /make-guidelines (the pipeline self-heals), or proceed with the card sourcing patterns from the code itself.

Read the full file on GitHub · 96 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 · 96 lines · 50 tokens per session scan A 0ec52409e461

Subscribe to this mod's changes

create-tasks is a skill published in the GitHub repository samsantosb/ship-it (23 stars, last pushed 1mo ago), licensed MIT. It adds 50 tokens to every session and 2,229 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-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