tiktok-automation

sickn33/antigravity-awesome-skills · updated Apr 8, 2026

MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.

$npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill tiktok-automation
0 commentsdiscussion
summary

Automate TikTok content creation and profile operations through Composio's TikTok toolkit via Rube MCP.

skill.md

TikTok Automation via Rube MCP

Automate TikTok content creation and profile operations through Composio's TikTok toolkit via Rube MCP.

Prerequisites

  • Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
  • Active TikTok connection via RUBE_MANAGE_CONNECTIONS with toolkit tiktok
  • Always call RUBE_SEARCH_TOOLS first to get current tool schemas

Setup

Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.

  1. Verify Rube MCP is available by confirming RUBE_SEARCH_TOOLS responds
  2. Call RUBE_MANAGE_CONNECTIONS with toolkit tiktok
  3. If connection is not ACTIVE, follow the returned auth link to complete TikTok OAuth
  4. Confirm connection status shows ACTIVE before running any workflows

Core Workflows

1. Upload and Publish a Video

When to use: User wants to upload a video and publish it to TikTok

Tool sequence:

  1. TIKTOK_UPLOAD_VIDEO or TIKTOK_UPLOAD_VIDEOS - Upload video file(s) [Required]
  2. TIKTOK_FETCH_PUBLISH_STATUS - Check upload/processing status [Required]
  3. TIKTOK_PUBLISH_VIDEO - Publish the uploaded video [Required]

Key parameters for upload:

  • video: Video file object with s3key, mimetype, name
  • title: Video title/caption

Key parameters for publish:

  • publish_id: ID returned from upload step
  • title: Video caption text
  • privacy_level: 'PUBLIC_TO_EVERYONE', 'MUTUAL_FOLLOW_FRIENDS', 'FOLLOWER_OF_CREATOR', 'SELF_ONLY'
  • disable_duet: Disable duet feature
  • disable_stitch: Disable stitch feature
  • disable_comment: Disable comments

Pitfalls:

  • Video upload and publish are TWO separate steps; upload first, then publish
  • After upload, poll FETCH_PUBLISH_STATUS until processing is complete before publishing
  • Video must meet TikTok requirements: MP4/WebM format, max 10 minutes, max 4GB
  • Caption/title has character limits; check current TikTok guidelines
  • Privacy level strings are case-sensitive and must match exactly
  • Processing may take 30-120 seconds depending on video size

2. Post a Photo

When to use: User wants to post a photo to TikTok

Tool sequence:

  1. TIKTOK_POST_PHOTO - Upload and post a photo [Required]
  2. TIKTOK_FETCH_PUBLISH_STATUS - Check processing status [Optional]

Key parameters:

  • photo: Photo file object with s3key, mimetype, name
  • title: Photo caption text
  • privacy_level: Privacy setting for the post

Pitfalls:

  • Photo posts are a newer TikTok feature; availability may vary by account type
  • Supported formats: JPEG, PNG, WebP
  • Image size and dimension limits apply; check current TikTok guidelines

3. List and Manage Videos

When to use: User wants to view their published videos

Tool sequence:

  1. TIKTOK_LIST_VIDEOS - List user's published videos [Required]

Key parameters:

  • max_count: Number of videos to return per page
  • cursor: Pagination cursor for next page

Pitfalls:

  • Only returns the authenticated user's own videos
  • Response includes video metadata: id, title, create_time, share_url, duration, etc.
  • Pagination uses cursor-based approach; check for has_more and cursor in response
  • Recently published videos may not appear immediately in the list

4. View User Profile and Stats

When to use: User wants to check their TikTok profile info or account statistics

Tool sequence:

  1. TIKTOK_GET_USER_PROFILE - Get full profile information [Required]
  2. TIKTOK_GET_USER_STATS - Get account statistics [Optional]
  3. TIKTOK_GET_USER_BASIC_INFO - Get basic user info [Alternative]

Key parameters: (no required parameters; returns data for authenticated user)

Pitfalls:

  • Profile data is for the authenticated user only; cannot view other users' profiles
  • Stats include follower count, following count, video count, likes received
  • GET_USER_PROFILE returns more details than GET_USER_BASIC_INFO
  • Stats may have slight delays; not real-time

5. Check Publish Status

When to use: User wants to check the status of a content upload or publish operation

Tool sequence:

  1. TIKTOK_FETCH_PUBLISH_STATUS - Poll for status updates [Required]

Key parameters:

  • publish_id: The publish ID from a previous upload/publish operation

Pitfalls:

  • Status values include processing, success, and failure states
  • Poll at reasonable intervals (5-10 seconds) to avoid rate limits
  • Failed publishes include error details in the response
  • Content moderation may cause delays or rejections after processing

Common Patterns

Video Publish Flow

1. Upload video via TIKTOK_UPLOAD_VIDEO -> get publish_id
2. Poll TIKTOK_FETCH_PUBLISH_STATUS with publish_id until complete
3. If status is ready, call TIKTOK_PUBLISH_VIDEO with final settings
4. Optionally poll status again to confirm publication

Pagination

  • Use cursor from previous response for next page
  • Check has_more boolean to determine if more results exist
  • max_count controls page size

Known Pitfalls

Content Requirements:

  • Videos: MP4/WebM, max 4GB, max 10 minutes
  • Photos: JPEG/PNG/WebP
  • Captions: Character limits vary by region
  • Content must comply with TikTok community guidelines

Authentication:

  • OAuth tokens have scopes; ensure video.upload and video.publish are authorized
  • Tokens expire; re-authenticate if operations fail with 401

Rate Limits:

  • TikTok API has strict rate limits per application
  • Implement exponential backoff on 429 responses
  • Upload operations have daily limits

Response Parsing:

  • Response data may be nested under data or data.data
  • Parse defensively with fallback patterns
  • Publish IDs are strings; use exactly as returned

Quick Reference

Task Tool Slug Key Params
Upload video TIKTOK_UPLOAD_VIDEO video, title
Upload multiple videos TIKTOK_UPLOAD_VIDEOS videos
Publish video TIKTOK_PUBLISH_VIDEO publish_id, title, privacy_level
Post photo TIKTOK_POST_PHOTO photo, title, privacy_level
List videos TIKTOK_LIST_VIDEOS max_count, cursor
Get profile TIKTOK_GET_USER_PROFILE (none)
Get user stats TIKTOK_GET_USER_STATS (none)
Get basic info TIKTOK_GET_USER_BASIC_INFO (none)
Check publish status TIKTOK_FETCH_PUBLISH_STATUS publish_id

When to Use

This skill is applicable to execute the workflow or actions described in the overview.

how to use tiktok-automation

How to use tiktok-automation on Cursor

AI-first code editor with Composer

1

Prerequisites

Before installing skills in Cursor, ensure your development environment meets these requirements:

  • Cursor installed and configured on your development machine
  • Node.js version 16.0+ with npm package manager (verify with node --version)
  • Active project directory or workspace where you want to add tiktok-automation
2

Execute installation command

Execute the skills CLI command in your project's root directory to begin installation:

$npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill tiktok-automation

The skills CLI fetches tiktok-automation from GitHub repository sickn33/antigravity-awesome-skills and configures it for Cursor.

3

Select Cursor when prompted

The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:

◆ Which agents do you want to install to?
│ ── Universal (.agents/skills) ── always included ────
│ • Amp
│ • Antigravity
│ • Cline
│ • Codex
│ ●Cursor(selected)
│ • Cursor
│ • Windsurf
4

Verify installation

Confirm successful installation by checking the skill directory location:

.cursor/skills/tiktok-automation

Reload or restart Cursor to activate tiktok-automation. Access the skill through slash commands (e.g., /tiktok-automation) or your agent's skill management interface.

Security & Verification Notice

We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.

Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.

List & Monetize Your Skill

Submit your Claude Code skill and start earning

GET_STARTED →

Use Cases

User Story & Requirements Generation

Create detailed user stories, acceptance criteria, and feature specs

Example

Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios

Reduce spec writing time by 50%, ensure comprehensive coverage

Competitive Analysis

Research competitors, compare features, identify gaps

Example

Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities

Complete competitive research in 2 hours instead of 2 days

Roadmap Prioritization

Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs

Example

Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale

Make data-driven prioritization decisions faster

Stakeholder Communication

Draft PRDs, status updates, and stakeholder presentations

Example

Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement

Save 3-5 hours/week on communication overhead

Implementation Guide

Prerequisites

  • Claude Desktop or compatible AI client
  • Access to product documentation and roadmap tools (Jira, Notion, etc.)
  • Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
  • Stakeholder contact information and communication channels

Time Estimate

30-60 minutes to see productivity improvements

Installation Steps

  1. 1.Install product management skill
  2. 2.Start with user story generation for known feature
  3. 3.Progress to competitive analysis: research 2-3 competitors
  4. 4.Use for roadmap prioritization: apply RICE/ICE scoring
  5. 5.Draft stakeholder communications and refine based on feedback
  6. 6.Build template library for recurring PM tasks
  7. 7.Share effective prompts with product team

Common Pitfalls

  • Not validating competitive research—verify facts before sharing
  • Accepting user stories without involving engineering team
  • Over-relying on frameworks without qualitative judgment
  • Not customizing outputs to company culture and communication style
  • Skipping stakeholder validation of generated requirements

Best Practices

✓ Do

  • +Validate research and competitive analysis with real data
  • +Collaborate with engineering when generating technical requirements
  • +Customize frameworks and templates to your company context
  • +Use skill for first drafts, refine with stakeholder input
  • +Document successful prompt patterns for PM tasks
  • +Combine AI efficiency with human judgment and intuition

✗ Don't

  • Don't publish competitive analysis without fact-checking
  • Don't finalize user stories without engineering review
  • Don't make prioritization decisions solely on AI scoring
  • Don't skip customer validation of generated requirements
  • Don't ignore company-specific context and culture

💡 Pro Tips

  • Provide context: company goals, constraints, customer feedback
  • Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
  • Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
  • Use skill for 70% generation + 30% customization to company needs

When to Use This

✓ Use When

Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.

✗ Avoid When

Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.

Learning Path

  1. 1Basic: user stories, feature specs, status updates
  2. 2Intermediate: competitive analysis, prioritization frameworks, PRDs
  3. 3Advanced: product strategy, go-to-market planning, OKR setting
  4. 4Expert: product vision, market positioning, business model innovation

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.538 reviews
  • Kaira Reddy· Dec 16, 2024

    tiktok-automation has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Nikhil Jackson· Dec 12, 2024

    Keeps context tight: tiktok-automation is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Valentina Tandon· Dec 12, 2024

    We added tiktok-automation from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Pratham Ware· Dec 4, 2024

    tiktok-automation reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Hana Liu· Dec 4, 2024

    Solid pick for teams standardizing on skills: tiktok-automation is focused, and the summary matches what you get after install.

  • Sakshi Patil· Nov 23, 2024

    I recommend tiktok-automation for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Advait Harris· Nov 23, 2024

    We added tiktok-automation from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Kaira Harris· Nov 7, 2024

    tiktok-automation fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Isabella Robinson· Nov 3, 2024

    Solid pick for teams standardizing on skills: tiktok-automation is focused, and the summary matches what you get after install.

  • Aarav Park· Oct 26, 2024

    We added tiktok-automation from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

showing 1-10 of 38

1 / 4