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 skills add adaptocms/adapto-cms-agent-skills --skill adapto-microcopygit clone --depth 1 https://github.com/adaptocms/adapto-cms-agent-skillsWrote 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/adaptocms/adapto-cms-agent-skills/adapto-microcopy)<a href="https://agentmods.dev/skills/adaptocms/adapto-cms-agent-skills/adapto-microcopy"><img src="https://agentmods.dev/badge/skills/adaptocms/adapto-cms-agent-skills/adapto-microcopy/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/adaptocms/adapto-cms-agent-skills/adapto-microcopy"><img src="https://agentmods.dev/badge/skills/adaptocms/adapto-cms-agent-skills/adapto-microcopy.svg" alt="Reviewed on agentmods" width="80" 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.01697 |
| Opus 5 | $0.00034 | $0.00848 |
| Sonnet 5 | $0.00014 | $0.00339 |
| Haiku 4.5 | $0.00007 | $0.00170 |
Grade A, and why
adapto-microcopy 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.
How it starts
The opening of the file, as written. The whole thing — 101 lines — stays where its author put it; the contents beside it link to each section on GitHub.
adapto:microcopy
Manages a project's micro copy — the short UI strings (nav, buttons, labels, validation, empty/loading
states, footer) stored in Adapto as key/value/language entries. Two modes:
init— seed a curated, project-aware starter set of UI strings with on-brand values (greenfield).extract— scan an existing frontend for hardcoded UI strings, create entries, and emit afile:line → keyreplacement guide (it never rewrites your source).
⚠️ Micro copy has no draft state — entries go live on create. So the plan-approval below is the only safety gate (there's no draft-review net like the content skills have). Review the plan carefully.
When to use
init: "seed UI strings", "starter microcopy", "set up my UI text".extract: "extract microcopy", "pull the hardcoded strings from my site into Adapto".
When not to use
- Translating microcopy into another language →
adapto:translate. - Content (articles / pages / collection items) →
adapto:content-seed. - Just checking the environment →
adapto:doctor.
Inputs
- Mode —
initorextract. Infer from the request; if ambiguous, ask which. - Project context for voice (
.adapto/project.mdcache oradapto collections get-by-slug _adapto_project_config --json); absent → neutral defaults. - Tenant language (
adapto auth orgs --json). - For
extract: a scaffolded frontend in the current directory. - Key convention: dot-namespaced (
nav.home,button.submit,form.email.label) — both modes use it.
Outputs
- Created micro copy entries (
key/value/language); a report of created + skipped. extractonly: a replacement guide at.adapto/microcopy-extract-<date>.mdmappingfile:line → key, so you can wire the read-client lookups yourself. Source is never modified.- Next step: suggest
adapto:translateto localize the micro copy into another enabled language; forextract, also wiring the read-client lookups from the guide; forinit,extractmode to catch any hardcoded strings already in the frontend.
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 · 101 lines · 69 tokens per session scan A 0479b3a8951b
adapto-microcopy is a skill published in the GitHub repository adaptocms/adapto-cms-agent-skills (1 stars, last pushed 1mo ago), licensed MIT. It adds 69 tokens to every session and 1,697 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-31.
Other skills, from other repositories
react-i18n
Use when implementing translations in a React app (not Next.js) with react-i18next — useTranslation, namespaces, pluralization, Suspense.
nextjs-i18n
Use when implementing i18n in Next.js 16 — next-intl or DIY dictionaries, locale routing, language switch, or formatters.
astro-i18n
Use when implementing i18n in Astro — locale routing strategies, getRelativeLocaleUrl/getAbsoluteLocaleUrl, Astro.currentLocale, or hreflang with sitemap.
locale-guard
A workflow for adding and checking multiple-language support in frontend applications, including translation files, language switching, and localized metadata.
paper-translation
Use when translating academic papers (PDF to Chinese Markdown), extracting PDFs with MinerU API, or needing to preserve LaTeX formulas/images/tables through a translation workflow.
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…