Add: tools/suno-ai - AI music generation via Suno API - #48
Open
just-cameron wants to merge 1 commit into
Open
just-cameron wants to merge 1 commit into
just-cameron wants to merge 1 commit into
Conversation
Adds a Suno AI skill for generating music, lyrics, and audio processing. Features: - Music generation from text prompts (5 model versions) - Custom mode with title/style control - Lyrics-only generation - Track extension - Vocal/instrument separation - WAV conversion - Credit checking - Task polling with timeout Written by Cameron with Letta Code
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.
Add: tools/suno-ai
Adds a Suno AI skill for generating music, lyrics, and audio processing via the Suno API.
What: TypeScript CLI tool (
suno.ts) with SKILL.md covering music generation, lyrics, track extension, vocal separation, WAV conversion, and credit management. Supports all 5 Suno model versions (V4 through V5).Why: Music generation is a common creative task for agents. This skill provides a clean CLI interface to the Suno API, following the same pattern as the existing Linear and other tool skills.
Source: Built from the Suno API documentation. Covers the full API surface: generate, lyrics, extend, vocal separation, WAV conversion, credits.
Testing: Script verified to parse args correctly and produce proper help output. API calls use standard fetch with proper error handling. Follows the same TypeScript CLI pattern as other tools in the repo.
Commands:
generate- Create music from text prompts (supports custom mode, instrumental, model selection)lyrics- Generate lyrics onlystatus/wait- Check and poll task completionextend- Extend existing tracksseparate- Vocal/instrument stem separationwav- Convert to WAV formatcredits- Check remaining API creditsWritten by Cameron with Letta Code