Add opper-multimodal skill (media generation + realtime)#13
Merged
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.
Why
We've shipped a lot of multimodal + realtime surface recently (images, audio TTS/STT, video, OCR,
/v3/files, realtime voice). It was crammed intoopper-api, whose frontmatter description was near the 1024-char cap and whose body mixed text/gateway concerns with media. A user asking "generate a video" or "transcribe audio" deserves a skill whose description triggers precisely.What
New standalone sub-skill
opper-multimodal(sibling ofopper-api/opper-cli/opper-sdks), covering everything beyond text:POST /v3/images,/v3/audio/{speech,transcriptions},/v3/videos(async),/v3/ocr— with scoped discovery lists, the shared media contract (store/file_id/parameterspassthrough), and curl seeds./v3/filesstorage API +file_idreuse.wss://api.opper.ai/v3/realtime, browser tickets viaPOST /v3/realtime-sessions, function-scoped/v3/realtime/{name}, providers, caps, billing.Scope boundary: server-side tools (
opper:web_searchetc.) intentionally stay inopper-api— they ride the compat chat endpoints.Wiring (everything stays connected)
opper-api: collapsed the heavy multimodal/realtime sections into a short pointer toopper-multimodal; kept server-side web search; tightened frontmatter + gotchas + "where to look next".opperrouter: added the new skill to the decision table, Phase-2 proposals, Phase-3 fetch block (primary + GitHub fallback), Phase-4 test rows, vocabulary surfaces, and the sub-skill index.https://api.opper.ai/v3/openapi.yaml) anddocs.opper.ai— endpoint shapes were verified against the live spec; the spec/docs themselves are untouched.scripts/validate-skills.shandscripts/build-site.sh --dry-runboth pass (5 skills; new file 205 lines, description under cap).