Resources
2Install
npx skillscat add oyi77/1ai-skills/automation-post-bridge-social-manager Install via the SkillsCat registry.
SKILL.md
Post Bridge Social Manager
Post to multiple social media platforms via post-bridge.com API.
Setup
API Key: pb_live_LzxK4Q4428kb1b6KETgdue
Base URL: https://api.post-bridge.com/v1
Features
- Post to X (Twitter), LinkedIn, Facebook, Instagram, TikTok
- Schedule posts
- Multi-platform distribution
- Media upload support
Usage
Post to Social Media
const response = await fetch('https://post-bridge.com/api/v1/posts', {
method: 'POST',
headers: {
'Authorization': `Bearer ${api_key}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({
content: 'Your post content here',
platforms: ['twitter', 'linkedin', 'facebook'],
media_urls: ['https://example.com/image.jpg'],
scheduled_at: '2026-02-18T12:00:00Z' // optional
})
});Response
{
"success": true,
"post_id": "post_123456",
"platforms": {
"twitter": "https://twitter.com/user/status/123",
"linkedin": "https://linkedin.com/feed/update/456"
}
}Platforms Supported
| Platform | ID | Notes |
|---|---|---|
| X (Twitter) | twitter |
Max 280 chars |
linkedin |
Article or text | |
facebook |
Page or profile | |
instagram |
Image required | |
| TikTok | tiktok |
Video supported |
Environment Variables
POST_BRIDGE_API_KEY=pb_live_LzxK4Q4428kb1b6KETgdue
POST_BRIDGE_BASE_URL=https://post-bridge.com/api/v1Commands
post-bridge post- Create a new postpost-bridge schedule- Schedule a postpost-bridge list- List recent postspost-bridge delete- Delete a post