Add Kudosity Messaging skills - #1480
Open
Tony Becker (t--becker) wants to merge 1 commit into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds kudosity/skills to Development & Code Tools — eight skills for sending SMS, MMS, WhatsApp and RCS from an agent via the Kudosity messaging API.
Placed alphabetically between
julesandLangSmith Fetch. One line added, nothing else touched.Against the contribution requirements
Solves a real problem — messaging APIs have platform rules that agents get wrong by default, and the failures are quiet. WhatsApp free-form text only delivers inside a 24-hour service window, so an agent that "works in testing" (you had just messaged yourself) fails in production. RCS sends through a registered agent ID, not a phone number, so passing a number fails validation. Each skill front-loads the rule that breaks the naive attempt.
Well documented / includes examples — every skill carries the endpoint, auth header, a complete runnable
curl, the response shape and an error table. Endpoint detail is taken from Kudosity's live OpenAPI specs rather than written from memory.Tested — installed and verified via
npx skills add kudosity/skillson Claude Code; also listed at skills.sh/kudosity/skills.Safe — Markdown only. No scripts, no executables, no network calls beyond documented Kudosity API endpoints. Credentials are read from environment variables and are never written to files or echoed back.
Portable — plain
SKILL.mdwithname/descriptionfrontmatter, so it works across Claude Code, Cursor, Copilot, Windsurf and the rest. Each skill is self-contained: install one on its own and the task it names works end to end, with no dependency on a sibling skill being present.MIT licensed, published from the Kudosity org.