lenserfight: Skill for Claude Code

.agents/skills/language-integrator/SKILL.md

language-integrator is a skill for Claude Code, Codex from conectlens/lenserfight. It costs 100 tokens per session (1,689 once invoked), scanned A, original, MIT.

A localization implementation skill for adding a new language or regional setting to the LenserFight monorepo. Localization means adapting an application’s text and layout for another language, including right-to-left writing where needed.

In plain words
What is it for?
Use it to add or port support for languages such as French, German, Arabic, Hebrew, Persian, or Urdu.
Why use it?
It provides a defined way to register the language and create the matching translations and legal text across the relevant applications.

Skill for Claude CodeCodex

Written for Claude Code and Codex: $ARGUMENTS substitution, but also agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents).

This is conectlens/lenserfight's own configuration. It tells Claude Code and Codex how to work on lenserfight 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 lenserfight configures →

Reuse

Borrowing it

Nothing to install: this file belongs to conectlens/lenserfight. 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/conectlens/lenserfight/main/.agents/skills/language-integrator/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/conectlens/lenserfight

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 language-integrator

README.md
[![agentmods](https://agentmods.dev/badge/skills/conectlens/lenserfight/language-integrator.svg)](https://agentmods.dev/skills/conectlens/lenserfight/language-integrator)
Your own site
<a href="https://agentmods.dev/skills/conectlens/lenserfight/language-integrator"><img src="https://agentmods.dev/badge/skills/conectlens/lenserfight/language-integrator.svg" alt="Measured on agentmods" height="20"></a>
Per session 100 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,689 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00100 $0.01689
Opus 5 $0.00050 $0.00844
Sonnet 5 $0.00020 $0.00338
Haiku 4.5 $0.00010 $0.00169

Measured 6d ago against content hash 168c18267d91, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

language-integrator 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 6d 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/language-integrator/SKILL.md · 193 lines

How it starts

The opening of the file, as written. The whole thing — 193 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Language Integrator

Implement full i18n support for $ARGUMENTS across the LenserFight monorepo.

Parse $ARGUMENTS

Derive three values from $ARGUMENTS:

Value Example (French) Example (Arabic)
LOCALE fr ar
NAME Français العربية
DIR ltr rtl

If $ARGUMENTS contains only a language name (e.g. "French"), infer LOCALE from ISO 639-1. If $ARGUMENTS contains only a code (e.g. "fr"), infer NAME and DIR. RTL languages: Arabic (ar), Hebrew (he), Persian (fa), Urdu (ur).

Architecture summary

apps/landing/src/
  i18n.ts                        ← SUPPORTED_LANGUAGES + init — register here
  locales/
    en.json                      ← English source of truth
    LOCALE.json                  ← create: mirror en.json, translate all values
    en/policies/                 ← English legal markdown
    LOCALE/policies/             ← create: translated legal markdown (if applicable)

apps/web/src/
  i18n.ts                        ← SUPPORTED_LANGUAGES + init — register here
  locales/
    en.json                      ← English source of truth
    LOCALE.json                  ← create: mirror en.json, translate all values

apps/docs/.vitepress/config.ts   ← add hreflang entry + locales entry

docs/
  LOCALE/
    index.md                     ← create: VitePress locale home (hero in native lang)
    tutorials/getting-started/
      overview.md                ← create: getting-started stub with English fallback link

supabase/seeds/01_core_languages.sql  ← authoritative language registry — add if missing

Auth (apps/auth) and CLI (apps/cli) have no i18n infrastructure yet. If the request targets those surfaces, read REFERENCE.md for the scaffold templates.

Procedure

1 — Verify language registry

Read supabase/seeds/01_core_languages.sql. If LOCALE is missing, add inside the VALUES (...) block:

('LOCALE', 'NAME_EN', 'NAME', 'DIR', true),

Read the full file on GitHub · 193 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 6d ago First seen · 193 lines · 100 tokens per session scan A 168c18267d91

Subscribe to this mod's changes

language-integrator is a skill published in the GitHub repository conectlens/lenserfight (18 stars, last pushed 26d ago), licensed MIT. It adds 100 tokens to every session and 1,689 once invoked, about $0.0005 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.