translator-api
Implements and debugs browser Translator API integrations in JavaScript or TypeScript web apps. Use when adding Translator support checks, language-pair availability flows, model download UX, session creation, translate() or translateStreaming() calls, input-usage measurement, or permissions-policy handling for on-device translation. Don't use for server-side translation SDKs, cloud translation services, or generic multilingual content pipelines.
What this skill does
# Translator API ## Procedures **Step 1: Identify the browser integration surface** 1. Inspect the workspace for browser entry points, text-input flows, localization UI, and any existing AI abstraction layer. 2. Execute `node scripts/find-translator-targets.mjs .` to inventory likely frontend files and existing Translator API markers when a Node runtime is available. 3. If a Node runtime is unavailable, inspect the nearest `package.json`, HTML entry point, and framework bootstrap files manually to identify the browser app boundary. 4. If the workspace contains multiple frontend apps, prefer the app that contains the active route, translation UI, or user-requested feature surface. 5. If the inventory still leaves multiple plausible frontend targets, stop and ask which app should receive the Translator API integration. 6. If the project is not a browser web app, stop and explain that this skill does not apply. **Step 2: Confirm API viability and choose the integration shape** 1. Read `references/translator-reference.md` before writing code. 2. Read `references/examples.md` when the feature needs a session wrapper, download-progress UI, streaming output, cancellation, or cleanup shape. 3. Read `references/compatibility.md` when preview flags, browser channels, iframe rules, or environment constraints matter. 4. Read `references/troubleshooting.md` when support checks, session creation, translation, or cleanup fail. 5. Verify that the feature runs in a secure `Window` context. 6. Verify that the current frame is allowed to use the `translator` permissions-policy feature. 7. Choose the narrowest session shape that matches the task: - bare `Translator.create()` for a fixed language pair and full-result translation - monitored `create()` when the UI must surface model download progress - `translateStreaming()` when the UI should reveal translated output incrementally - `measureInputUsage()` when quota or input-size budgeting affects the flow 8. If the feature must run in a worker, on the server, or through a cloud translation contract, stop and explain the platform mismatch. 9. If the project uses TypeScript, add or preserve narrow typings for the Translator API surface used by the feature. **Step 3: Implement a guarded translator session** 1. Read `assets/translator-session.template.ts` and adapt it to the framework, state model, and file layout in the workspace. 2. Centralize support checks around `globalThis.isSecureContext`, `Translator`, and the same `sourceLanguage` and `targetLanguage` shape the feature will use at runtime. 3. Gate session creation behind `Translator.availability()` using the same language pair that will be passed to `Translator.create()`. 4. Treat `availability()` as a capability check, not a guarantee that creation will succeed without download time, policy approval, or user activation. 5. Create sessions only after user activation when creation may trigger a model download. 6. Use the `monitor` option during `create()` when the product needs download progress. 7. Use `AbortController` for cancelable `create()`, `translate()`, `translateStreaming()`, or `measureInputUsage()` calls, and call `destroy()` when the session is no longer needed. 8. Recreate the session instead of mutating `sourceLanguage` or `targetLanguage` after creation; session options are fixed per instance. 9. If the feature lives in a cross-origin iframe, require explicit delegation through `allow="translator"`. **Step 4: Wire UX and fallback behavior** 1. Surface distinct states for missing APIs, insecure contexts, blocked frames, unsupported language pairs, downloadable or downloading models, ready sessions, in-flight translation, and aborted work. 2. Keep a non-AI fallback for unsupported browsers, blocked frames, or environments that do not meet current preview requirements. 3. Preserve the source and target language pair explicitly in product state instead of inferring them from translated output. 4. Use `translate()` when downstream logic needs the full result before continuing, and use `translateStreaming()` when the UI should reveal translated text incrementally. 5. Use `measureInputUsage()` when large inputs can exceed session quota. 6. Treat same-language or best-fit identity translations as valid outcomes instead of forcing a fallback when the translated result matches the input. 7. Chunk or queue long-running product workflows deliberately; translation requests are not a substitute for general summarization, writing, or chat tasks. 8. Do not route generic cloud translation, document localization pipelines, or server-side batch translation through this API; switch to the approved service or runtime when the task is not browser on-device translation. **Step 5: Validate behavior** 1. Execute `node scripts/find-translator-targets.mjs .` to confirm that the intended app boundary and Translator API markers still resolve to the edited integration surface. 2. Verify secure-context checks, `Translator` feature detection, and `availability()` behavior before debugging deeper runtime failures. 3. Test at least one `create()` plus `translate()` flow with representative user text for the target language pair. 4. If the feature exposes streaming, test `translateStreaming()` separately and confirm partial output stops cleanly on abort. 5. If the feature depends on quota budgeting, verify `measureInputUsage()` behavior before sending large input. 6. Confirm that cancellation rejects with the expected abort reason and that destroyed sessions are not reused. 7. If the target environment depends on preview browser flags or channel-specific behavior, confirm the required browser state from `references/compatibility.md` before treating failures as application bugs. 8. Run the workspace build, typecheck, or tests after editing. ## Error Handling * If `Translator` is missing, keep a non-AI fallback and confirm secure-context, browser, channel, and flag requirements before changing product logic. * If `availability()` returns `downloadable` or `downloading`, require user-driven session creation before promising that translation is ready. * If `create()` throws `NotAllowedError`, check permissions-policy constraints, missing user activation for downloads, browser policy restrictions, or user rejection. * If `create()` throws `OperationError`, treat model initialization as failed and retry only after checking browser state, required flags, and download readiness. * If a translation call throws `QuotaExceededError`, reduce the input size or measure usage before retrying. * If a translation call throws `NotReadableError` or `UnknownError`, surface a visible fallback instead of retrying blindly with the same input. * If the feature must run in a worker or server context, stop and explain that the Translator API is a window-only browser API.
Related in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.