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 skills add Vibe-Marketer/plugins-and-skills --skill distribute-pluginsgit clone --depth 1 https://github.com/Vibe-Marketer/plugins-and-skillsWrote 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/vibe-marketer/plugins-and-skills/distribute-plugins)<a href="https://agentmods.dev/skills/vibe-marketer/plugins-and-skills/distribute-plugins"><img src="https://agentmods.dev/badge/skills/vibe-marketer/plugins-and-skills/distribute-plugins.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.1 | $0.00122 | $0.02108 |
| Opus 5 | $0.00061 | $0.01054 |
| Sonnet 5 | $0.00024 | $0.00422 |
| Haiku 4.5 | $0.00012 | $0.00211 |
Grade A, and why
distribute-plugins 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 7d 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 — 284 lines — stays where its author put it; the contents beside it link to each section on GitHub.
<essential_principles>
-
Validate Before Publishing. Never distribute a plugin that hasn't passed structural validation and skill audits. Broken plugins damage trust and are hard to unpublish.
-
Semantic Versioning. Version numbers communicate intent. MAJOR for breaking changes. MINOR for new features. PATCH for fixes. Users depend on this contract.
-
No Secrets in Distribution. Hardcoded paths, credentials, API keys, and personal data must be caught before packaging. One leaked secret in a published plugin is a security incident.
-
Reproducible Installs. Every published version must install cleanly from the distribution source. If it works on your machine but not on a clean install, it's not ready.
</essential_principles>
<quick_start>
- Point to the plugin directory
- Pre-distribution checks run automatically (audit, validation, secrets scan)
- Choose the version bump type (major, minor, patch)
- Package is built (excluding dev files)
- Choose distribution method (GitHub release, marketplace, path install)
- Publish with documentation </quick_start>
<step_1> Pre-Distribution Checklist
Run all checks before packaging. Every item must pass:
| # | Check | How to Verify |
|---|---|---|
| D01 | All skills pass audit | Run audit-extensions on each skill |
| D02 | plugin.json is valid | Parse JSON, verify required fields |
| D03 | plugin.json has license field | Must specify a license (MIT, Apache-2.0, etc.) |
| D04 | README.md exists | Must include installation instructions |
| D05 | No hardcoded absolute paths | Grep for /Users/, /home/, C:\ patterns |
| D06 | No credentials or secrets | Grep for API_KEY, SECRET, TOKEN, password patterns |
| D07 | No .env files included | Check for .env, .env.local, .env.production |
| D08 | All references resolve | Every file referenced in SKILL.md routing/index exists |
| D09 | All skill names match directories | YAML name field = directory name for every skill |
| D10 | No empty skill directories | Every skill dir has a SKILL.md with content |
If any check fails, report the failures and stop. Do not proceed to packaging with known issues. </step_1>
<step_2> Semantic Versioning
Determine the version bump based on changes since last release:
MAJOR version (X.0.0) -- Breaking changes:
- Renamed or removed skills
- Changed skill behavior that users depend on
- Removed commands or subagents
- Changed plugin.json structure
- Renamed the plugin itself
MINOR version (x.Y.0) -- New features:
- Added new skills
- Added new workflows to existing skills
- Added new commands or subagents
- Added new references or templates
- New configuration options
PATCH version (x.y.Z) -- Fixes:
- Bug fixes in skill content
- Typo corrections
- Updated references for accuracy
- Performance improvements
- Documentation updates
Version file: Update the version field in plugin.json.
If no previous version exists, start at 1.0.0.
Changelog: Generate or update CHANGELOG.md with:
## [X.Y.Z] - YYYY-MM-DD
### Added
- [New features]
### Changed
- [Modified features]
### Fixed
- [Bug fixes]
### Removed
- [Removed features]
</step_2>
<step_3> Packaging
Create the distribution package:
Exclude from package:
__pycache__/node_modules/*.pyc.DS_Storeevals/(test data, not runtime).env*.git/*.log.claude/(user-specific config)*.tmp*.bak
Include in package:
plugin.json(root manifest)skills/(all skill directories with SKILL.md, workflows/, references/, templates/, scripts/)agents/(all subagent configurations)commands/(all slash commands)hooks/(all hook configurations)scripts/(plugin-level scripts)shared/(shared rules, templates, configs)README.mdLICENSECHANGELOG.md
What ships with it
2 files 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.
- 7d ago First seen · 284 lines · 122 tokens per session scan A 2c36aaf3df21
distribute-plugins is a skill published in the GitHub repository Vibe-Marketer/plugins-and-skills (2 stars, last pushed 6mo ago), licensed MIT. It adds 122 tokens to every session and 2,108 once invoked, about $0.0006 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
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.
changelog-composer
Generates structured changelogs and release notes from git history and PRs, classifying breaking changes, features, fixes, performance, docs. Triggers on: "generate changelog", "write release notes", "what changed since", "prepare release", "release notes for", "diff since tag".
updater_guide
Guidance for checking for and installing Row-Bot updates.