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 fabis94/universal-ai-config --skill releasegit clone --depth 1 https://github.com/fabis94/universal-ai-configWrote 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/fabis94/universal-ai-config/release)<a href="https://agentmods.dev/skills/fabis94/universal-ai-config/release"><img src="https://agentmods.dev/badge/skills/fabis94/universal-ai-config/release.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 3 findings, up to high
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- high Privilege Escalation · line 42 Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
- medium Data Exfiltration · line 151 Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
- medium Data Exfiltration · line 151 Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
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.00015 | $0.01176 |
| Opus 5 | $0.00008 | $0.00588 |
| Sonnet 5 | $0.00003 | $0.00235 |
| Haiku 4.5 | $0.00002 | $0.00118 |
Grade A, and why
release scanned grade A with 1 finding 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 8d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
Otherwise, use curl: How it starts
The opening of the file, as written. The whole thing — 165 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Release
Create a new versioned release. This includes generating a changelog, creating a git tag, and publishing a GitHub release.
Parse $ARGUMENTS for:
<version>— semver version (e.g.1.2.0,2.0.0-beta.1)--draft— create the GitHub release as a draft--prerelease— mark the GitHub release as a prerelease
Step 1: Validate Prerequisites
Run ALL checks upfront before doing any release work. If any check fails, stop immediately and print the remediation instructions.
1a. Git state
- Run
git status— working directory must be clean (no uncommitted changes) - Verify the current branch is the main/default branch (
git symbolic-ref refs/remotes/origin/HEADor check formain/master) - Run
git pullto ensure the branch is up to date
1b. GitHub authentication
Check in order:
which gh && gh auth status— gh CLI installed and authenticated- If gh is unavailable or not authed, check:
[ -n "$GITHUB_TOKEN" ] || [ -n "$GH_TOKEN" ]
If neither is available, stop and tell the user:
GitHub authentication is required for creating releases. Set up one of:
- Run
gh auth loginfor interactive GitHub CLI login- Set
export GITHUB_TOKEN=<token>with a personal access token that hasreposcopeCreate a token at: https://github.com/settings/tokens/new?scopes=repo
1c. Git remote
- Run
git remote get-url origin— must have a remote configured
Step 2: Determine Version
If a version was provided in $ARGUMENTS, validate it's valid semver.
If no version was provided:
- Read the current version from
package.json(if it exists) or the latest git tag (git describe --tags --abbrev=0) - Present the user with options for the next version (patch, minor, major) using AskUserQuestion
- Use the selected version
Ensure the version doesn't already exist as a tag (git tag -l "v<version>").
Step 3: Generate Changelog
Generate a changelog from commits since the last tag:
git log <last-tag>..HEAD --pretty=format:"%s (%h)" --no-merges
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.
- 8d ago First seen · 165 lines · 15 tokens per session scan A 9be387b467ce
release is a skill published in the GitHub repository fabis94/universal-ai-config (11 stars, last pushed 11d ago), licensed MIT. It adds 15 tokens to every session and 1,176 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
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.