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

tiktok-post抖音帖子

Agent Skill

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

总安装

792

周安装

34

GitHub Stars

23

下载量

277
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在需要围绕仓库状态、代码变更或协作事项进行整理时使用。
  • 可结合来源仓库和原始 README 核验具体用法,支持 Codex、Claude 等宿主环境。
  • 安装命令:npx skills add https://github.com/publora/skills --skill tiktok-post。
  • 安装前建议确认权限范围、维护状态及是否会触发联网或文件读写操作。

SKILL.md

TikTok Post

Upload and schedule videos to TikTok using the Publora MCP server. Supports privacy controls, interaction settings (comments, duet, stitch), and commercial content disclosure.

Prerequisites

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

Getting Started

  1. Create account at publora.com/register (free)
  2. Connect TikTok via OAuth in Publora Dashboard
  3. Get API key at publora.com/settings/api
  4. 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": ["tiktok-99887766"],
    "content": "Video caption here #hashtag",
    "scheduledTime": "2026-03-25T10:00:00Z",
    "platformSettings": {
      "tiktok": {
        "viewerSetting": "PUBLIC_TO_EVERYONE",
        "allowComments": true
      }
    }
  }'

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

Example IDs: tiktok-99887766, tiktok-123456789

📖 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)

Critical API limits that differ from native TikTok app:

Video Requirements

SpecificationAPI LimitNative App
Max duration10 minutes60 minutes
Min duration3 seconds3 seconds
Max file size4 GB4 GB
Min frame rate23 FPS23 FPS
FormatsMP4, MOV, WebMMP4, MOV, WebM

Caption Limits

ElementAPI LimitNative App
Caption length2,200 characters4,000 characters
HashtagsIncluded in caption countIncluded in caption count

Rate Limits

LimitValue
Posts per day15-20
Videos per minuteMax 2

Available Tools

create_post

Create a new TikTok post.

Parameters:

  • platforms: Array with your TikTok connection ID (e.g., ["tiktok-99887766"])
  • content: Video caption (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 video upload.

Parameters:

  • postGroupId: Post ID to attach video to
  • fileName: Video file name (e.g., "video.mp4")
  • contentType: video/mp4, video/quicktime, or video/webm
  • type: "video"

list_posts / update_post / delete_post

Manage scheduled and draft posts.

Platform Settings (via REST API)

TikTok has 7 platform-specific settings controlled via platformSettings:

{
  "platformSettings": {
    "tiktok": {
      "viewerSetting": "PUBLIC_TO_EVERYONE",
      "allowComments": true,
      "allowDuet": false,
      "allowStitch": false,
      "commercialContent": false,
      "brandOrganic": false,
      "brandedContent": false
    }
  }
}

Viewer Settings (Required)

ValueDescription
PUBLIC_TO_EVERYONEAnyone can view (default)
MUTUAL_FOLLOW_FRIENDSOnly mutual followers
FOLLOWER_OF_CREATOROnly your followers
SELF_ONLYOnly you (draft-like)

Interaction Settings

SettingDefaultDescription
allowCommentstrueWhether viewers can comment
allowDuetfalseWhether viewers can create Duets
allowStitchfalseWhether viewers can Stitch

Commercial Content Settings

SettingDefaultDescription
commercialContentfalseIs this commercial content?
brandOrganicfalseOrganic brand promotion
brandedContentfalsePaid partnership/sponsored

Note: If commercialContent is true, at least one of brandOrganic or brandedContent must also be true.

Note: platformSettings is not available via MCP - use REST API for these settings.

Critical Restrictions

1. Unaudited Apps = PRIVATE Only

CRITICAL: If your TikTok app hasn't passed TikTok's review process, you can ONLY post PRIVATE videos (SELF_ONLY). All other viewerSetting values will be overridden to SELF_ONLY.

To post public videos, your app must be audited by TikTok.

2. Video Only Platform

TikTok does NOT support:

  • Text-only posts
  • Image posts
  • Photo carousels

Every post must include a video.

3. Minimum 23 FPS

Videos below 23 frames per second will be rejected by TikTok.

Examples

Basic Video Post

Post this video to TikTok:
"How we built our startup in 60 seconds #startup #tech #coding"

Private Draft (Testing)

Upload this video as a private draft to TikTok (only I can see it):
"Testing new content format"

Use viewerSetting: "SELF_ONLY" for testing before making public.

Branded Content

Post this sponsored video to TikTok with proper disclosure:
"Loving this new product from @brand! #ad #sponsored"

Set commercialContent: true and brandedContent: true for paid partnerships.

Scheduled Post

Schedule this TikTok video for tomorrow at 6 PM:
"Weekend vibes incoming! #weekend #fun"

Supported Video Formats

FormatRecommendedNotes
MP4YesMost reliable
MOVYesApple format
WebMYesWeb format
AVIAccepted by PubloraMay be rejected by TikTok
MKVAccepted by PubloraMay be rejected by TikTok

Recommendation: Use MP4 for best compatibility.

Best Practices

Content

  1. Hook in first 3 seconds: Grab attention immediately
  2. Optimal length: 15-60 seconds for best engagement
  3. Trending sounds: Use trending audio when possible
  4. Hashtag strategy: 3-5 relevant hashtags

Technical

  1. Vertical video: 9:16 aspect ratio performs best
  2. High quality: At least 720p resolution
  3. 23+ FPS: Ensure smooth playback
  4. MP4 format: Most reliable format

Timing

  • Best times: 7-9 AM, 12-3 PM, 7-11 PM in target timezone
  • Frequency: 1-3 posts per day for growth
  • Consistency: Regular posting schedule helps algorithm

Troubleshooting

ErrorCauseSolution
unaudited_client_can_only_post_to_private_accountsApp not approvedSubmit app for TikTok review or use SELF_ONLY
spam_risk_too_many_postsDaily limit reachedWait 24 hours
duration_check_failedVideo too long/shortEnsure 3 seconds to 10 minutes
file_format_check_failedWrong video formatUse MP4, MOV, or WebM
"23 FPS required"Low frame rateRe-encode video at 23+ FPS
"TikTok requires selecting who can view"Missing viewerSettingAlways include viewerSetting in platformSettings

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.87%
按下载量换算105

Claude

30.71%
按下载量换算85

Cursor

17.49%
按下载量换算48

Gemini CLI

9.47%
按下载量换算26

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

未通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills