Documentation Index
Fetch the complete documentation index at: https://docs.letmepost.dev/llms.txt
Use this file to discover all available pages before exploring further.
What it checks
countGraphemes(text) <= 2200.
Why 2200
Meta’s Instagram Graph API documents a 2200-character cap on thecaption field of a media container. The cap is in user-perceived characters; we count graphemes to match.
Empty captions are allowed — see instagram.media.required, which is the constraint that does apply when there’s no media.
Failure response
Remediation
Trim the caption. Use grapheme-aware splitting — seebluesky.text.max_graphemes for an example.