Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

indie-app-marketing-pipeline独立应用营销渠道

Agent Skill

indie-app-marketing-pipeline 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,256

周安装

133

GitHub Stars

公开资料未说明

下载量

1,043
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:indie-app-marketing-pipeline(独立应用营销渠道)
来源仓库:https://github.com/zakmcintyre/indie-app-marketing-pipeline
安装命令:
openclaw skills install indie-app-marketing-pipeline
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install indie-app-marketing-pipeline

简介

为独立 iOS 开发者生成多平台社交内容排期计划。

  • 适用于 OpenClaw 中零预算产品推广与品牌叙事构建。
  • 支持 TikTok、YouTube Shorts、X/Twitter 等平台模板化产出。
  • 需人工审核内容合规性与版权素材授权情况后发布。
  • indie-app-marketing-pipeline 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
indie-app-marketing-pipeline
description
>
license
MIT
metadata
openclaw
emoji
📲
requires
bins
[node]
env
[POSTIZ_API_KEY]

Indie App Marketing Pipeline

A zero-LLM daily marketing system for indie iOS developers. Write your angles once, then a weekly planner + daily publisher handle the rest — generating platform-native copy and scheduling posts to Postiz automatically.

What the Pipeline Does

  1. Weekly Planner — reads your content bank, picks unused angles, applies

platform-specific templates, and writes a weekly-plan-YYYY-MM-DD.json file. No LLM required. Run once per week (or whenever you add new angles).

  1. Daily Publisher — runs each morning (cron at 7 AM), reads that day's entries

from the weekly plan, and schedules them to Postiz via its public API. - Text posts (X, Facebook) are scheduled directly. - TikTok/YouTube Shorts trigger your video-gen script (or skip with --text-only).

The only time you need an LLM is to write new content bank angles when the bank runs dry.

Supported Platforms

PlatformPost typeVolume
TikTokVideo (requires separate video-gen script)3/day
YouTube ShortsVideo (reuses TikTok video)3/day
X / TwitterText tweet, 280-char trimmed2/day
FacebookText brand postMon/Wed/Fri

Architecture

content-bank.json         ← your angles (hook + texts + caption per angle)
       │
       ▼
weekly-planner.js         ← picks angles, renders templates → weekly-plan.json
       │
       ▼
weekly-plan-YYYY-MM-DD.json
       │
       ▼
daily-publisher.js        ← reads today's posts → Postiz API → live schedule
       │
       ▼
Postiz (postiz.com)       ← buffers + publishes to each platform on schedule

Template systemcontent-templates.json defines patterns per platform (hot-take, question-hook, relatable-meme, etc.). The planner cycles through patterns to avoid repetition. Variables: {hook}, {insight}, {cta}, {appName}, {appHandle}, {hashtags}.

Posting historyposting-history.json tracks which angles have been posted so the planner never repeats content until the bank is exhausted.

Setup

1. Accounts Needed

  • Postiz — self-hosted or cloud (postiz.com). Free tier works.

Connect your TikTok, YouTube, X, and Facebook accounts in the Postiz UI. Note the integration IDs for each platform.

  • Social accounts — TikTok creator, YouTube channel, X account, Facebook page.

2. Run the Setup Script

cd /path/to/your-app-marketing/
bash skills/indie-app-marketing-pipeline/scripts/setup.sh

The script will:

  • Create the directory structure (plans/, logs/, content-bank.json, etc.)
  • Prompt for your Postiz URL, API key, and platform integration IDs
  • Create a sample content bank with 10 starter angles
  • Create a .env file

3. Configure Your App

Edit config.json (created by setup.sh):

{
  "app": {
    "name": "YourAppName",
    "handle": "@YourHandle",
    "appStoreUrl": "https://apps.apple.com/app/yourapp",
    "websiteUrl": "https://yourwebsite.com",
    "topicCategory": "productivity"
  },
  "postiz": {
    "apiKey": "$POSTIZ_API_KEY",
    "integrationIds": {
      "tiktok": "your-tiktok-integration-id",
      "youtube": "your-youtube-integration-id",
      "x": "your-x-integration-id",
      "facebook": "your-facebook-integration-id"
    }
  }
}

4. Edit Your Content Bank

Fill content-bank.json with angles for your app. See assets/sample-content-bank.json for the format and references/content-bank-guide.md for strategy.

Each angle needs:

{
  "id": "unique-kebab-case-id",
  "hook": "One punchy sentence that is the hook",
  "texts": [
    "Opening line for the video script",
    "Second beat",
    "Third beat / insight",
    "Close"
  ],
  "caption": "TikTok/YouTube caption with hashtags"
}

5. Run the Weekly Planner

node scripts/weekly-planner.js --dry-run          # preview
node scripts/weekly-planner.js                    # write plan
node scripts/weekly-planner.js --week 2026-04-07  # specific start date
node scripts/weekly-planner.js --days 3           # plan just 3 days

6. Run the Daily Publisher

node scripts/daily-publisher.js --dry-run         # preview today
node scripts/daily-publisher.js                   # go live
node scripts/daily-publisher.js --text-only       # skip video, schedule text only
node scripts/daily-publisher.js --skip-past       # skip posts whose time has passed

7. Schedule the Daily Publisher (macOS cron)

# Open crontab
crontab -e

# Add line (runs at 7:00 AM daily):
0 7 * * * cd /path/to/your-app-marketing && node scripts/daily-publisher.js >> logs/cron.log 2>&1

Or use a launchd plist for more control.

Customization

Posting Schedule

Edit the VISUAL_SCHEDULE, X_SCHEDULE, and FB_SCHEDULE arrays in weekly-planner.js. Times are in EST by default — change toISOEst() to use your timezone offset.

Default schedule:

SlotPlatformTime (EST)
tiktok-1TikTok08:00
youtube-short-1YouTube08:15
tiktok-2TikTok13:00
youtube-short-2YouTube13:15
tiktok-3TikTok18:00
youtube-short-3YouTube18:15
x-1X10:30
x-2X16:00
fb-text-1Facebook12:00 (Mon/Wed/Fri)

Content Templates

Edit assets/content-templates.json to customize the copy patterns. The planner rotates through all patterns for each platform. See the template variable reference in references/platform-strategy.md.

Facebook Posts

Facebook posts come from a separate fb-brand-content-bank.json (richer, longer-form content). The weekly planner picks from this bank for Mon/Wed/Fri slots. See references/content-bank-guide.md for how to structure these.

Angles Per Day

Change ANGLES_PER_DAY (default: 3) in weekly-planner.js to post more or fewer video angles per day.

Files Reference

scripts/
  weekly-planner.js        ← generate weekly plan
  daily-publisher.js       ← schedule today's posts to Postiz
  setup.sh                 ← first-time setup

assets/
  content-templates.json   ← platform copy patterns
  sample-content-bank.json ← 10 starter angles

references/
  content-bank-guide.md    ← how to write & maintain your angle bank
  platform-strategy.md     ← platform-specific best practices

References

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

71.21%
按下载量换算743

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills