# 2026-08-06 — Image review and alt text (feature · API, SDK, CLI · sdk 0.0.36)

> Score generated images for quality issues and produce descriptive alt text, from the API, SDK, and CLI.

Two new image analysis calls. `review` scores an image for quality issues, and `alt` writes short, descriptive alt text. Both work on any image, whether Mynth generated it or not.

```ts
import Mynth from "@mynthio/sdk";

const mynth = new Mynth();

const review = await mynth.image.review({ url: "https://..." });
const { alt } = await mynth.image.alt({ url: "https://..." });
```

Both are CLI commands too, `mynth image review` and `mynth image alt`. The SDK also ships webhook helpers for Next.js and TanStack Start.

Permalink: https://mynth.io/changelog/2026-08-06-image-review-and-alt-text · Markdown: https://mynth.io/changelog/2026-08-06-image-review-and-alt-text.md
