Borrowing it
Nothing to install: this file belongs to AgiMaulana/HuaweiAppGalleryMcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/AgiMaulana/HuaweiAppGalleryMcp/main/.agents/skills/release-pypi/SKILL.mdgit clone --depth 1 https://github.com/AgiMaulana/HuaweiAppGalleryMcpWrote 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/agimaulana/huaweiappgallerymcp/release-pypi)<a href="https://agentmods.dev/skills/agimaulana/huaweiappgallerymcp/release-pypi"><img src="https://agentmods.dev/badge/skills/agimaulana/huaweiappgallerymcp/release-pypi/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/agimaulana/huaweiappgallerymcp/release-pypi"><img src="https://agentmods.dev/badge/skills/agimaulana/huaweiappgallerymcp/release-pypi.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.00103 | $0.00760 |
| Opus 5 | $0.00051 | $0.00380 |
| Sonnet 5 | $0.00021 | $0.00152 |
| Haiku 4.5 | $0.00010 | $0.00076 |
Grade A, and why
release-pypi 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 12d 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.
How it starts
The opening of the file, as written. The whole thing — 93 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Release PyPI
This repository publishes to PyPI from GitHub Releases. The workflow in .github/workflows/publish-pypi.yml only succeeds when:
- the GitHub Release target is a
release/*branch - the release tag matches
pyproject.tomlversion exactly, asv<version>
Use this workflow
- Inspect the current package version in
pyproject.toml, existing tags, GitHub releases, and PyPI state. - Choose the next version.
- Cut
release/x.y.zfrom the intended base commit, usuallymain. - Update
pyproject.tomltox.y.zon that branch. - Commit the version bump.
- Push the release branch.
- Create tag
vx.y.zfrom the release branch tip. - Push the tag.
- Publish a GitHub Release for
vx.y.zwithrelease/x.y.zas the target. - Confirm the
publish-pypi.ymlworkflow starts and watch for success or failure.
Commands
Use non-interactive commands.
Check state:
git status --short --branch
git tag --sort=-version:refname | head
sed -n '1,120p' pyproject.toml
gh release list --limit 10
Cut branch and bump version:
git checkout -b release/1.1.2
Edit pyproject.toml so:
version = "1.1.2"
Commit and push:
git add pyproject.toml
git commit -m "chore: bump version to 1.1.2"
git push -u origin release/1.1.2
git tag v1.1.2
git push origin v1.1.2
Create the GitHub Release:
gh release create v1.1.2 \
--target release/1.1.2 \
--title v1.1.2 \
--notes "Release v1.1.2"
Check workflow status:
gh run list --workflow publish-pypi.yml --limit 5 \
--json databaseId,status,conclusion,headSha,displayTitle,event,createdAt,url
Guardrails
- Do not publish from
maindirectly unless the user explicitly changes the repository policy. - Do not assume the Git tag drives the package version. The version is sourced from
pyproject.toml. - Do not reuse a version already present on PyPI.
- Before creating a release, verify whether that version already exists on PyPI, in GitHub tags, or as an existing GitHub Release.
- If a GitHub Release already exists for the version, do not recreate it without user confirmation.
- Prefer concise release notes unless the user asks for a detailed changelog.
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.
- 12d ago First seen · 93 lines · 103 tokens per session scan A eda97813491b
release-pypi is a skill published in the GitHub repository AgiMaulana/HuaweiAppGalleryMcp (4 stars, last pushed 4mo ago), licensed MIT. It adds 103 tokens to every session and 760 once invoked, about $0.0005 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-31.
Other skills, from other repositories
agent-release-swarm
Agent skill for release-swarm - invoke with $agent-release-swarm.
release-announcement
Write a release announcement — changelog, blog post, in-app note, or social post — that leads with user impact, names the audience, and includes upgrade/migration steps without filler.
multi-agent-release-manager
Cleans up the workspace, formats code, runs presubmit checks, and uploads CLs to Gerrit.
release-notes
Generate user-facing release notes from tickets, PRDs, or changelogs. Creates clear, engaging summaries organized by category (new features, improvements, fixes). Use when writing release notes, creating changelogs, announcing product updates, or summarizing what shipped.
pack-submit
Package one of this agent's own skills as a standalone community pack and submit it to the aeon registry as a PR.
updater_guide
Guidance for checking for and installing Row-Bot updates.