share-skill

share-skill is a skill for Claude Code, Codex from RongchangLi/pocketskill. It costs 30 tokens per session (942 once invoked), scanned A, original, MIT.

A publishing workflow for submitting public coding-agent skills to a GitHub repository through a pull request.

In plain words
What is it for?
Use it to find shareable skills, run Git and GitHub checks, protect private skills, prepare commits, and create or document the pull-request command.
Why use it?
It checks the repository, remote, authentication, and changes before preparing a contribution, reducing mistakes when sharing a skill.

Skill for Claude CodeCodex

Part of the my-skill plugin — 12 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/rongchangli/pocketskill/share-skill
Any agent
npx skills add RongchangLi/pocketskill --skill share-skill
Clone the repo
git clone --depth 1 https://github.com/RongchangLi/pocketskill

Made for: Claude Code, Codex.

Or install my-skill, the plugin that ships this one along with the rest of its 12 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 share-skill

README.md
[![agentmods](https://agentmods.dev/badge/skills/rongchangli/pocketskill/share-skill.svg)](https://agentmods.dev/skills/rongchangli/pocketskill/share-skill)
Your own site
<a href="https://agentmods.dev/skills/rongchangli/pocketskill/share-skill"><img src="https://agentmods.dev/badge/skills/rongchangli/pocketskill/share-skill.svg" alt="Measured on agentmods" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 942 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 $0.00030 $0.00942
Opus 5 $0.00015 $0.00471
Sonnet 5 $0.00006 $0.00188
Haiku 4.5 $0.00003 $0.00094

Measured 3d ago against content hash 59dccf4bba94, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

share-skill 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 3d 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.

plugins/my-skill/skills/manage-skills/share-skill/SKILL.md · 99 lines

How it starts

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

Instructions

When the user invokes this skill, you are helping them share a skill to the community via GitHub PR.

Tool Expectations

This workflow may use git and gh commands.

All operations must happen from the pocketskill repository root. First locate it:

  • Use the current working directory if it contains plugins/my-skill/skills/.
  • Otherwise search upward from the current working directory.
  • If no root is found, ask the user for the pocketskill path and stop until they provide it.

Workflow

1. Preflight

Run checks before listing or committing:

  • git rev-parse --is-inside-work-tree must succeed. If not, tell the user this directory is not a git repository and provide setup commands instead of continuing.
  • git remote get-url origin must succeed. If not, stop and ask the user to add a GitHub remote.
  • gh auth status must succeed before creating a PR. If gh is missing or unauthenticated, still prepare the git commands but tell the user the exact gh auth login / gh pr create commands to run manually.
  • Inspect git status --short. Never use plain git commit if unrelated staged changes exist.

2. Find Shareable Skills

Only share skills from plugins/my-skill/skills/my-skills/. Never share from private-skills/ or manage-skills/.

Rules:

  • Include directories with untracked, modified, or staged changes shown by git status --short -- plugins/my-skill/skills/my-skills.
  • Exclude .DS_Store, editor files, cache files, and directories without SKILL.md.
  • Do not list unchanged skills unless the user explicitly asks to share an existing committed skill.
  • If nothing is shareable, say so and stop.

Show the candidate names and ask the user to choose one or all.

3. Review Before Sharing

For every selected skill, review SKILL.md before committing:

  • Frontmatter must include non-empty name and description.
  • Skill names must match ^[a-z0-9]+(-[a-z0-9]+)*$.
  • The body must contain real instructions, not just the template placeholder.
  • Check for obvious secrets or private material: API keys, tokens, passwords, personal paths, private repo URLs, or private-skill references.

Read the full file on GitHub · 99 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. 3d ago First seen · 99 lines · 30 tokens per session scan A 59dccf4bba94

Subscribe to this mod's changes

share-skill is a skill published in the GitHub repository RongchangLi/pocketskill (2 stars, last pushed 1mo ago), licensed MIT. It adds 30 tokens to every session and 942 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

release

Cut a Symphony release by bumping the committed version, landing it, tagging the merged commit, and verifying the Burrito release workflow. Use when asked to release, tag, or retag Symphony.

openai/symphony · 42 tokens

changelog-entry

Add a new entry to CHANGELOG.yml under the current unreleased version (or create the version block if needed), then regenerate documentation. Use when the user says things like "add a changelog entry", "log this fix in the changelog", or "/changelog-entry".

telepresenceio/telepresence · 60 tokens

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.

phuryn/pm-skills · 57 tokens

mate-oss-gate

在准备把 MateCloud(或其子集)开源 / 发布到公开仓前使用。按 open-core 边界把关:剥离企业代码、清竞品名与内部路径、查密钥、确认 LICENSE。当用户说"要开源了""发布公开版""开源前检查""oss release"时触发。.

mateaix/matecloud · 81 tokens

snapshot-release

Drives the snapshot-release flow for the current branch's PR. Posts a /snapshot comment on the PR if one isn't already there (with confirmation), waits for the Continuous Releases workflow to finish, and reports the tarball URLs from the resulting 📦 Snapshot Release comment. Use for both triggering and waiting …

daangn/seed-design · 142 tokens

devops/changelog-generation

自动生成 CHANGELOG,基于 git 提交历史和 pipeline 产物信息,遵循 Conventional Commits 和 Keep a Changelog 规范.

echoVic/boss-skill · 36 tokens