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 agentmods add skills/ldbumble/taskuary/deploynpx skills add ldbumble/taskuary --skill deploygit clone --depth 1 https://github.com/ldbumble/taskuaryWrote 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/ldbumble/taskuary/deploy)<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>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 | $0.00092 | $0.01954 |
| Opus 5 | $0.00046 | $0.00977 |
| Sonnet 5 | $0.00018 | $0.00391 |
| Haiku 4.5 | $0.00009 | $0.00195 |
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']]" 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?) thengit 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
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.
- today First seen · 160 lines · 92 tokens per session scan C 6df5452d8f85
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.
Other skills, from other repositories
agent-github-modes
Agent skill for github-modes - invoke with $agent-github-modes.
tutti-app-release
Set up, review, run, or debug external repositories that publish a Tutti workspace app through the reusable Tutti App Release GitHub Actions workflow. Use for caller workflows, tutti.app.json manifests, @tutti-os/app-release-tools, S3/CloudFront release hosting, latest.json, versions.json, catalog.json, catalog-only…
github-release-management
Comprehensive GitHub release orchestration with AI swarm coordination for automated versioning, testing, deployment, and rollback management.
pdlc-ship
发布工作流(跑测试 → bump VERSION → 更 CHANGELOG → tag → 触发 CI/CD).
tendril-release
Updates the used Ivy NuGet packages to the latest stable versions in a branch from development, builds/verifies, merges into development, creates a PR into main, merges it, merges main back to development, and triggers the GitHub Actions release workflow.
github-ops
GitHub repository operations, automation, and management. Issue triage, PR management, CI/CD operations, release management, and security monitoring using the gh CLI. Use when the user wants to manage GitHub issues, PRs, CI status, releases, contributors, stale items, or any GitHub operational task beyond simple git…