ai-social-media-content

inferen-sh/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/inferen-sh/skills --skill ai-social-media-content
0 commentsdiscussion
summary

Generate images, videos, captions, and thumbnails for TikTok, Instagram, YouTube, and Twitter/X.

  • Supports all major platform formats: vertical 9:16 for TikTok/Reels/Shorts, 16:9 for YouTube thumbnails and Twitter, and 1:1 for Instagram Feed
  • Integrates video generation (Veo, Seedance), image creation (FLUX), text-to-speech (Kokoro), and AI avatars for talking head content
  • Includes workflow templates for trending videos, tutorials, product showcases, lifestyle content, and behind-the-s
skill.md

AI Social Media Content

Create social media content for all platforms via inference.sh CLI.

AI Social Media Content

Quick Start

Requires inference.sh CLI (infsh). Install instructions

infsh login

# Generate a TikTok-style video
infsh app run google/veo-3-1-fast --input '{
  "prompt": "POV walking through a neon-lit Tokyo street at night, vertical format 9:16, cinematic"
}'

Platform Formats

Platform Aspect Ratio Duration Resolution
TikTok 9:16 vertical 15-60s 1080x1920
Instagram Reels 9:16 vertical 15-90s 1080x1920
Instagram Feed 1:1 or 4:5 - 1080x1080
YouTube Shorts 9:16 vertical <60s 1080x1920
YouTube Thumbnail 16:9 - 1280x720
Twitter/X 16:9 or 1:1 <140s 1920x1080

Content Workflows

TikTok / Reels Video

# Generate trending-style content
infsh app run google/veo-3-1-fast --input '{
  "prompt": "Satisfying slow motion video of paint being mixed, vibrant colors swirling together, vertical 9:16, ASMR aesthetic, viral TikTok style"
}'

Instagram Carousel Images

# Generate cohesive carousel images
for i in 1 2 3 4 5; do
  infsh app run falai/flux-dev --input "{
    \"prompt\": \"Minimalist lifestyle flat lay photo $i/5, morning coffee routine, neutral tones, Instagram aesthetic, consistent style\"
  }" > "carousel_$i.json"
done

YouTube Thumbnail

# Eye-catching thumbnail
infsh app run falai/flux-dev --input '{
  "prompt": "YouTube thumbnail, shocked face emoji, bright yellow background, bold text area on right, attention-grabbing, high contrast, professional"
}'

Twitter/X Visual Post

# Generate image for tweet
infsh app run falai/flux-dev --input '{
  "prompt": "Tech infographic style image showing AI trends, modern design, data visualization aesthetic, shareable"
}'

# Post with Twitter automation
infsh app run twitter/post-tweet --input '{
  "text": "The future of AI is here. Here are the top 5 trends reshaping tech in 2024 🧵",
  "media_url": "<image-url>"
}'

Talking Head Content

# 1. Write script with Claude
infsh app run openrouter/claude-sonnet-45 --input '{
  "prompt": "Write a 30-second engaging script about productivity tips for a TikTok. Conversational, hook in first 3 seconds."
}' > script.json

# 2. Generate voiceover
infsh app run infsh/kokoro-tts --input '{
  "prompt": "<script>",
  "voice": "af_sarah"
}' > voice.json

# 3. Create AI avatar
infsh app run bytedance/omnihuman-1-5 --input '{
  "image_url": "https://your-avatar.jpg",
  "audio_url": "<voice-url>"
}'

Content Type Templates

Trending/Viral Style

infsh app run google/veo-3 --input '{
  "prompt": "Satisfying compilation style video, oddly satisfying content, smooth transitions, ASMR quality, vertical 9:16"
}'

Tutorial/How-To

infsh app run google/veo-3-1 --input '{
  "prompt": "Hands demonstrating a craft tutorial, overhead shot, clean workspace, step-by-step motion, warm lighting, vertical format"
}'

Product Showcase

infsh app run bytedance/seedance-1-5-pro --input '{
  "prompt": "Product unboxing aesthetic, sleek packaging reveal, soft lighting, premium feel, satisfying unwrap, vertical 9:16"
}'

Lifestyle/Aesthetic

infsh app run google/veo-3-1-fast --input '{
  "prompt": "Day in my life aesthetic, morning routine montage, golden hour lighting, cozy apartment, coffee steam rising, vertical format"
}'

Behind the Scenes

infsh app run google/veo-3-1-fast --input '{
  "prompt": "Behind the scenes of creative workspace, artist at work, authentic candid moments, documentary style, vertical 9:16"
}'

Caption & Hashtag Generation

# Generate engaging caption
infsh app run openrouter/claude-haiku-45 --input '{
  "prompt": "Write an engaging Instagram caption for a sunset beach photo. Include a hook, value, and call to action. Add 10 relevant hashtags."
}'

Hook Formulas

infsh app run openrouter/claude-haiku-45 --input '{
  "prompt": "Generate 5 viral TikTok hooks for a video about morning routines. Use proven patterns like: curiosity gap, bold claim, relatable struggle, before/after, or tutorial format."
}'

Multi-Platform Repurposing

Long to Short Pipeline

# Take a concept and create multiple formats
CONCEPT="productivity hack: 2-minute rule"

# TikTok vertical
infsh app run google/veo-3-1-fast --input "{
  \"prompt\": \"$CONCEPT visualization, vertical 9:16, quick cuts, text overlays style\"
}"

# Twitter square
infsh app run falai/flux-dev --input "{
  \"prompt\": \"$CONCEPT infographic, square format, minimal design, shareable\"
}"

# YouTube thumbnail
infsh app run falai/flux-dev --input "{
  \"prompt\": \"$CONCEPT thumbnail, surprised person, bold text space, 16:9\"
}"

Batch Content Creation

# Generate a week of content
TOPICS=("morning routine" "productivity tips" "coffee aesthetic" "workspace tour" "night routine")

for topic in "${TOPICS[@]}"; do
  infsh app run google/veo-3-1-fast --input "{
    \"prompt\": \"$topic content for social media, aesthetic, vertical 9:16, engaging\"
  }" > "content_${topic// /_}.json"
done

Best Practices

  1. Hook in first 3 seconds - Start with most engaging moment
  2. Vertical first - 9:16 for TikTok, Reels, Shorts
  3. Consistent aesthetic - Match brand colors and style
  4. Text-safe zones - Leave space for platform UI elements
  5. Trending audio - Add popular sounds separately
  6. Batch create - Generate multiple pieces at once

Platform-Specific Tips

TikTok

  • Fast cuts, trending sounds
  • Text overlays important
  • Hook immediately

Instagram

  • High visual quality
  • Carousel for engagement
  • Aesthetic consistency

YouTube Shorts

  • Clear value proposition
  • Subscribe CTAs work
  • Repurpose longer content

Twitter/X

  • Single striking image
  • Controversial hooks work
  • Thread potential

Related Skills

# Video generation
npx skills add inference-sh/skills@ai-video-generation

# Image generation
npx skills add inference-sh/skills@ai-image-generation

# Twitter automation
npx skills add inference-sh/skills@twitter-automation

# Text-to-speech for voiceovers
npx skills add inference-sh/skills@text-to-speech

# Full platform skill
npx skills add inference-sh/skills@infsh-cli

Browse all apps: infsh app list

how to use ai-social-media-content

How to use ai-social-media-content 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 ai-social-media-content
2

Execute installation command

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

$npx skills add https://github.com/inferen-sh/skills --skill ai-social-media-content

The skills CLI fetches ai-social-media-content from GitHub repository inferen-sh/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/ai-social-media-content

Reload or restart Cursor to activate ai-social-media-content. Access the skill through slash commands (e.g., /ai-social-media-content) 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

Task Automation & Efficiency

Automate repetitive workflows and reduce manual effort

Example

Generate reports, summarize documents, draft communications

Save 3-5 hours per week on routine tasks

Knowledge Enhancement

Learn new skills, understand complex topics, get expert guidance

Example

Explain concepts, provide examples, suggest learning resources

Accelerate learning and skill development by 2x

Quality Improvement

Enhance output quality through reviews, suggestions, and refinements

Example

Review drafts, suggest improvements, catch errors

Improve work quality by 30-40% with less effort

Implementation Guide

Prerequisites

  • Claude Desktop or compatible AI client with skill support
  • Clear understanding of task or problem to solve
  • Willingness to iterate and refine outputs

Time Estimate

15-45 minutes depending on use case complexity

Installation Steps

  1. 1.Install skill using provided installation command
  2. 2.Test with simple use case relevant to your work
  3. 3.Evaluate output quality and relevance
  4. 4.Iterate on prompts to improve results
  5. 5.Integrate into regular workflow if valuable

Common Pitfalls

  • Expecting perfect results without iteration
  • Not providing enough context in prompts
  • Using skill for tasks outside its intended scope
  • Accepting outputs without review and validation

Best Practices

✓ Do

  • +Start with clear, specific prompts
  • +Provide relevant context and constraints
  • +Review and refine all outputs before using
  • +Iterate to improve output quality
  • +Document successful prompt patterns

✗ Don't

  • Don't use without understanding skill limitations
  • Don't skip validation of outputs
  • Don't share sensitive information in prompts
  • Don't expect skill to replace human judgment

💡 Pro Tips

  • Be specific about desired format and style
  • Ask for multiple options to choose from
  • Request explanations to understand reasoning
  • Combine AI efficiency with human expertise

When to Use This

✓ Use When

Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.

✗ Avoid When

Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.

Learning Path

  1. 1Familiarize yourself with skill capabilities and limitations
  2. 2Start with low-risk, non-critical tasks
  3. 3Progress to more complex and valuable use cases
  4. 4Build expertise through regular use and experimentation

Discussion

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

Ratings

4.563 reviews
  • Ava Tandon· Dec 28, 2024

    Keeps context tight: ai-social-media-content is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Zara Verma· Dec 24, 2024

    I recommend ai-social-media-content for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Aisha Huang· Dec 24, 2024

    Solid pick for teams standardizing on skills: ai-social-media-content is focused, and the summary matches what you get after install.

  • Liam Kim· Dec 20, 2024

    ai-social-media-content is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Zara Tandon· Dec 12, 2024

    ai-social-media-content has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Dhruvi Jain· Dec 4, 2024

    ai-social-media-content has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Olivia Menon· Dec 4, 2024

    We added ai-social-media-content from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Oshnikdeep· Nov 23, 2024

    Keeps context tight: ai-social-media-content is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Liam Yang· Nov 23, 2024

    ai-social-media-content fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Arya Patel· Nov 19, 2024

    ai-social-media-content has been reliable in day-to-day use. Documentation quality is above average for community skills.

showing 1-10 of 63

1 / 7