HuaweiAppGalleryMcp: Skill for Codex

.agents/skills/release-pypi/SKILL.md

release-pypi is a skill for Codex from AgiMaulana/HuaweiAppGalleryMcp. It costs 103 tokens per session (760 once invoked), scanned A, original, MIT.

A release procedure for publishing a Python package to PyPI, the main public package index for Python. It follows this repository's required branch, version, tag, and GitHub Release workflow.

In plain words
What is it for?
Use it to create a release branch, update the package version, tag the release, publish a GitHub Release, and check whether PyPI publishing succeeds.
Why use it?
It prevents release steps from getting out of sync, such as using a tag or branch that the publishing workflow will reject.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents).

This is AgiMaulana/HuaweiAppGalleryMcp's own configuration. It tells Codex how to work on HuaweiAppGalleryMcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything HuaweiAppGalleryMcp configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/AgiMaulana/HuaweiAppGalleryMcp/main/.agents/skills/release-pypi/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/AgiMaulana/HuaweiAppGalleryMcp

Made for: 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 release-pypi

README.md
[![agentmods](https://agentmods.dev/badge/skills/agimaulana/huaweiappgallerymcp/release-pypi/github.svg)](https://agentmods.dev/skills/agimaulana/huaweiappgallerymcp/release-pypi)
Your own site
<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.

agentmods 80×15 button for release-pypi

Your own site · 80×15
<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>
Per session 103 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 760 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00103 $0.00760
Opus 5 $0.00051 $0.00380
Sonnet 5 $0.00021 $0.00152
Haiku 4.5 $0.00010 $0.00076

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

Security

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.

.agents/skills/release-pypi/SKILL.md · 93 lines

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.toml version exactly, as v<version>

Use this workflow

  1. Inspect the current package version in pyproject.toml, existing tags, GitHub releases, and PyPI state.
  2. Choose the next version.
  3. Cut release/x.y.z from the intended base commit, usually main.
  4. Update pyproject.toml to x.y.z on that branch.
  5. Commit the version bump.
  6. Push the release branch.
  7. Create tag vx.y.z from the release branch tip.
  8. Push the tag.
  9. Publish a GitHub Release for vx.y.z with release/x.y.z as the target.
  10. Confirm the publish-pypi.yml workflow 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 main directly 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.

Read the full file on GitHub · 93 lines

Files

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.

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. 12d ago First seen · 93 lines · 103 tokens per session scan A eda97813491b

Subscribe to this mod's changes

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.