deploy

deploy is a skill for Claude Code, Codex from ldbumble/taskuary. It costs 92 tokens per session (1,954 once invoked), scanned C, original, MIT.

A release procedure for publishing Taskuary to PyPI, Python's package repository. It covers version changes, checks, rebuilding the UI, CI, and tagging the exact commit to publish.

In plain words
What is it for?
Use it to bump the version, run the required gates, commit and push changes, wait for CI, and create the release tag that starts the PyPI upload.
Why use it?
It prevents a release from being published before its checks pass and warns about work from other agents in the same checkout. It also avoids reusing a PyPI version, which is permanent once uploaded.

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/ldbumble/taskuary/deploy
Any agent
npx skills add ldbumble/taskuary --skill deploy
Clone the repo
git clone --depth 1 https://github.com/ldbumble/taskuary

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 deploy

README.md
[![agentmods](https://agentmods.dev/badge/skills/ldbumble/taskuary/deploy.svg)](https://agentmods.dev/skills/ldbumble/taskuary/deploy)
Your own site
<a href="https://agentmods.dev/skills/ldbumble/taskuary/deploy"><img src="https://agentmods.dev/badge/skills/ldbumble/taskuary/deploy.svg" alt="Measured on agentmods" height="20"></a>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,954 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 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 $0.00092 $0.01954
Opus 5 $0.00046 $0.00977
Sonnet 5 $0.00018 $0.00391
Haiku 4.5 $0.00009 $0.00195

Measured today against content hash 6df5452d8f85, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade C, and why

deploy scanned grade C with 2 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 today.

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.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

curl -s https://pypi.org/pypi/taskuary/X.Y.Z.W/json | python -c "import sys,json; d=json.load(sys.stdin); print(d['info']['version']); [print(' ', u['filename']) for u in d['urls']]"

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s https://pypi.org/pypi/taskuary/X.Y.Z.W/json | python -c "import sys,json; d=json.load(sys.stdin); print(d['info']['version']); [print(' ', u['filename']) for u in d['urls']]"
.claude/skills/deploy/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.

Deploying Taskuary

A PyPI version can never be reused, even after deletion (RELEASING.md). Everything below is ordered so that nothing irreversible happens until the reversible things have all passed.

The one rule

Tag only after CI is green on the exact commit you are about to tag. The tag fires .github/workflows/publish.yml, and that upload is permanent. Pushing master is cheap and reversible; pushing a tag is not.

1. Know whose work you are shipping

A Taskuary coding agent commits to this same checkout, so git status is usually not just yours. Before anything else:

git status --short
git log --oneline origin/master..HEAD      # anything of mine not yet pushed
  • If the owner said "push everything", the coder's in-flight work is included. Say so explicitly and list it — its own tests passing does not prove a half-built feature is finished.
  • If they did not, commit only your own paths and leave theirs alone. Prove a shared file holds only your hunks: git diff --stat HEAD -- <file> (do the counts match what you wrote?) then git diff HEAD -- <file> | grep '^+' read against your own phrases.
  • Commit through a temp index so a concurrent agent's staged work is never swept in:
export GIT_INDEX_FILE="$(pwd)/.git/claude-tmp-index"
rm -f "$GIT_INDEX_FILE"; git read-tree HEAD
git update-index --add -- <your paths>      # or `git add -A` for a deliberate ship-everything
TREE=$(git write-tree); PARENT=$(git rev-parse HEAD)
COMMIT=$(echo "$MSG" | git commit-tree "$TREE" -p "$PARENT")
git update-ref -m "release X" refs/heads/master "$COMMIT" "$PARENT"
rm -f "$GIT_INDEX_FILE"; unset GIT_INDEX_FILE
git reset -q                                # ALWAYS: refreshes the shared index to the new HEAD

Skipping that last git reset -q leaves the shared index showing your own files as modified and your new test file as deleted. It is confusing, not harmful — but fix it, do not commit over it.

2. Bump the version in all four places

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. today First seen · 160 lines · 92 tokens per session scan C 6df5452d8f85

Subscribe to this mod's changes

deploy is a skill published in the GitHub repository ldbumble/taskuary (45 stars, last pushed today), licensed MIT. It adds 92 tokens to every session and 1,954 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.

Related

Other skills, from other repositories