Skip to content
Mobile
Skill

/expo-api-docs

Write TSDoc comments for Expo SDK APIs following official conventions. MUST USE when introducing new user-facing TypeScript APIs in expo-* packages - document APIs correctly from the start, not as an afterthought. Also use when improving existing documentation. Covers @platform,

From plugin
expo
52k4 skills
Install
$ npx -y skills add expo/expo --skill expo-api-docs --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/expo-api-docs

Context preview

The summary Claude sees to decide when to auto-load this skill.

Write TSDoc comments for Expo SDK APIs following official conventions. MUST USE when introducing new user-facing TypeScript APIs in expo-* packages - document APIs correctly from the start, not as an afterthought. Also use when improving existing documentation. Covers @platform,

SKILL.md

expo-api-docs.SKILL.md
name: expo-api-docs
description: Write TSDoc comments for Expo SDK APIs following official conventions. MUST USE when introducing new user-facing TypeScript APIs in expo-* packages - document APIs correctly from the start, not as an afterthought. Also use when improving existing documentation. Covers @platform, @example, @deprecated, @default annotations, third-person declarative style, blockquote notes, and type export patterns for docs generation.
version: 1.0.0
license: MIT

Documenting Expo APIs

Guidelines for writing TSDoc comments in Expo SDK packages. The docs generation system (GenerateDocsAPIData.ts + TypeDoc) extracts these comments to produce API reference documentation.

**Document APIs as you write them, not as an afterthought.** When implementing new features, write TSDoc comments alongside the code.

When to Use

  • **Implementing new features** that expose public TypeScript APIs
  • Adding or modifying public APIs in `packages/expo-*`
  • Documenting functions, types, interfaces, constants, or enums
  • Adding platform-specific annotations
  • Writing code examples in docblocks

Core Principles

1. **Third-person declarative** — describe what the function does, not what to do 2. **Explain the iceberg** — document failure modes, side effects, concurrency behavior, not just params/returns 3. **Quality over quantity** — no docs is better than useless docs like "The width" for a `width` property

Function Documentation

Use third-person declarative ("Gets...", "Returns...", "Checks..."), not imperative ("Get...", "Return...").

/**
 * Gets the uptime since the last reboot of the device, in milliseconds.
 * Android devices do not count time spent in deep sleep.
 *
 * @return A promise fulfilled with the milliseconds since last reboot.
 *
 * @example
 * ```ts
 * const uptime = await Device.getUptimeAsync();
 * // 4371054
 * ```
 *
 * @platform android
 * @platform ios
 */
export async function getUptimeAsync(): Promise<number> {

**Key points:**

  • First sentence: what the function does
  • Additional sentences: important behavior, edge cases, platform differences
  • Leave off trailing period for single-phrase descriptions
  • Use periods when writing multiple sentences

Parameter Documentation

/**
 * Sets the sensor update interval.
 *
 * @param intervalMs Desired interval in milliseconds between sensor updates.
 * > Starting from Android 12 (API level 31), the system has a 200Hz limit for each sensor updates.
 * >
 * > If you need an update interval less than 5ms, add `android.permission.HIGH_SAMPLING_RATE_SENSORS`
 * > to [**app.json** `permissions` field](/versions/latest/config/app/#permissions).
 */
setUpdateInterval(intervalMs: number): void {

**Format:** `@param paramName Description starting with capital letter`

Parameters can include:

  • Markdown formatting (links, emphasis, lists)
  • Blockquotes for important notes
  • Links to documentation pages

Type and Interface Documentation

Document each property individually:

export type GetImageOptions = {
  /**
   * The format of the clipboard image to be converted to.
   */
  format: 'png' | 'jpeg';
  /**
   * Specify the quality of the returned image, between `0` and `1`.
   * Applicable only when `format` is set to `jpeg`, ignored otherwise.
   * @default 1
   */
  jpegQuality?: number;
};

**Teach something useful.** Bad: "The width". Good: "The width of the captured photo, measured in pixels".

Supported TSDoc Tags

| Tag | Purpose | Example | |-----|---------|---------| | `@param` | Parameter description | `@param options Configuration for the request` | | `@return` / `@returns` | Return value description | `@return A promise fulfilled with the result` | | `@default` | Default value (no markdown, rendered as inline code) | `@default 1` | | `@platform` | Platform availability (android, ios, web, expo) | `@platform ios 11+` | | `@example` | Code example (placed at bottom of description) | See examples below | | `@deprecated` | Deprecation notice (auto-formatted as warning) | `@deprecated Use newMethod() instead` | | `@experimental` | Experimental API label | `@experimental` | | `@hidden` / `@internal` / `@private` | Hide from generated docs | `@hidden` | | `@header` | Group methods under custom headers | `@header Scheduling` | | `@needsAudit` | Mark for security/API audit (comment, not tag) | `// @needsAudit` | | `@hideType` | Hide generated Type callout for constants | `@hideType` |

**Platform tag notes:**

  • **Do NOT use `@platform` when all platforms are supported** &mdash; only add when limiting availability
  • Use multiple `@platform` tags for multiple platforms (one per line)
  • Can specify minimum version: `@platform ios 11+`
  • Available platforms: `android`, `ios`, `web`, `expo` (Expo Go)

Code Examples in Docblocks

Always wrap in triple backticks with language tag:

/**
 * Checks device root/jailbreak status.
 *
 * @example
 * ```ts
 * const isRooted = await Device.isRootedExperimentalAsync();
 * if (isRooted) {
 *   console.warn('Device may be compromised');
 * }
 * ```
 */

Blockquote Notes and Warnings

Use `>` blockquotes for important callouts:

/**
 * > **Note:** This method requires the `CAMERA` permission.
 *
 * > **warning** This method is experimental and not completely reliable.
 */

Formats:

  • `> **Note:**` &mdash; informational
  • `> **warning**` &mdash; caution (lowercase "warning")
  • Multi-line notes use `>` on each line with blank `>` between paragraphs

Constant Documentation

/**
 * `true` if the app is running on a real device and `false` if running
 * in a simulator or emulator. On web, this is always set to `true`.
 */
export const isDevice: boolean = ExpoDevice.isDevice;

Enum Documentation

Document the enum and individual values:

/**
 * Type used to define what type of data is stored in the clipboard.
 */
export enum Content
Read more
Ships withexpo

An open-source framework for making universal native apps with React. Expo runs on Android, iOS, and the web.

Get the whole plugin
Stats
52,233
Stars
13,962
Forks
Active
Maintenance
TypeScript
Language
MIT
License
9m ago
Last commit
10y ago
Created
13d ago
Added

Repo: expo/expo

Other skills on expo.