Skm release agent skill pack
Agent Skill Manager — discover, install, link, and upgrade skills for Claude Code & Codex.
npx -y skills add weiox/skm --skill skm-release-agent-skill-packAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use when a local agent skill pack is ready to become a standalone GitHub repository and you want to validate its structure, frontmatter, and release readiness, then generate a first-release checklist.
SKILL.md
2.0 KB, as published. Nobody here has run it
Release Agent Skill Pack
Overview
This skill prepares a local skill pack for first release.
It does not publish directly. Instead, it validates the repository and generates a concrete release checklist so the final publish step is predictable.
When to Use
Use this skill when:
- a local skill pack is about to become its own repository
- you want to check README, skill structure, and frontmatter before publishing
- you want a reusable release checklist instead of ad-hoc notes
Do not use this skill for updating an already installed vendor package. Use skm-update-vendor-skills for that.
Core Rule
Before release:
- validate the pack structure
- validate every
SKILL.md - generate a first-release checklist
Run:
bash ~/.skm/skills/skm-release-agent-skill-pack/scripts/skm-release-agent-skill-pack.sh <repo-path>
Workflow
1. Point it at the target repository
bash ~/.skm/skills/skm-release-agent-skill-pack/scripts/skm-release-agent-skill-pack.sh \
/path/to/skill-pack
2. Review validation output
The script reports:
PASS readmePASS skills-dirPASS skill <name>CHECKLIST <path>
3. Use the generated checklist
The script writes RELEASE-CHECKLIST.md in the target repo root.
Use it to review:
- repo messaging
- skill names and descriptions
- structure and scripts
- first publish steps
Common Mistakes
- publishing a repo without a README
- mixing unrelated tooling with the skill pack itself
- shipping invalid or weak
SKILL.mdfrontmatter - skipping a final checklist and relying on memory
Completion Checklist
- repository passes structural validation
- checklist file is generated
- remaining publish actions are visible in one place