Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计提醒

instagram-content-generationInstagram 内容生成

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

8,986

周安装

386

GitHub Stars

12

下载量

3,150
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/eachlabs/skills --skill instagram-content-generation

简介

instagram-content-generation 用于辅助文档整理与改写,适合提炼结构、统一术语或检查链接完整性。

  • 适用于 README 编写、说明文优化或对外文案校对等文本处理任务。
  • 通过 npx skills add 命令安装,需确认权限范围和是否触发联网或文件读写操作。
  • 建议使用时应保留项目已有事实,避免将未确认信息写成确定结论;对外文案需注意语气克制。
  • 使用前应评估是否会执行命令或访问外部资源,避免意外行为。

SKILL.md

Instagram Content Generation

Generate engaging Instagram content using each::sense. This skill creates images and videos optimized for Instagram's various placements, formats, and visual best practices.

Features

  • Feed Posts: Square 1:1 images for maximum compatibility
  • Stories & Reels: Vertical 9:16 content for immersive full-screen experiences
  • Carousel Posts: Multiple cohesive images for storytelling
  • Quote Graphics: Typography-focused content for engagement
  • Product Showcases: E-commerce and product-focused visuals
  • Behind-the-Scenes: Authentic, candid-style content
  • Announcement Graphics: Event and launch promotional content
  • Lifestyle Flat Lays: Curated product arrangements
  • Brand Aesthetic Grid: Cohesive visual identity across posts

Quick Start

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 1:1 Instagram feed post for a coffee brand showing a latte with beautiful latte art, morning light, cozy cafe vibes"}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

Instagram Formats & Sizes

PlacementAspect RatioRecommended SizeUse Case
Feed Post1:11080x1080Standard feed posts, maximum compatibility
Feed Post4:51080x1350Vertical feed posts, more screen real estate
Stories9:161080x1920Full-screen temporary content
Reels9:161080x1920Full-screen video content
Reel Cover9:161080x1920Thumbnail for Reels
Carousel1:11080x1080Multi-image swipeable posts

Use Case Examples

1. Feed Post (1:1 Square)

Classic square format for Instagram feed with maximum compatibility across all placements.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 1:1 square Instagram feed post for a sustainable fashion brand. Show a model in casual earth-toned clothing against a natural outdoor background. Warm, authentic aesthetic with soft natural lighting. Clean composition suitable for a curated Instagram grid."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

2. Story (9:16 Vertical)

Full-screen vertical content optimized for Instagram Stories.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 9:16 Instagram Story for a yoga studio. Show a serene meditation scene with a person in lotus position, soft morning light streaming through windows, calming pastel colors. Leave safe zones at top and bottom for Instagram UI elements and swipe-up area."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

3. Reel Cover Image

Eye-catching thumbnail that represents the Reel content and encourages clicks.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 9:16 Reel cover image for a cooking tutorial. Show an appetizing finished dish (pasta with fresh basil) from above, vibrant colors, food photography style. The image should be eye-catching and make viewers want to watch the full Reel. Leave space at bottom for the Reel title overlay."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

4. Carousel Post (Multiple Images)

Create cohesive multi-image posts that tell a story or showcase multiple products.

# First carousel image - Cover slide
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 1:1 carousel image 1 of 5 for a skincare brand. This is the cover slide showing all 5 products arranged beautifully with soft pink and white aesthetic, clean minimal background, soft shadows. Premium feel."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "skincare-carousel-001",
    "mode": "max"
  }'

# Second carousel image - Product detail
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create carousel image 2 of 5. Show the cleanser product close-up with water droplets and fresh ingredients like cucumber slices. Same aesthetic and lighting as the first image."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "skincare-carousel-001",
    "mode": "max"
  }'

# Third carousel image - Another product
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create carousel image 3 of 5. Show the moisturizer with a soft texture swatch, dewy fresh feel. Maintain visual consistency with previous images."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "skincare-carousel-001",
    "mode": "max"
  }'

5. Quote Graphics

Typography-focused content that drives engagement and shares.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 1:1 Instagram quote graphic with the text: \"Success is not final, failure is not fatal: it is the courage to continue that counts.\" Use a minimalist design with elegant serif typography on a soft gradient background (light beige to warm cream). Add subtle decorative elements like thin lines or small botanical illustrations. Suitable for a motivational or business coaching account."}],

    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

6. Product Showcase Post

E-commerce focused content that highlights products in lifestyle context.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 4:5 Instagram product showcase for wireless headphones. Show the headphones being worn by a stylish person in an urban setting, walking through a modern city. Lifestyle photography style with natural lighting, premium aspirational feel. The product should be clearly visible but feel natural in the scene."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

7. Behind-the-Scenes Content

Authentic, candid-style content that builds connection with the audience.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 1:1 behind-the-scenes Instagram post for a bakery. Show a baker in the kitchen early morning, hands covered in flour, kneading dough. Warm golden lighting, authentic and candid feel - not overly polished. Capture the passion and craft of artisan baking. Documentary photography style."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

8. Announcement Graphics

Event launches, sales, and promotional announcement content.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 1:1 Instagram announcement graphic for a summer sale. Bold, eye-catching design with tropical vibes - palm leaves, bright colors (coral, turquoise, sunny yellow). Leave clear space for text overlay that will say \"SUMMER SALE - UP TO 50% OFF\". Modern, fresh, energetic aesthetic suitable for a fashion brand."}],

    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

9. Lifestyle Flat Lay

Curated overhead product arrangements popular for lifestyle and product brands.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 1:1 Instagram flat lay for a travel brand. Overhead shot of travel essentials arranged aesthetically: passport, sunglasses, straw hat, camera, map, coffee cup, and small succulent. Marble or light wood surface background. Clean, organized, Pinterest-worthy composition with soft natural lighting. Wanderlust aesthetic."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

10. Brand Aesthetic Grid

Create cohesive visuals that contribute to a unified Instagram grid aesthetic.

# First grid image
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 1:1 Instagram post for a minimalist home decor brand. Show a clean, modern living room corner with a simple plant, neutral tones (white, beige, light gray), lots of negative space. This is part of a cohesive grid aesthetic - keep colors muted and style consistent. Scandinavian interior design influence."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "home-decor-grid",
    "mode": "max"
  }'

# Second grid image - maintaining consistency
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create another 1:1 post for the same minimalist home decor brand. Show a bedroom detail - perhaps a textured throw on a bed with a small nightstand. Same color palette and aesthetic as the previous image to maintain grid cohesion."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "home-decor-grid",
    "mode": "max"
  }'

# Third grid image
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a third 1:1 post continuing the grid aesthetic. Show a close-up of a ceramic vase with dried pampas grass. Same minimalist, neutral, Scandinavian-inspired style."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "home-decor-grid",
    "mode": "max"
  }'

Best Practices

Feed Posts

  • Grid Planning: Consider how individual posts look together in your profile grid
  • Consistent Editing: Maintain consistent color grading and style across posts
  • 1:1 vs 4:5: Use 1:1 for maximum compatibility, 4:5 for more visual impact
  • Focal Point: Place key elements in the center for thumbnail cropping

Stories

  • Safe Zones: Keep important content away from top 15% and bottom 20% for UI elements
  • Vertical Thinking: Design specifically for vertical, not cropped horizontal
  • Interactive Areas: Leave space for polls, questions, and stickers
  • Bold and Clear: Content should be readable quickly

Carousels

  • Hook First: Make the first image compelling enough to encourage swiping
  • Visual Flow: Create a narrative or logical progression
  • Consistent Style: Maintain same filters, fonts, and aesthetic throughout
  • End with CTA: Use the last slide for call-to-action or summary

Reels Covers

  • Thumbnail Appeal: Design for small preview in the Reels tab
  • Clear Subject: Avoid busy backgrounds that get lost at small sizes
  • Text Readable: If using text, ensure it is legible at thumbnail size

Prompt Tips for Instagram Content

When creating Instagram content, include these details in your prompt:

  1. Format: Specify aspect ratio (1:1, 4:5, 9:16)
  2. Content Type: Feed post, Story, Reel cover, carousel slide number
  3. Brand/Niche: What type of account is this for?
  4. Aesthetic: Minimalist, bold, vintage, modern, etc.
  5. Color Palette: Specific colors or general mood (warm, cool, neutral)
  6. Composition: Flat lay, portrait, lifestyle, close-up, etc.
  7. Text Space: If you need room for captions or overlay text

Example Prompt Structure

"Create a [aspect ratio] Instagram [content type] for a [brand/niche].
Show [visual description] with [aesthetic/mood].
[Color and style preferences].
[Additional requirements like text space, grid consistency, etc.]"

Mode Selection

Ask your users before generating:

"Do you want fast & cheap, or high quality?"

ModeBest ForSpeedQuality
maxFinal content, portfolio posts, important campaignsSlowerHighest
ecoQuick drafts, content planning, A/B testing conceptsFasterGood

Multi-Turn Content Iteration

Use session_id to iterate on content and maintain visual consistency:

# Initial concept
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 1:1 Instagram post for a jewelry brand, elegant and minimal"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "jewelry-content"
  }'

# Iterate based on feedback
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Make it more luxurious, add soft bokeh background with golden tones"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "jewelry-content"
  }'

# Request Story version
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Now create a 9:16 Story version of this same visual style"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "jewelry-content"
  }'

Content Calendar Batch Generation

Generate multiple pieces of content for planning:

# Monday motivation
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 1:1 motivational Monday post for a fitness brand - energetic gym scene, morning workout vibes"}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "eco"
  }'

# Wednesday product feature
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 1:1 product showcase for the same fitness brand - protein shake in a gym bag flat lay"}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "eco"
  }'

# Friday lifestyle
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 1:1 lifestyle post for the same fitness brand - friends laughing after a workout, feel-good Friday vibes"}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "eco"
  }'

Error Handling

ErrorCauseSolution
Failed to create prediction: HTTP 422Insufficient balanceTop up at eachlabs.ai
Content policy violationProhibited contentAdjust prompt to comply with content policies
TimeoutComplex generationSet client timeout to minimum 10 minutes

Related Skills

  • each-sense - Core API documentation
  • meta-ad-creative-generation - Meta (Facebook & Instagram) ad creatives
  • product-photo-generation - E-commerce product shots
  • tiktok-ad-creative-generation - TikTok content creation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.29%
按下载量换算1,112

Claude

30.73%
按下载量换算968

Cursor

16.75%
按下载量换算528

Gemini CLI

8.81%
按下载量换算278

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills