proofreader-api
Proofreader API
Procedures
Step 1: Identify the browser integration surface
- Inspect the workspace for browser entry points, editor or form UI handlers, and any existing built-in AI abstraction layer.
- Execute
node scripts/find-proofreader-targets.mjs .to inventory likely frontend files and existing Proofreader API markers when a Node runtime is available. - 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. - If the workspace contains multiple frontend apps, prefer the app that contains the active text-entry route, editor component, or user-requested proofreading surface.
- If the inventory still leaves multiple plausible frontend targets, stop and ask which app should receive the Proofreader API integration.
- If the project is not a browser web app, stop and explain that this skill does not apply.
Step 2: Confirm API viability and option shape
- Read
references/proofreader-reference.mdbefore writing code. - Read
references/examples.mdwhen the feature needs session creation, download monitoring, result rendering, or quota-aware preflight. - Read
references/compatibility.mdwhen preview flags, browser channels, hardware requirements, iframe constraints, or browser-specific option gaps matter. - Read
references/troubleshooting.mdwhen feature detection, availability, creation, or proofreading fails. - Verify that the feature runs in a secure
Windowcontext and that the current frame is allowed to use theproofreaderpermissions-policy feature. - Match
availability()andcreate()option shapes exactly, especially forexpectedInputLanguages,includeCorrectionTypes,includeCorrectionExplanations, andcorrectionExplanationLanguagewhen the target browser supports them. - If the feature must run in a worker, on the server, or through a generic text-generation interface, stop and explain the platform mismatch.
- If the project uses TypeScript, add or preserve typings that cover only the Proofreader API surface actually used by the feature.
Step 3: Implement a guarded proofreader wrapper
- Read
assets/proofreader-session.template.tsand adapt it to the framework, state model, and file layout in the workspace. - Gate session creation behind
Proofreader.availability()using the same non-transient create options that the runtime session will use. - Treat
availability()as a capability check, not a guarantee that creation will succeed without user activation, download time, or policy approval. - Create sessions only after user activation when the target browser may need to start a model download.
- Use the
monitoroption duringcreate()when the UI needs download progress. - Use
AbortControllerfor cancelable create or proofread calls, and calldestroy()when the proofreading UI no longer needs the session. - Recreate the session instead of mutating option-dependent behavior after creation; session options are fixed per instance.
- If the task requires correction labels or explanations, keep browser-specific fallbacks explicit instead of assuming every preview implements the full specification option set.
Step 4: Wire UX and result handling
- Surface distinct states for missing APIs, unavailable devices, downloadable or downloading models, ready sessions, in-flight proofreading, canceled work, and hard failures.
- Keep a non-AI fallback for unsupported browsers, blocked frames, or devices that do not meet the current preview requirements.
- Render both
correctedInputand the structuredcorrectionsarray when the product needs visible diffs or selective acceptance. - Use
measureInputUsage()before expensive proofreading only when the feature needs quota-aware behavior or large-input preflight. - Keep expected input languages explicit when the feature depends on supported language routing.
- Do not use Proofreader as a general chat, summarization, or rewriting surface; switch to the correct built-in API when the task is not proofreading.
Step 5: Validate behavior
- Execute
node scripts/find-proofreader-targets.mjs .to confirm that the intended app boundary and Proofreader markers still resolve to the edited integration surface. - Verify feature detection, secure-context checks, permissions-policy access, and
availability()behavior before debugging deeper runtime failures. - Test session creation with the exact options used in production, including download progress handling when the environment needs an initial model download.
- Confirm that
proofread()returns the expectedcorrectedInputand correction ranges for representative user text. - If the integration uses
measureInputUsage(), confirm that large inputs are rejected or trimmed before the browser throws quota-related failures. - Confirm that cancellation stops work cleanly and that destroyed sessions are not reused.
- If the target environment depends on preview flags, origin trials, or channel-specific behavior, confirm the required browser state from
references/compatibility.mdbefore treating failures as application bugs. - Run the workspace build, typecheck, or tests after editing.
Error Handling
- If
Proofreaderis missing, keep a non-AI fallback and confirm that the environment satisfies the secure-context, browser, and preview requirements before changing product logic. - If
availability()returnsdownloadableordownloading, require user-driven session creation before promising that proofreading is ready. - If
create()orproofread()throwsNotAllowedError, check permissions-policy constraints, missing user activation for downloads, browser policy restrictions, or user rejection. - If
create()orproofread()throwsNotSupportedError, align the requested languages and option set with the browser's supported combinations and remove unsupported preview-only assumptions. - If creation fails with
OperationError,UnknownError, or another runtime exception, retry once only after confirming that device eligibility, storage, and browser flags still matchreferences/compatibility.md. - If the feature must run in a worker or server context, stop and explain that the Proofreader API is a window-only browser API.
More from webmaxru/agent-skills
github-agentic-workflows
Authors, reviews, installs, and debugs GitHub Agentic Workflows in repositories, including workflow markdown, frontmatter, gh aw compile and run flows, safe outputs, security guardrails, and operational patterns. Use when creating or maintaining GH-AW automation. Don't use for standard deterministic GitHub Actions YAML, generic CI pipelines, or non-GitHub automation systems.
96webmcp
Implements and debugs browser WebMCP integrations in JavaScript or TypeScript web apps. Use when exposing imperative tools through navigator.modelContext, annotating HTML forms for declarative tools, handling agent-invoked form flows, or validating WebMCP behavior in the current Chrome preview. Don't use for server-side MCP servers, REST tool backends, or non-browser providers.
92prompt-api
Implements and debugs browser Prompt API integrations in JavaScript or TypeScript web apps. Use when adding LanguageModel availability checks, session creation, prompt or promptStreaming flows, structured output, download progress UX, or iframe permission-policy handling. Don't use for server-side LLM SDKs, REST AI APIs, or non-browser providers.
92writing-assistance-apis
Implements and debugs browser Summarizer, Writer, and Rewriter integrations in JavaScript or TypeScript web apps. Use when adding availability checks, model download UX, session creation, summarize or write or rewrite flows, streaming output, abort handling, or permissions-policy constraints for built-in writing assistance APIs. Don't use for generic prompt engineering, server-side LLM SDKs, or cloud AI services.
92agent-package-manager
Installs, configures, audits, and operates Agent Package Manager (APM) in repositories. Use when initializing apm.yml, installing or updating packages, validating manifests, managing lockfiles, compiling agent context, browsing MCP servers, setting up runtimes, or packaging resolved context for CI and team distribution. Don't use for writing a single skill by hand, generic package managers like npm or pip, or non-APM agent configuration systems.
92language-detector-api
Implements and debugs browser Language Detector API integrations in JavaScript or TypeScript web apps. Use when adding LanguageDetector support checks, availability and model download flows, session creation, detect() calls, input-usage measurement, permissions-policy handling, or compatibility fallbacks for built-in language detection. Don't use for server-side language detection SDKs, cloud translation services, or generic NLP pipelines.
92