Borrowing it
Nothing to install: this file belongs to andrianllmm/renux. 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/andrianllmm/renux/main/.agents/skills/add-tag/SKILL.mdgit clone --depth 1 https://github.com/andrianllmm/renuxWrote 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/andrianllmm/renux/add-tag)<a href="https://agentmods.dev/skills/andrianllmm/renux/add-tag"><img src="https://agentmods.dev/badge/skills/andrianllmm/renux/add-tag/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/andrianllmm/renux/add-tag"><img src="https://agentmods.dev/badge/skills/andrianllmm/renux/add-tag.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00052 | $0.00491 |
| Opus 5 | $0.00026 | $0.00246 |
| Sonnet 5 | $0.00010 | $0.00098 |
| Haiku 4.5 | $0.00005 | $0.00049 |
Grade A, and why
add-tag 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 9d 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.
What it actually says
add-tag
Adds a new {placeholder} or {value|filter} to renux. The registry in
src/renux/tags.py is the single source of truth. README docs and
autocomplete are generated from it, so registering it correctly there is
almost the whole job.
Steps
- Read
src/renux/tags.pyto see thePlaceholder/Filterdataclasses and a couple of existingregister_placeholder/register_filtercalls for the pattern to follow. - Add the new placeholder or filter:
- Placeholder: needs
name,description,syntax, aresolvefunction takingPlaceholderContext,category, and ideally anexampleand suggested(args)strings for autocomplete. - Filter: needs
name,func(str -> str), anddescription.
- Placeholder: needs
- If the resolve/filter logic is non-trivial, put it in
src/renux/helpers/(seehelpers/casing.pyfor the existing pattern) and import it intotags.py. - Add a test case in
tests/test_tags.pycovering the new placeholder or filter (normal input, and any edge case like empty args or empty string). - Regenerate the README's auto-generated tags section:
This rewrites the block betweenpoetry run python scripts/sync_readme.py<!-- TAGS:START -->and<!-- TAGS:END -->. Do not hand-edit that block. - Run the full check before considering it done:
poetry run pytest poetry run mypy src
Don't
- Don't hand-edit the README's tags block. It's overwritten by
sync_readme.pyand by thesync-readmepre-commit hook. - Don't duplicate placeholder/filter docs anywhere else; everything derives
from
tags.pyviasrc/renux/tags_reference.py.
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.
- 9d ago First seen · 46 lines · 52 tokens per session scan A 1f66b7b3e526
add-tag is a skill published in the GitHub repository andrianllmm/renux (69 stars, last pushed 4d ago), licensed MIT. It adds 52 tokens to every session and 491 once invoked, about $0.0003 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-30.
Other skills, from other repositories
browser-use
Direct browser control via CDP for web interaction: automation, scraping, testing, screenshots, and site/app work.
temporal-python-testing
Test Temporal workflows with pytest, time-skipping, and mocking strategies. Covers unit testing, integration testing, replay testing, and local development setup. Use when implementing Temporal workflow tests or debugging test failures.
mem0-test-integration
Verify a Mem0 integration produced by /mem0-integrate. Runs in the same workspace on the same branch (loose coupling) — installs dependencies, runs the repo's native test suite, then exercises a real end-to-end smoke flow against the user's API key. Produces a scorecard. TRIGGER when: user has just run /mem0-integrate…
code-review
Perform a structured code review of changes, checking for correctness, style, tests, and potential issues.
test-corpus
The testdocuments submodule is a bucket-fetched fixture corpus that is not committed. This skill covers readtestfixture, missing fixtures, valid A/B controls, and submodule push order. Load before running Rust tests on a fresh clone, setting up an A/B control, adding a fixture-backed test, or diagnosing…
typescript-sdk
Implement or modify TypeScript SDK behavior in @composio/core or shared TypeScript packages, including tools, toolkits, sessions, auth configs, connected accounts, modifiers, and generated SDK surfaces. Use for TS runtime/API work; pair with typescript-testing for verification and cross-sdk-parity when Python must…