Borrowing it
Nothing to install: this file belongs to israel-salgado/dt-mcp-server. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/israel-salgado/dt-mcp-server/main/.agents/skills/dtctl-release/SKILL.mdgit clone --depth 1 https://github.com/israel-salgado/dt-mcp-serverWrote 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/israel-salgado/dt-mcp-server/dtctl-release)<a href="https://agentmods.dev/skills/israel-salgado/dt-mcp-server/dtctl-release"><img src="https://agentmods.dev/badge/skills/israel-salgado/dt-mcp-server/dtctl-release/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.
<a href="https://agentmods.dev/skills/israel-salgado/dt-mcp-server/dtctl-release"><img src="https://agentmods.dev/badge/skills/israel-salgado/dt-mcp-server/dtctl-release.svg" alt="Reviewed on agentmods" width="80" 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.00096 | $0.01994 |
| Opus 5 | $0.00048 | $0.00997 |
| Sonnet 5 | $0.00019 | $0.00399 |
| Haiku 4.5 | $0.00010 | $0.00199 |
Grade C, and why
dtctl-release scanned grade C with 2 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.
Downloads and executes remote codehighSupply chain
curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.
curl -fsSL https://raw.githubusercontent.com/dynatrace-oss/dtctl/main/install.sh | bash Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -fsSL https://raw.githubusercontent.com/dynatrace-oss/dtctl/main/install.sh | bash How it starts
The opening of the file, as written. The whole thing — 244 lines — stays where its author put it; the contents beside it link to each section on GitHub.
dtctl Release Process
This skill walks through shipping a new dtctl release end-to-end. The process has six phases: analyze, version, changelog, test, commit/tag/push, and GitHub release notes.
Prerequisites
- You must be on the
mainbranch with all feature branches merged - The working tree must be clean (
git statusshows no uncommitted changes) - If the user is on a feature branch, merge to main first (or ask them to)
Pre-flight check:
git branch --show-current # Must be "main"
git status # Must be clean
git pull origin main # Must be up to date with remote
If any check fails, stop and resolve before continuing.
Phase 1: Analyze Changes Since Last Release
Identify what changed since the last release to determine the version bump and write good release notes.
# Find the latest release tag
git tag --sort=-version:refname | head -5
# List all commits since that tag
git log <last-tag>..HEAD --oneline
# Check the current Unreleased section in CHANGELOG.md
Read the commits carefully and group them into:
- Features (new commands, new flags, new integrations)
- Bug fixes (corrected behavior)
- Documentation (new or updated docs)
- Security (dependency updates, vulnerability fixes)
- Breaking changes (removed flags, changed defaults)
For each significant feature, explore the actual implementation files to understand what it does. Don't just rely on commit messages — read the code so you can write accurate, detailed release notes.
Phase 2: Determine Version Number
dtctl follows Semantic Versioning (currently pre-1.0, so 0.MINOR.PATCH):
| Change type | Bump | Example |
|---|---|---|
| New features, new commands | MINOR | 0.23.0 -> 0.24.0 |
| Bug fixes only, no new features | PATCH | 0.24.0 -> 0.24.1 |
| Breaking changes (pre-1.0) | MINOR | 0.24.0 -> 0.25.0 |
Phase 3: Update Version and Changelog
3a. Bump version in code
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.
- 12d ago First seen · 244 lines · 96 tokens per session scan C 35b4f999f370
dtctl-release is a skill published in the GitHub repository israel-salgado/dt-mcp-server (2 stars, last pushed 4mo ago), licensed MIT. It adds 96 tokens to every session and 1,994 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
agent-release-swarm
Agent skill for release-swarm - invoke with $agent-release-swarm.
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.
updater_guide
Guidance for checking for and installing Row-Bot updates.