Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计异常

instagram-postInstagram 帖子

Agent Skill

instagram-post 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,270

周安装

54

GitHub Stars

23

下载量

445
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:instagram-post(Instagram 帖子)
来源仓库:https://github.com/publora/skills
仓库路径:skills/instagram-post
安装命令:
npx skills add https://github.com/publora/skills --skill instagram-post
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/publora/skills --skill instagram-post

简介

instagram-post 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合围绕项目状态和变更进行整理。

  • 适用于开发流程管理、代码审查支持或团队协作事项跟踪等场景。
  • 通过 npx skills add 命令安装,需确认权限范围和是否触发联网或文件读写操作。
  • 建议结合原始 README 核验具体用法,并检查仓库维护状态与安全性。
  • 使用前应评估是否会执行命令或访问外部资源,避免意外行为。

SKILL.md

Instagram Post

Create and schedule Instagram posts using the Publora MCP server. Supports image posts, carousels (2-10 images), Reels, and Stories. Requires an Instagram Business account.

Prerequisites

Plans: Free Starter (15 posts/month), Pro, Premium

Getting Started

  1. Create account at publora.com/register (free)
  2. Convert to Business account in Instagram settings (Personal and Creator accounts are NOT supported by the API)
  3. Connect Instagram via OAuth in Publora Dashboard
  4. Get API key at publora.com/settings/api
  5. Configure MCP in Claude Desktop (~/.claude/claude_desktop_config.json):
{
  "mcpServers": {
    "publora": {
      "type": "http",
      "url": "https://mcp.publora.com",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

REST API Fallback

If the MCP server is unavailable or returns errors, use the REST API directly:

Base URL: https://api.publora.com/api/v1

Authentication: Use x-publora-key header (NOT Authorization: Bearer):

# Get your connected platforms
curl -X GET "https://api.publora.com/api/v1/platform-connections" \
  -H "x-publora-key: sk_your_api_key"

# Create a post
curl -X POST "https://api.publora.com/api/v1/create-post" \
  -H "x-publora-key: sk_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "platforms": ["instagram-11223344"],
    "content": "Your caption here #hashtag",
    "scheduledTime": "2026-03-25T10:00:00Z"
  }'

Platform ID Format: instagram-{id} where {id} is from /platform-connections response.

Example IDs: instagram-11223344, instagram-55667788

📖 Full API documentation: docs.publora.com

Plan Limits

PlanPosts/monthPrice
Starter15Free
Pro100/account$2.99/account/month
Premium500/account$9.99/account/month

Platform Limits (API vs Native App)

These limits are specific to the Instagram Graph API and differ from native app limits:

Images

FeatureAPI Limit
FormatsJPEG only (PNG is NOT supported and will fail!)
Max file size8 MB
Carousel images2-10 (native app allows 20)
Aspect ratios4:5 (portrait) to 1.91:1 (landscape)

Videos

FeatureReelsStoriesCarousel Videos
Max duration15 minutes (only 5-90s eligible for Reels tab)60 seconds60 seconds
Min duration3 seconds3 seconds3 seconds
Max file size300 MB100 MB300 MB
FormatsMP4, MOVMP4, MOVMP4, MOV

Captions

FeatureLimit
Caption length2,200 characters
Visible before "more"First 125 characters
Hashtags30 per post (included in caption)

Rate Limits

  • 50 posts per 24 hours (some accounts report 25)

Available Tools

create_post

Create a new Instagram post.

Parameters:

  • platforms: Array with your Instagram connection ID (e.g., ["instagram-11223344"])
  • content: Caption text (up to 2,200 characters)
  • scheduledTime: ISO 8601 datetime (required - for immediate posting, use current time + 1 minute)

get_upload_url

Get presigned URL for media uploads.

Parameters:

  • postGroupId: Post ID to attach media to
  • fileName: File name (e.g., "photo.jpg")
  • contentType: Must be image/jpeg for images, video/mp4 for video
  • type: "image" or "video"

list_posts / update_post / delete_post

Manage scheduled and draft posts.

Video Type Settings (via REST API)

Control how videos are published via platformSettings:

{
  "platformSettings": {
    "instagram": {
      "videoType": "REELS"
    }
  }
}
SettingValuesDefaultDescription
videoType"REELS", "STORIES""REELS"Determines how videos are published

Note: platformSettings is not available via MCP - use REST API for video type control.

Examples

Single Image Post

Post this to Instagram:
"Morning coffee and code. Best way to start the day. #devlife #coding"

[Attach JPEG image]

Important: Image must be JPEG format. PNG will be rejected.

Carousel Post

Create an Instagram carousel with these 5 product screenshots.
Caption: "Our app evolution over 6 months. Swipe to see the journey! #buildinpublic"

Note: Requires 2-10 JPEG images. Cannot mix images and videos in carousels.

Reel

Post this video as a Reel:
"60-second tutorial on our new feature. #tutorial #app"

Videos default to Reels. Set videoType: "STORIES" via REST API for Stories.

Story

Post this 30-second clip as a Story (will disappear after 24 hours).

Requires platformSettings.instagram.videoType: "STORIES" via REST API.

Scheduled Post

Schedule this for tomorrow at 10 AM:
"New feature announcement coming soon! Stay tuned."
[Attach JPEG image]

Important Restrictions

  1. JPEG only for images: PNG, GIF, WebP are NOT supported by the Instagram API. Convert to JPEG before uploading.
  2. Business account required: Personal and Creator accounts cannot post via API. Only Business accounts work.
  3. Media required on every post: Instagram does not support text-only posts. Every post needs at least one image or video.
  4. No mixed media in carousels: A carousel must be either all images OR all videos (via separate posts), not both.
  5. Stories disappear: Stories are ephemeral and disappear after 24 hours.
  6. Reel is the default: Videos are published as Reels by default. To post a Story, use the REST API with videoType: "STORIES".

Best Practices

Content

  1. First 125 chars matter: This is what users see before tapping "more"
  2. Hashtag strategy: Use 5-15 relevant hashtags (max 30)
  3. Image quality: Use high-quality JPEG images for best results
  4. Carousel engagement: Carousels get higher engagement than single images

Timing

  • Best times: 11 AM - 1 PM, 7 PM - 9 PM in target timezone
  • Frequency: 1-2 posts per day for growth
  • Reels boost: Reels get algorithmic preference over static images

Engagement

  • Reply to comments within the first hour
  • Use location tags when relevant
  • Cross-promote from Stories to Feed

Troubleshooting

ErrorCauseSolution
"Business account required"Using Personal/Creator accountConvert to Business account in Instagram settings
"Invalid image format"PNG or other non-JPEG formatConvert image to JPEG before uploading
"Media upload failed"File too large or wrong formatCheck: images < 8 MB JPEG, videos < 300 MB MP4
"Carousel requires 2-10 items"Wrong number of imagesEnsure 2-10 images for carousel
"Account not connected"OAuth expiredReconnect via Publora dashboard
Rate limit (429)Exceeded 50 posts/dayWait 24 hours

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.72%
按下载量换算155

Claude

30.2%
按下载量换算134

Cursor

19.19%
按下载量换算85

Gemini CLI

9.61%
按下载量换算43

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills