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) <= 3000.
Why 3000
LinkedIn’s/rest/posts commentary cap is 3000 graphemes — emoji and ZWJ sequences count as 1 character, matching our counter. The cap is documented in LinkedIn’s Versioned API docs.
Remediation
Trim the post. Use grapheme-aware splitting — seebluesky.text.max_graphemes for example code.