AgentsView is a local application that collects coding-agent sessions into a searchable database and web interface, including usage and cost statistics. Developers use it to browse, analyze, and track sessions from Claude Code, Codex, and other supported agents, while the catalogue add-ons help operate it.
Borrowing it
Nothing to install: this file belongs to kenn-io/agentsview. 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/kenn-io/agentsview/main/.agents/skills/localization-paraglide/SKILL.mdgit clone --depth 1 https://github.com/kenn-io/agentsviewWrote 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/kenn-io/agentsview/localization-paraglide)<a href="https://agentmods.dev/skills/kenn-io/agentsview/localization-paraglide"><img src="https://agentmods.dev/badge/skills/kenn-io/agentsview/localization-paraglide.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.1 | $0.00069 | $0.00504 |
| Opus 5 | $0.00034 | $0.00252 |
| Sonnet 5 | $0.00014 | $0.00101 |
| Haiku 4.5 | $0.00007 | $0.00050 |
Grade A, and why
localization-paraglide 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 7d 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
Localization Paraglide
Workflow
-
Read
frontend/project.inlang/settings.json,frontend/src/lib/i18n/index.ts, and nearby localized components before editing. -
Put user-facing copy in
frontend/messages/en.jsonandfrontend/messages/zh-CN.jsonwith identical keys. -
Import app localization through
frontend/src/lib/i18n/index.ts:import { m } from "../../i18n/index.js"; -
Call generated Paraglide messages as functions, for example
m.nav_sessions()orm.shared_active_filters_remove_agent({ agent }). -
Use Paraglide message declarations for plural, number, datetime, and relative time when the formatted value is part of translatable copy.
-
Use
formatDateTime()fromfrontend/src/lib/i18n/index.tsfor standalone visible date/time labels that need the active Paraglide locale. -
Keep technical identifiers untranslated: agent names, model names, file paths, CLI commands, IDs, and raw API values.
-
Run
npm run i18n:compileandnpm run checkfromfrontend/after message or component changes.
Message Rules
- Keep key names scoped and descriptive, such as
settings_terminal_titleoractivity_concurrency_empty. - Do not concatenate translated sentence fragments. Prefer one complete message with parameters.
- Pass numbers as numbers to pluralized messages. Pass strings only for display fragments that have already been intentionally formatted.
- In Svelte, put arrays or objects containing translated labels in
$derivedor$derived.bywhen they must update after locale changes. - Do not import from
frontend/src/lib/paraglide/*directly in components unless changing the i18n wrapper itself.
Formatting
Read references/paraglide-formatting.md when adding pluralization, ordinal
rules, date/time formatting, relative dates, compact numbers, currencies, or
mixed selector messages.
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.
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.
- 7d ago First seen · 49 lines · 69 tokens per session scan A 951f4465ca5b
localization-paraglide is a skill published in the GitHub repository kenn-io/agentsview (5,780 stars, last pushed yesterday), licensed MIT. It adds 69 tokens to every session and 504 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
harden
Improve interface resilience through better error handling, i18n support, text overflow handling, and edge case management. Makes interfaces robust and production-ready. Use when the user asks to harden, make production-ready, handle edge cases, add error states, or fix overflow and i18n issues.
localization-toolkit
This skill should be used when setting up, auditing, or enforcing internationalization/localization in UI codebases (React/TS, i18next or similar, JSON locales), including installing/configuring the i18n framework, replacing hard-coded strings, ensuring en-US/zh-CN coverage, mapping error codes to localized messages…
extract-source-sample
Given the path to a finished content-goose ad-run folder, extract everything that defines that ad — recipe shot list, VO script, characters, voices, world, atom-skills, master mp4 — and emit a source-sample.json in the exact shape the upload-ad-sample skill writes to the Goose Ads library. Also links every character…
experience-ui-bundle-localize
MUST activate to localize / internationalize a uiBundles//src/ project (React or Angular): extract hardcoded user-facing strings into Custom Labels, wire a runtime i18n library over the Platform SDK backend, add labels for another language, or troubleshoot label rendering across locales. Triggers: user-facing string…
experience-lwc-rtl-validate
Use this skill to review a Lightning Web Component (.html, .js, .css files) for right-to-left (RTL) internationalization correctness, producing a finding list with code-level fixes covering CSS logical properties, bidirectional text handling, keyboard semantics, and RTL-aware SLDS class usage. TRIGGER when the user…
ss-motion
Apply a named StyleSeed motion to a component — either one of the 5 personality seeds (Spring/Silk/Snap/Float/Pulse × entrance/exit/hover/press/layout) or a distinctive keyword move from the motion library (toggle-flip, toggle-curtain, reveal-blur, pop-in, shimmer, …). Translates vibe words into framer-motion code…