globalize-skills: Instructions file for Claude Code

CLAUDE.md

globalize-skills CLAUDE.md is an instructions file for Claude Code from globalize-now/globalize-skills. It costs 2,351 tokens per session, scanned A, original, MIT.

Repository instructions for a collection of skills that help localize software projects. Localization means adapting software and its text for different languages and regions.

In plain words
What is it for?
Use them when installing a skill, setting up a localization account or project, translating an application, or managing existing translation resources.
Why use it?
They explain where skills live, what each globalization skill handles, and how installation works. This gives an agent the project’s conventions before it adds or uses a localization skill.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions Claude Code.

This is globalize-now/globalize-skills's own configuration. It tells Claude Code how to work on globalize-skills 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 globalize-skills configures →

Reuse

Borrowing it

Nothing to install: this file belongs to globalize-now/globalize-skills. 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/globalize-now/globalize-skills/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/globalize-now/globalize-skills

Made for: Claude Code.

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 globalize-skills CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/globalize-now/globalize-skills/claude-md/github.svg)](https://agentmods.dev/instructions/globalize-now/globalize-skills/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/globalize-now/globalize-skills/claude-md"><img src="https://agentmods.dev/badge/instructions/globalize-now/globalize-skills/claude-md/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 globalize-skills CLAUDE.md

Your own site · 80×15
<a href="https://agentmods.dev/instructions/globalize-now/globalize-skills/claude-md"><img src="https://agentmods.dev/badge/instructions/globalize-now/globalize-skills/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 2,351 This file is loaded in full into every session.
When invoked 2,351 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.02351 $0.02351
Opus 5 $0.01175 $0.01175
Sonnet 5 $0.00470 $0.00470
Haiku 4.5 $0.00235 $0.00235

Measured 8d ago against content hash 3a4bfc1eb7e7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

globalize-skills CLAUDE.md 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 8d 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.

CLAUDE.md · 84 lines

How it starts

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

Globalization Skills

Agent skills for localizing software projects. Currently targeting Claude Code and the Lovable agent, with plans to support more agents.

Repository Structure

Skills live as flat top-level directories under skills/. Each skill is a self-contained directory following the Agent Skills open standard.

skills/
  <skill-name>/
    SKILL.md             # Main skill file with frontmatter (required)
    metadata.json        # Skill metadata for npx skills (optional)
    references/          # Supporting guides loaded by the skill (optional)
    scripts/             # Helper scripts (optional)

Skills currently in this repo:

  • skills/globalize-guide/ — orchestrator for the full i18n journey (detect → setup → convert → connect Globalize: account sign-in upfront, project + repo at the end)
  • skills/globalize-now-account-setup/ — install + authenticate the Globalize CLI (account sign-in)
  • skills/globalize-now-project-setup/ — create a Globalize project, connect a GitHub/GitLab repo, set catalog patterns (assumes account-setup is done)
  • skills/globalize-now-cli-use/ — manage existing Globalize translation resources
  • skills/css-i18n/ — audit and convert CSS to logical properties for RTL support
  • skills/lovable-i18n/ — single-file i18n skill for the Lovable.dev agent (Lingui + PO, both Lovable stacks, AGENTS.md coding rules, CI extraction, Globalize connect) — experimental

Conventions

  • Flat skill directories: Each skill is exactly one level deep under skills/. Skill name = directory name = name: field in SKILL.md frontmatter, all lowercase-with-hyphens.
  • Self-contained: Each skill directory has everything it needs. No shared abstractions between skills. Duplication is acceptable.
  • SKILL.md frontmatter: Required fields are name and description. Description explains when the skill should trigger.
  • References live inside the skill: Variant-specific instructions, manifest files, and other supporting docs go in <skill>/references/. Internal nesting inside references/ is unconstrained — organize by stack, language, framework, etc. as the skill needs.
  • Detection-first: Skills that modify projects should detect the target's framework, compiler, router, language, and package manager before taking action.
  • Pin installs to a major: Every package install a skill emits must specify a SemVer-major caret range (pkg@^N, or pkg@^0.M for pre-1.0). This applies to npm install / yarn add / pnpm add / bun add, every package name in manifest.json, every npx <pkg>@^N <args> invocation (unpinned npx always fetches latest), and any npx create-* scaffold call. Wrap pinned package strings in single quotes in shell snippets ('pkg@^N') so zsh's EXTENDED_GLOB doesn't eat the caret. Update the pin deliberately when bumping the skill's supported major. Exceptions: (1) when a build-tool-coupled exact pin is required (e.g. @lingui/swc-plugin to match Next.js swc_core), document the override in the skill's troubleshooting prose; (2) packages whose cadence the user manages deliberately and intentionally leaves uncapped — currently @globalize-now/cli-client (pre-1.0; the user's own CLI).

Read the full file on GitHub · 84 lines

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. 8d ago First seen · 84 lines · 2,351 tokens per session scan A 3a4bfc1eb7e7

Subscribe to this mod's changes

globalize-skills CLAUDE.md is an instructions file published in the GitHub repository globalize-now/globalize-skills (3 stars, last pushed yesterday), licensed MIT. It adds 2,351 tokens to every session, about $0.0118 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.

Related

Other instructions, from other repositories

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,153 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens