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/metedata/remarc/release-extensionnpx skills add metedata/Remarc --skill release-extensiongit clone --depth 1 https://github.com/metedata/RemarcWrote 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/metedata/remarc/release-extension)<a href="https://agentmods.dev/skills/metedata/remarc/release-extension"><img src="https://agentmods.dev/badge/skills/metedata/remarc/release-extension.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.00025 | $0.00859 |
| Opus 5 | $0.00013 | $0.00430 |
| Sonnet 5 | $0.00005 | $0.00172 |
| Haiku 4.5 | $0.00003 | $0.00086 |
Grade C, and why
release-extension 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 5d 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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf /tmp/remarc-ext/remarc-extension Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -sIL https://github.com/metedata/Remarc/releases/download/extension-vVERSION/Remarc-Extension-VERSION.zip | head -1 How it starts
The opening of the file, as written. The whole thing — 77 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Release Chrome Extension
Package the Remarc Chrome extension and publish it as a GitHub Release on metedata/Remarc.
Steps
-
Check current version - Read
extension/manifest.jsonto get the currentversion -
Check what changed - Run
git log --onelineon the extension directory since the last version bump to see what's new:git log --oneline -- extension/ -
Prompt for version - Ask the user what version to release (suggest next patch/minor based on changes)
-
Bump version - Update
versioninextension/manifest.json -
Package - Create a zip with the extension files inside a
remarc-extension/folder:mkdir -p /tmp/remarc-ext rm -rf /tmp/remarc-ext/remarc-extension cp -R extension/ /tmp/remarc-ext/remarc-extension/ cd /tmp/remarc-ext zip -r Remarc-Extension-VERSION.zip remarc-extension/ -
Commit and push the manifest bump first - so the release tag points at a commit containing the released source:
git add extension/manifest.json git commit -m "Release extension vVERSION" git push -
Create the GitHub Release - on its own
extension-vtag, and ALWAYS with--latest=false:gh release create extension-vVERSION /tmp/remarc-ext/Remarc-Extension-VERSION.zip \ --repo metedata/Remarc \ --title "Remarc Chrome Extension vVERSION" \ --latest=false \ --notes "- what changed"NEVER omit
--latest=false. GitHub'sreleases/latestis repo-global; without the flag this release becomes "latest" andreleases/latest/download/Remarc.zip(the app's /download redirect and README link) starts 404ing for every visitor and update check. -
Update web page - Update
website/public/chrome-extension/index.html:- Update the download URL to
https://github.com/metedata/Remarc/releases/download/extension-vVERSION/Remarc-Extension-VERSION.zip - Update the version in the
download-metadiv
- Update the download URL to
-
Verify:
curl -sIL https://github.com/metedata/Remarc/releases/download/extension-vVERSION/Remarc-Extension-VERSION.zip | head -1 curl -sIL https://github.com/metedata/Remarc/releases/latest/download/Remarc.zip | head -1Both must return 200: the first proves the extension asset is live, the second proves the app's latest URL was not hijacked.
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.
- 5d ago First seen · 77 lines · 25 tokens per session scan C c8248759ed5e
release-extension is a skill published in the GitHub repository metedata/Remarc (66 stars, last pushed 13d ago), licensed MIT. It adds 25 tokens to every session and 859 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 2 findings (recursive force delete, 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
peekaboo
Use Peekaboo for macOS desktop automation, screenshots, visual UI maps, native accessibility inspection, app/window/menu/dialog control, native app and browser chrome control, browser-page MCP tooling, MCP diagnostics, and Peekaboo repo validation. Use when Codex needs current macOS UI state, direct desktop control…
release-peekaboo
Peekaboo release: notarization, npm/GitHub release, appcast, verify, closeout.
browser-control
Control web pages in an existing Chromium remote-debugging session with deterministic sagui commands or the browser-only AI Agent. Use when Claude Code needs to inspect tabs, observe semantic elements, navigate, click, type, send keys, scroll, or complete a browser goal through CDP without controlling native macOS UI…
agent-smoke-test
Run manual development checks for SwiftAutoGUI AI Agent actions through the local sagui CLI. Use when Claude or Codex needs to test app-control or Accessibility BasicAction generation on macOS.
macos-control
Control macOS GUI applications via mouse automation, keyboard input, screenshots, image recognition, and AppleScript execution. Use when you need to interact with macOS app UIs, take screenshots, click buttons, type text, scroll, drag, or locate images on screen.
swift-fast-mcp
Generate a complete MCP server project in Swift using the FastMCP library. Use when asked to create a Swift MCP server, build an MCP tool server, or scaffold a Model Context Protocol project in Swift.