feat: add Upload-Post integration for social media publishing#7
Open
mutonby wants to merge 1 commit intocalesthio:mainfrom
Open
feat: add Upload-Post integration for social media publishing#7mutonby wants to merge 1 commit intocalesthio:mainfrom
mutonby wants to merge 1 commit intocalesthio:mainfrom
Conversation
Add uploadpost_publisher tool that publishes finished videos, photos, documents, and text to 11 social platforms (Instagram, TikTok, YouTube, LinkedIn, Facebook, X, Threads, Pinterest, Bluesky, Reddit, Google Business) via a single API call through Upload-Post. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Author
|
@calesthio I think it's the missing piece to complete the picture. Let me know if you have any questions. |
|
This is a good initiative @mutonby. |
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.
Summary
Adds an
uploadpost_publishertool that lets OpenMontage publish finished videos, photos, documents, and text posts directly to 11 social platforms from the publish pipeline stage — no extra code, no per-platform OAuth setup.Supported platforms: Instagram, TikTok, YouTube, LinkedIn, Facebook, X (Twitter), Threads, Pinterest, Bluesky, Reddit, Google Business Profile.
How it works
UPLOADPOST_API_KEYin.env.uploadpost_publishertool is auto-discovered by the registry and becomes available in every pipeline's publish stage.Free tier: 10 uploads/month across all platforms.
What's included
tools/publishers/uploadpost_publisher.py— FullBaseToolimplementation with:POST /api/upload)POST /api/upload_photos)POST /api/upload_document)POST /api/upload_text)scheduled_date) and queue support (add_to_queue)dry_run()preflight checksskills/core/social-publishing.md— Layer 2 skill doc for agentsAll 10 pipeline publish stages updated with
uploadpost_publisherintools_availableAll 10 publish-director skills updated with "Direct Publishing" section
.env.exampleupdated withUPLOADPOST_API_KEYskills/INDEX.mdupdated withsocial_publishingcapability familyIntegration architecture
The tool follows the same patterns as existing API tools (e.g.,
veo_video): env-based API key,get_status()check,estimate_cost(),dry_run(), retry policy, and idempotency keys.Test plan
registry.discover()(appears in 67-tool list)capability_catalog()undersocial_publishingprovider_menu()with install instructionsdry_run()correctly reports missing API key and missing filesunavailablewithout API key,availablewith itAPI docs: https://docs.upload-post.com
🤖 Generated with Claude Code