renux: Skill for Claude Code

.agents/skills/add-tag/SKILL.md

add-tag is a skill for Claude Code, Codex from andrianllmm/renux. It costs 52 tokens per session (491 once invoked), scanned A, original, MIT.

A development helper for adding placeholders such as `{name}` and filters such as `{name|upper}` to renux, a text-templating system. It keeps the implementation, documentation, autocomplete, and tests aligned.

In plain words
What is it for?
Use it when adding a new renux placeholder or filter. It guides the code change, any helper logic, tests for normal and edge cases, and README regeneration.
Why use it?
It provides a consistent process for extending renux without forgetting the related registry, generated documentation, or test coverage.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is andrianllmm/renux's own configuration. It tells Claude Code and Codex how to work on renux itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything renux configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is poetry run python scripts/sync_readme.py.

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/andrianllmm/renux/main/.agents/skills/add-tag/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/andrianllmm/renux

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for add-tag

README.md
[![agentmods](https://agentmods.dev/badge/skills/andrianllmm/renux/add-tag/github.svg)](https://agentmods.dev/skills/andrianllmm/renux/add-tag)
Your own site
<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.

agentmods 80×15 button for add-tag

Your own site · 80×15
<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>
Per session 52 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 491 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 9d ago against content hash 1f66b7b3e526, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

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.

.agents/skills/add-tag/SKILL.md · 46 lines

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

  1. Read src/renux/tags.py to see the Placeholder/Filter dataclasses and a couple of existing register_placeholder/register_filter calls for the pattern to follow.
  2. Add the new placeholder or filter:
    • Placeholder: needs name, description, syntax, a resolve function taking PlaceholderContext, category, and ideally an example and suggested (args) strings for autocomplete.
    • Filter: needs name, func (str -> str), and description.
  3. If the resolve/filter logic is non-trivial, put it in src/renux/helpers/ (see helpers/casing.py for the existing pattern) and import it into tags.py.
  4. Add a test case in tests/test_tags.py covering the new placeholder or filter (normal input, and any edge case like empty args or empty string).
  5. Regenerate the README's auto-generated tags section:
    poetry run python scripts/sync_readme.py
    
    This rewrites the block between <!-- TAGS:START --> and <!-- TAGS:END -->. Do not hand-edit that block.
  6. 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.py and by the sync-readme pre-commit hook.
  • Don't duplicate placeholder/filter docs anywhere else; everything derives from tags.py via src/renux/tags_reference.py.
Changes

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.

  1. 9d ago First seen · 46 lines · 52 tokens per session scan A 1f66b7b3e526

Subscribe to this mod's changes

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.

Related

Other skills, from other repositories

browser-use

Direct browser control via CDP for web interaction: automation, scraping, testing, screenshots, and site/app work.

browser-use/browser-use · 26 tokens

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.

wshobson/agents · 45 tokens

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…

mem0ai/mem0 · 207 tokens

code-review

Perform a structured code review of changes, checking for correctness, style, tests, and potential issues.

langchain-ai/deepagents · 23 tokens

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…

xberg-io/xberg · 72 tokens

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…

ComposioHQ/composio · 67 tokens