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 agentmods add skills/drvoss/everything-copilot-cli/releasenpx skills add drvoss/everything-copilot-cli --skill releasegit clone --depth 1 https://github.com/drvoss/everything-copilot-cliWrote 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/drvoss/everything-copilot-cli/release)<a href="https://agentmods.dev/skills/drvoss/everything-copilot-cli/release"><img src="https://agentmods.dev/badge/skills/drvoss/everything-copilot-cli/release.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 | $0.00043 | $0.02408 |
| Opus 5 | $0.00022 | $0.01204 |
| Sonnet 5 | $0.00009 | $0.00482 |
| Haiku 4.5 | $0.00004 | $0.00241 |
Grade A, and why
release 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 yesterday.
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 — 285 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Release
When to Use
- After completing a sprint and CHANGELOG
[Unreleased]section is ready - When tagging a version for production deployment
- As the final step in the
commit-workflow→add-to-changelog→releasepipeline
Prerequisites
CHANGELOG.mdhas a populated[Unreleased]section- All commits for this release are on the target branch (usually
main) - CI passes on the target branch
Workflow
1. Confirm CHANGELOG is Ready
# Review Unreleased changes
$changelog = Get-Content CHANGELOG.md
$unreleased = $changelog | Select-String -Pattern '\[Unreleased\]' -Context 0, 30
$unreleased.Context.PostContext
# Confirm there are actual changes
if ($unreleased -match 'Added|Changed|Fixed|Security|Removed|Deprecated') {
Write-Host "✅ CHANGELOG has content — ready to release"
} else {
Write-Host "⚠️ [Unreleased] section is empty — nothing to release"
}
2. Determine the Next Version
Use Semantic Versioning:
| Change type | Version bump | Example |
|---|---|---|
| Bug fixes only | PATCH | 1.2.3 → 1.2.4 |
| New features (backwards-compatible) | MINOR | 1.2.3 → 1.3.0 |
| Breaking changes | MAJOR | 1.2.3 → 2.0.0 |
# Get current version
$currentTag = git --no-pager describe --tags --abbrev=0 2>$null
if (-not $currentTag) { $currentTag = "v0.0.0" }
Write-Host "Current: $currentTag"
# Decide next version
$nextVersion = "1.3.0" # Set this based on the change type above
3. Promote CHANGELOG [Unreleased] to Versioned Section
$version = $nextVersion # e.g. "1.3.0"
$date = Get-Date -Format "yyyy-MM-dd"
$changelog = Get-Content CHANGELOG.md -Raw
# Replace [Unreleased] header with versioned section and add new empty [Unreleased]
$newContent = $changelog -replace '## \[Unreleased\]', "## [Unreleased]`n`n## [$version] - $date"
Set-Content CHANGELOG.md $newContent
# Add version comparison link at bottom (optional but recommended)
$repoUrl = git remote get-url origin -replace '\.git$', ''
$prevVersion = $currentTag -replace '^v', ''
"`n[$version]: $repoUrl/compare/v$prevVersion...v$version" | Add-Content CHANGELOG.md
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.
- yesterday First seen · 285 lines · 43 tokens per session scan A f58cdbb478e1
release is a skill published in the GitHub repository drvoss/everything-copilot-cli (45 stars, last pushed 8d ago), licensed MIT. It adds 43 tokens to every session and 2,408 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-09-03.
Other skills, from other repositories
bump-version
This skill should be used when the user asks to "bump the version", "release a new version", "prepare a release", "update the version number", "version bump", or needs to determine and apply a semver version increment based on recent commits.
ship-it
Branch (if needed), commit, and push the current changes to remote in one step. Invoke only when the user explicitly runs /ship-it or asks to branch-commit-push — it reminds you to review first, then commits and pushes. Args: [branch-name-or-issue-id].
gh-release
Create an annotated git tag and GitHub prerelease from the latest versioned CHANGELOG entry.
make-changelog
Create initial CHANGELOG.md with unreleased features using Keep a Changelog format.
changelog-bump-ver
Promote CHANGELOG.md unreleased entries into the next release version and update Maven POMs to the next snapshot version.
git-push
Push commits to feature branch and update open PR description with new changes.