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/mochow13/keen-agent/releasenpx skills add mochow13/keen-agent --skill releasegit clone --depth 1 https://github.com/mochow13/keen-agentWrote 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/mochow13/keen-agent/release)<a href="https://agentmods.dev/skills/mochow13/keen-agent/release"><img src="https://agentmods.dev/badge/skills/mochow13/keen-agent/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.00010 | $0.00650 |
| Opus 5 | $0.00005 | $0.00325 |
| Sonnet 5 | $0.00002 | $0.00130 |
| Haiku 4.5 | $0.00001 | $0.00065 |
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 4d 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 — 63 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Release Skill
Target version (optional): $ARGUMENTS
If no target version is provided, inspect the latest release tag and commits since that tag before making any changes. Suggest a semantic-version bump to the user and wait for confirmation:
- major for intentional breaking changes.
- minor for backward-compatible features.
- patch for fixes, documentation, dependencies, and internal changes.
Use git tag --sort=-version:refname to identify the latest version tag and git log <latest-tag>..HEAD --oneline to review subsequent commits. If no release tags exist, treat the release as the initial v0.1.0 release and inspect the complete history. Also consider unreleased changelog entries. State the latest tag (or that no tag exists), the commits considered, the recommended version, and a concise rationale. If there are no commits since the latest tag, say that no release is recommended.
Once a version is supplied or confirmed, use it as the target version for the remaining steps.
Steps
-
Verify the release state. Ensure the working tree is clean or explicitly identify any unrelated changes. Check whether the target tag already exists locally or on
origin; never overwrite or move an existing tag. -
Bump the version. Update the version string, without the
vprefix, incmd/main.go. -
Update
CHANGELOG.md.- Move all entries under
[Unreleased]into a new[X.Y.Z] - YYYY-MM-DDsection below it. - Add an empty
[Unreleased]section at the top if one does not exist. - Check commit history for changes missing from the unreleased section.
- Add or update the release link for
vX.Y.Z.
- Move all entries under
-
Validate the release.
go mod tidy go test -race ./... -
Commit the release preparation. Stage only the release files and commit them:
cmd/main.goCHANGELOG.md
-
Push the release commit, then tag it.
git push origin main git tag vX.Y.Z git push origin vX.Y.ZPushing the tag triggers
.github/workflows/release.yml.
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.
- 4d ago First seen · 63 lines · 10 tokens per session scan A 1ae75506883d
release is a skill published in the GitHub repository mochow13/keen-agent (2 stars, last pushed 11d ago), licensed MIT. It adds 10 tokens to every session and 650 once invoked, about $0.0001 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
managing-github
Use when work reaches a GitHub-hosted issue, pull request or review, release, tag, or live deployment-branch boundary, including indirectly after investigation, completed development, or repository policy requires delivery. Also trigger when work discovers a repository defect that may need duplicate search or an issue…
agent-framework-py-release
Use when cutting a Python release for the microsoft/agent-framework monorepo. Triggers on "bump py versions", "cut a python release", "prepare release PR for python", "release py packages", "bump python to X.Y.Z", or similar requests to bump Python package versions and prepare a release PR. Handles all four lifecycle…
tutti-app-release
Set up, review, run, or debug external repositories that publish a Tutti workspace app through the reusable Tutti App Release GitHub Actions workflow. Use for caller workflows, tutti.app.json manifests, @tutti-os/app-release-tools, S3/CloudFront release hosting, latest.json, versions.json, catalog.json, catalog-only…
pinned-release-checklist
Minimal guidance-only Skill used by release-pinned compatibility examples.
Release Checklist
Check release readiness and record a release note. Use for release and rollback requests.
python-run
Run and debug Python scripts in the project. Use when the user says "run python", "execute this script", "debug this py file", or wants to run/modify a .py file. Handles dependency checks, linting, execution, and error analysis.