prepare_release_notes
Validates localized release notes by checking BCP-47 locale codes and character limits for App Store (4000) and Google Play (500) to prevent submission errors.
Instructions
Validate localized release notes before submitting to the App Store or Google Play. Checks that each locale is a valid BCP-47 code (e.g. en-US, fr-FR, zh-Hans) and that text fits within platform char limits (Android: 500, iOS: 4000). Pass platform='both' to validate against the stricter Android limit for notes that will go to both stores.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| notes | Yes | Map of BCP-47 locale code to release note text, e.g. { 'en-US': 'Bug fixes and performance improvements.' } | |
| platform | Yes | Target platform — determines which char limit applies. 'both' uses the stricter Android limit of 500. |