{"id":"ea315324-ac5e-4b45-a9b5-c8f88bcb4b5e","shortId":"hqct5C","kind":"skill","title":"reddit-launch-video","tagline":"Produce a Reddit-native 1:1 or 4:5 launch video using HyperFrames. Idiomatic Reddit feel — text-first, low-polish, sound-off, subreddit-aware. Optionally hand off to Reddit Ads to launch as a promoted post targeted to specific subreddits.","description":"# Reddit Launch Video\n\nProduce a Reddit-native launch video using [HyperFrames](https://hyperframes.heygen.com).\n\nReddit is the platform where polish *hurts* you. Ads that look like ads get downvoted, hidden, or drowned in sarcastic comments. This skill is built for the opposite — text-first, screenshot-heavy, sound-off, conversational. The closer the video looks to a normal Reddit post, the better it performs.\n\n## Usage\n\n`/reddit-launch-video https://example.com/launch` — pulls context from a launch page\n`/reddit-launch-video \"we built an open-source alternative to X\"` — short brief\n`/reddit-launch-video` — interview the user\n\n## Prerequisites\n\n```bash\nnode --version            # ≥ 22\nffmpeg -version | head -1 # ≥ 6\n```\n\n## Steps\n\n### 1. Gather product context AND subreddit context\n\nReddit only works if you know *which subreddit* the video is meant for. The same product needs different angles for r/SaaS, r/marketing, r/programming, and r/Entrepreneur.\n\nTry sources in order:\n\n**1a. Local file** — `.agents/product-marketing-context.md` or `.claude/product-marketing-context.md`.\n\n**1b. Cogny MCP context tree** — if the `cogny` MCP server is connected:\n\n```\nmcp__cogny__get_context_tree_overview\nmcp__cogny__search_context query=\"<product>\"\nmcp__cogny__read_context_node node_id=\"…\"\n```\n\nThe tree often contains the customer / community language and proof points that determine which subreddits will tolerate the post. Check it before falling back to web scraping.\n\n**1c. Public web** — `WebFetch` the URL only if 1a/1b are empty or thin.\n\nThen ask (don't skip — these can't be derived from any of 1a–1c):\n\n1. Which **2–3 subreddits** is this targeting? (be specific — `r/marketing`, not \"marketers\")\n2. What's the *honest* one-liner that subreddit would actually upvote?\n3. Are you paying to promote this, or trying to seed it organically? (Determines tone — paid can be slightly more polished, organic must be near-zero polish.)\n4. What's a real, concrete, non-marketing detail you can lead with? (a number, a screenshot of the actual product, a problem you hit, an open-source repo)\n5. Is there a counterpoint / honest tradeoff you can name? (Reddit rewards self-awareness; \"here's what it doesn't do\" outperforms \"here's why we're great\")\n\nIf the user can't answer #4, do not proceed — the video has no Reddit-shaped truth in it.\n\n### 1.5 Capture brand identity (lightly)\n\nReddit's tolerance for branding is *low* — heavy brand styling reads as \"ad\". Still, you want one or two cues so the video doesn't look generic.\n\nCapture the same kit as the other channel skills (see [`references/brand-identity.md`](references/brand-identity.md)) but **dial it down** for Reddit:\n\n- Use the brand's accent color **only** (e.g. one underline, one callout border).\n- Default background stays light (`#f7f7f5`-ish) regardless of brand background — Reddit users browse in light mode, dark cards read as ad.\n- Default font stays system / IBM Plex / Inter regardless of the brand's display font — display fonts read as marketing.\n\nIf the user pushes back (\"but our brand uses serif headlines\"), explain the tradeoff and let them decide. The composition template exposes `--accent` as a CSS variable; the rest is locked to a Reddit-native palette by design.\n\n### 2. Pick the format\n\nReddit-idiomatic video formats:\n\n| Format | When to use | Structure |\n|--------|-------------|-----------|\n| **Show HN-style** | Technical / dev audiences | \"Built X. Stack is Y. Here's the demo. Repo / link below.\" |\n| **Self-aware launch** | Most B2B/SaaS subs | \"We built X. Here's what it does. Here's what it doesn't do (yet).\" |\n| **Comparison teardown** | Niche tools | \"I tested [your tool] vs [3 competitors]. Here's what I found.\" |\n| **Problem-first** | Marketing / business subs | \"I had this exact problem. Here's how I solved it. (Yes, I built the tool.)\" |\n| **Public benchmark** | Data / dev / ML subs | \"Here are the actual numbers. Methodology: X. Code: Y.\" |\n\nPick **one**. Confirm with the user.\n\n### 3. Write the script (Reddit grammar)\n\n- **Total length**: 20–45 seconds. Reddit tolerates longer than TikTok; don't pad to fill it.\n- **Opening (0–2s)**: a flat, declarative sentence. No \"what if I told you\", no \"POV\". Reddit's tolerance for theatrics is zero.\n- **Middle**: text-on-frame describing what's actually happening, paired with a screenshot or short screen-capture clip. Show the product, don't talk about it.\n- **Honest beat**: at least one card that names a tradeoff, limitation, or \"here's what's still rough\". This card is what makes the video feel native.\n- **Close**: link, repo, or \"comments below\". Not \"tap to learn more\".\n- **No music** unless it's diegetic. No voiceover unless the user records one. Captions are the soundtrack.\n\nHand the beat sheet back to the user. **Wait for confirmation.**\n\n### 4. Scaffold the HyperFrames project\n\n```bash\nnpx -y hyperframes@latest init <product-slug>-reddit --yes\ncd <product-slug>-reddit\n```\n\nRead the generated `CLAUDE.md` once for the framework rules.\n\n### 5. Compose the video (1:1 default, 4:5 alternative)\n\nReddit's feed is dominated by **square (1:1) and 4:5 portrait**. 16:9 plays but feels like an outsider. 9:16 vertical works but reads as a TikTok crosspost.\n\nDefault to **1080×1080 (1:1)**. Use 1080×1350 (4:5) only if the script needs more vertical room for stacked screenshots.\n\nReference composition: see [`references/composition-template.html`](references/composition-template.html).\n\nReddit-specific styling rules:\n\n- **Type**: 60–90px. Smaller than TikTok — Reddit users are reading, not scrolling.\n- **Color**: muted. Off-white background, near-black text. Reddit's UI is light-mode by default; dark backgrounds read as \"ad\". A single accent color is fine; avoid neon.\n- **Motion**: minimal. A slow `y` translate or `opacity` fade is plenty. Anything kinetic reads as TikTok and gets dismissed.\n- **Type face**: stick to system fonts or IBM Plex Sans / Inter. Anything display-y reads as marketing.\n- **Screenshots > illustrations**: a real screenshot of the product UI outperforms any motion graphic. Use `npx hyperframes capture <url>` to grab the actual UI.\n\n### 6. Lint & render\n\n```bash\nnpx hyperframes lint\nnpx hyperframes render --output launch.mp4\n```\n\n### 7. Sanity check\n\n- Does it look like a normal Reddit post? Show it to the user. If the answer is \"this looks like an ad\", you've over-produced — rewrite simpler.\n- Captions readable on a phone in light mode?\n- Is there an honest / self-aware beat in it?\n- Length 20–45s?\n\n### 8. (Optional) Hand off to Reddit Ads\n\nIf the user wants to run this as a paid promoted post, Reddit's killer differentiator is **subreddit targeting**. Use it.\n\n```\nreddit_ads__tool_list_ad_accounts\nreddit_ads__tool_get_targeting_options(account_id, type='subreddits', query='<topic>')\nreddit_ads__tool_create_campaign(...)             # objective: CLICKS or CONVERSIONS, status: PAUSED\nreddit_ads__tool_create_ad_group(\n  account_id, campaign_id, name,\n  goal_type='DAILY_SPEND',\n  goal_value=<micros>,                            # 1_000_000 = $1.00\n  target_subreddits=['marketing', 'SaaS', 'Entrepreneur']\n)\n# Reddit ads wrap an existing post:\nreddit_ads__tool_create_post(title='...', url='https://...')   # returns t3_xxx\nreddit_ads__tool_create_ad(account_id, ad_group_id, name, post_id='t3_xxx')\n```\n\nNotes:\n\n- All amounts are in **micros** (1,000,000 = $1.00). Don't forget to multiply.\n- Status is `PAUSED` by default — leave it that way and let the user activate manually after reviewing.\n- Reddit charges per click/impression — set a low daily cap (~$10/day) for the first run.\n- The MCP cannot upload video creatives directly; you'll need to upload `launch.mp4` via the Reddit Ads UI, then attach the post.\n\nFor organic posting: hand the user `launch.mp4` and remind them Reddit auto-detects \"promotional\" videos — the more it looks like a regular post, the further it travels.\n\n## Output format\n\nWhen you finish, print:\n\n1. Path to the rendered MP4\n2. The beat sheet (so the user can iterate)\n3. The target subreddits and the angle chosen for each\n4. (If applicable) the Reddit Ads campaign / ad group / post / ad IDs created in PAUSED state, with the targeted subreddits listed\n\n## Common mistakes\n\n1. **Forgetting which subreddit it's for** — generic Reddit videos die. Each cut needs a specific sub.\n2. **Hype language** — \"revolutionary\", \"game-changing\", \"10x\". Reddit ratios these on sight.\n3. **Music + voiceover + motion graphics** — every layer of polish costs you authenticity. Strip it.\n4. **No tradeoff named** — Reddit's BS detector requires you to name what's *not* great about your product.\n5. **CTA = \"learn more\"** — name the next step. \"Repo:\", \"Comments below for questions\", \"Free tier link\".\n6. **Stretching a TikTok video to 1:1** — different grammar, different rendering. Build for Reddit, don't port.\n\n## Related\n\n- `/tiktok-launch-video` — same pattern for TikTok\n- `/linkedin-launch-video` — same pattern for LinkedIn\n- `/video-to-gif` — convert MP4 to a feed-ready GIF (Reddit comments support GIFs natively)\n- `/non-commodity-content` — interview-driven content that maps well to Reddit's tone","tags":["reddit","launch","video","claude","code","marketing","skills","cognyai","agent-skills","ai-agents","claude-code","claude-skills"],"capabilities":["skill","source-cognyai","skill-reddit-launch-video","topic-agent-skills","topic-ai-agents","topic-claude-code","topic-claude-skills","topic-cluade-mcp","topic-cursor","topic-geo","topic-growth-hacking","topic-llm","topic-marketing","topic-mcp","topic-seo"],"categories":["claude-code-marketing-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/cognyai/claude-code-marketing-skills/reddit-launch-video","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add cognyai/claude-code-marketing-skills","source_repo":"https://github.com/cognyai/claude-code-marketing-skills","install_from":"skills.sh"}},"qualityScore":"0.474","qualityRationale":"deterministic score 0.47 from registry signals: · indexed on github topic:agent-skills · 48 github stars · SKILL.md body (9,162 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-05-18T18:58:07.482Z","embedding":null,"createdAt":"2026-04-25T12:56:03.722Z","updatedAt":"2026-05-18T18:58:07.482Z","lastSeenAt":"2026-05-18T18:58:07.482Z","tsv":"'-1':150 '/launch':119 '/linkedin-launch-video':1440 '/non-commodity-content':1459 '/reddit-launch-video':116,126,138 '/tiktok-launch-video':1435 '/video-to-gif':1445 '0':694 '000':1148,1149,1194,1195 '1':10,11,153,280,837,838,850,851,878,879,1147,1193,1289,1337,1422,1423 '1.00':1150,1196 '1.5':414 '10/day':1228 '1080':876,877,881 '10x':1361 '1350':882 '16':856,865 '1a':189,278 '1a/1b':260 '1b':195 '1c':252,279 '2':282,293,556,1295,1354 '20':679,1072 '22':146 '2s':695 '3':283,306,621,671,1304,1367 '4':13,334,400,809,840,853,883,1314,1381 '45':680 '45s':1073 '5':14,365,833,841,854,884,1400 '6':151,1009,1416 '60':907 '7':1021 '8':1074 '9':857,864 '90px':908 'accent':468,539,944 'account':1107,1114,1136,1177 'activ':1215 'actual':304,354,659,723,1007 'ad':39,71,75,431,497,941,1045,1080,1103,1106,1109,1120,1131,1134,1157,1163,1173,1176,1179,1249,1319,1321,1324 'agents/product-marketing-context.md':192 'altern':133,842 'amount':1189 'angl':178,1310 'answer':399,1039 'anyth':961,980 'applic':1316 'ask':266 'attach':1252 'audienc':576 'authent':1378 'auto':1267 'auto-detect':1266 'avoid':948 'awar':33,379,591,1067 'b2b/saas':594 'back':248,521,802 'background':478,486,923,938 'bash':143,814,1012 'beat':744,800,1068,1297 'benchmark':651 'better':112 'black':926 'border':476 'brand':416,423,427,466,485,508,524 'brief':137 'brows':489 'bs':1387 'build':1428 'built':87,128,577,597,647 'busi':632 'callout':475 'campaign':1123,1138,1320 'cannot':1235 'cap':1227 'caption':794,1053 'captur':415,446,733,1003 'card':494,748,762 'cd':822 'chang':1360 'channel':453 'charg':1220 'check':244,1023 'chosen':1311 'claude.md':827 'claude/product-marketing-context.md':194 'click':1125 'click/impression':1222 'clip':734 'close':770 'closer':102 'code':663 'cogni':196,202,208,214,219 'color':469,918,945 'comment':83,774,1409,1455 'common':1335 'communiti':231 'comparison':612 'competitor':622 'compos':834 'composit':536,897 'concret':339 'confirm':667,808 'connect':206 'contain':228 'content':1463 'context':121,156,159,198,210,216,221 'convers':100,1127 'convert':1446 'cost':1376 'counterpoint':369 'creat':1122,1133,1165,1175,1326 'creativ':1238 'crosspost':873 'css':542 'cta':1401 'cue':438 'custom':230 'cut':1349 'daili':1143,1226 'dark':493,937 'data':652 'decid':534 'declar':698 'default':477,498,839,874,936,1206 'demo':585 'deriv':274 'describ':720 'design':555 'detail':343 'detect':1268 'detector':1388 'determin':237,319 'dev':575,653 'dial':459 'die':1347 'dieget':786 'differ':177,1424,1426 'differenti':1096 'direct':1239 'dismiss':968 'display':510,512,982 'display-i':981 'doesn':384,442,608 'domin':847 'downvot':77 'driven':1462 'drown':80 'e.g':471 'empti':262 'entrepreneur':1155 'everi':1372 'exact':637 'example.com':118 'example.com/launch':117 'exist':1160 'explain':528 'expos':538 'f7f7f5':481 'face':970 'fade':958 'fall':247 'feed':845,1451 'feed-readi':1450 'feel':21,768,860 'ffmpeg':147 'file':191 'fill':691 'fine':947 'finish':1287 'first':24,93,630,1231 'flat':697 'font':499,511,513,974 'forget':1199,1338 'format':559,564,565,1284 'found':627 'frame':719 'framework':831 'free':1413 'game':1359 'game-chang':1358 'gather':154 'generat':826 'generic':445,1344 'get':76,209,967,1111 'gif':1453,1457 'goal':1141,1145 'grab':1005 'grammar':676,1425 'graphic':999,1371 'great':393,1396 'group':1135,1180,1322 'hand':35,798,1076,1258 'happen':724 'head':149 'headlin':527 'heavi':96,426 'hidden':78 'hit':359 'hn':572 'hn-style':571 'honest':297,370,743,1064 'hurt':69 'hype':1355 'hyperfram':18,61,812,817,1002,1014,1017 'hyperframes.heygen.com':62 'ibm':502,976 'id':224,1115,1137,1139,1178,1181,1184,1325 'ident':417 'idiomat':19,562 'illustr':988 'init':819 'inter':504,979 'interview':139,1461 'interview-driven':1460 'ish':482 'iter':1303 'killer':1095 'kinet':962 'kit':449 'know':165 'languag':232,1356 'latest':818 'launch':3,15,41,51,58,124,592 'launch.mp4':1020,1245,1261 'layer':1373 'lead':346 'learn':779,1402 'least':746 'leav':1207 'length':678,1071 'let':532,1212 'light':418,480,491,933,1059 'light-mod':932 'like':74,861,1027,1043,1275 'limit':753 'liner':300 'link':587,771,1415 'linkedin':1444 'lint':1010,1015 'list':1105,1334 'll':1241 'local':190 'lock':547 'longer':684 'look':73,105,444,1026,1042,1274 'low':26,425,1225 'low-polish':25 'make':765 'manual':1216 'map':1465 'market':292,342,516,631,986,1153 'mcp':197,203,207,213,218,1234 'meant':171 'methodolog':661 'micro':1192 'middl':715 'minim':951 'mistak':1336 'ml':654 'mode':492,934,1060 'motion':950,998,1370 'mp4':1294,1447 'multipli':1201 'music':782,1368 'must':328 'mute':919 'name':374,750,1140,1182,1384,1392,1404 'nativ':9,57,552,769,1458 'near':331,925 'near-black':924 'near-zero':330 'need':176,889,1242,1350 'neon':949 'next':1406 'nich':614 'node':144,222,223 'non':341 'non-market':340 'normal':108,1029 'note':1187 'npx':815,1001,1013,1016 'number':349,660 'object':1124 'off-whit':920 'often':227 'one':299,435,472,474,666,747,793 'one-lin':298 'opac':957 'open':131,362,693 'open-sourc':130,361 'opposit':90 'option':34,1075,1113 'order':188 'organ':318,327,1256 'outperform':387,996 'output':1019,1283 'outsid':863 'over-produc':1048 'overview':212 'pad':689 'page':125 'paid':321,1090 'pair':725 'palett':553 'path':1290 'pattern':1437,1442 'paus':1129,1204,1328 'pay':309 'per':1221 'perform':114 'phone':1057 'pick':557,665 'platform':66 'play':858 'plenti':960 'plex':503,977 'point':235 'polish':27,68,326,333,1375 'port':1433 'portrait':855 'post':45,110,243,1031,1092,1161,1166,1183,1254,1257,1278,1323 'pov':707 'prerequisit':142 'print':1288 'problem':357,629,638 'problem-first':628 'proceed':403 'produc':5,53,1050 'product':155,175,355,737,994,1399 'project':813 'promot':44,311,1091,1269 'proof':234 'public':253,650 'pull':120 'push':520 'queri':217,1118 'question':1412 'r/entrepreneur':184 'r/marketing':181,290 'r/programming':182 'r/saas':180 'ratio':1363 're':392 'read':220,429,495,514,824,869,915,939,963,984 'readabl':1054 'readi':1452 'real':338,990 'record':792 'reddit':2,8,20,38,50,56,63,109,160,375,409,419,463,487,551,561,675,682,708,820,823,843,902,912,928,1030,1079,1093,1102,1108,1119,1130,1156,1162,1172,1219,1248,1265,1318,1345,1362,1385,1430,1454,1468 'reddit-idiomat':560 'reddit-launch-video':1 'reddit-n':7,55,550 'reddit-shap':408 'reddit-specif':901 'refer':896 'references/brand-identity.md':456,457 'references/composition-template.html':899,900 'regardless':483,505 'regular':1277 'relat':1434 'remind':1263 'render':1011,1018,1293,1427 'repo':364,586,772,1408 'requir':1389 'rest':545 'return':1169 'review':1218 'revolutionari':1357 'reward':376 'rewrit':1051 'room':892 'rough':760 'rule':832,905 'run':1086,1232 'saa':1154 'san':978 'saniti':1022 'sarcast':82 'scaffold':810 'scrape':251 'screen':732 'screen-captur':731 'screenshot':95,351,728,895,987,991 'screenshot-heavi':94 'script':674,888 'scroll':917 'search':215 'second':681 'see':455,898 'seed':316 'self':378,590,1066 'self-awar':377,589,1065 'sentenc':699 'serif':526 'server':204 'set':1223 'shape':410 'sheet':801,1298 'short':136,730 'show':570,735,1032 'sight':1366 'simpler':1052 'singl':943 'skill':85,454 'skill-reddit-launch-video' 'skip':269 'slight':324 'slow':953 'smaller':909 'solv':643 'sound':29,98 'sound-off':28,97 'soundtrack':797 'sourc':132,186,363 'source-cognyai' 'specif':48,289,903,1352 'spend':1144 'squar':849 'stack':579,894 'state':1329 'status':1128,1202 'stay':479,500 'step':152,1407 'stick':971 'still':432,759 'stretch':1417 'strip':1379 'structur':569 'style':428,573,904 'sub':595,633,655,1353 'subreddit':32,49,158,167,239,284,302,1098,1117,1152,1307,1333,1340 'subreddit-awar':31 'support':1456 'system':501,973 't3':1170,1185 'talk':740 'tap':777 'target':46,287,1099,1112,1151,1306,1332 'teardown':613 'technic':574 'templat':537 'test':617 'text':23,92,717,927 'text-first':22,91 'text-on-fram':716 'theatric':712 'thin':264 'tier':1414 'tiktok':686,872,911,965,1419,1439 'titl':1167 'told':704 'toler':241,421,683,710 'tone':320,1470 'tool':615,619,649,1104,1110,1121,1132,1164,1174 'topic-agent-skills' 'topic-ai-agents' 'topic-claude-code' 'topic-claude-skills' 'topic-cluade-mcp' 'topic-cursor' 'topic-geo' 'topic-growth-hacking' 'topic-llm' 'topic-marketing' 'topic-mcp' 'topic-seo' 'total':677 'tradeoff':371,530,752,1383 'translat':955 'travel':1282 'tree':199,211,226 'tri':185,314 'truth':411 'two':437 'type':906,969,1116,1142 'ui':930,995,1008,1250 'underlin':473 'unless':783,789 'upload':1236,1244 'upvot':305 'url':257,1168 'usag':115 'use':17,60,464,525,568,880,1000,1100 'user':141,396,488,519,670,791,805,913,1036,1083,1214,1260,1301 'valu':1146 'variabl':543 've':1047 'version':145,148 'vertic':866,891 'via':1246 'video':4,16,52,59,104,169,405,441,563,767,836,1237,1270,1346,1420 'voiceov':788,1369 'vs':620 'wait':806 'want':434,1084 'way':1210 'web':250,254 'webfetch':255 'well':1466 'white':922 'work':162,867 'would':303 'wrap':1158 'write':672 'x':135,578,598,662 'xxx':1171,1186 'y':581,664,816,954,983 'yes':645,821 'yet':611 'zero':332,714","prices":[{"id":"7b697bd0-c3ce-443f-8e06-41589f902e8e","listingId":"ea315324-ac5e-4b45-a9b5-c8f88bcb4b5e","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"cognyai","category":"claude-code-marketing-skills","install_from":"skills.sh"},"createdAt":"2026-04-25T12:56:03.722Z"}],"sources":[{"listingId":"ea315324-ac5e-4b45-a9b5-c8f88bcb4b5e","source":"github","sourceId":"cognyai/claude-code-marketing-skills/reddit-launch-video","sourceUrl":"https://github.com/cognyai/claude-code-marketing-skills/tree/main/skills/reddit-launch-video","isPrimary":false,"firstSeenAt":"2026-04-25T12:56:03.722Z","lastSeenAt":"2026-05-18T18:58:07.482Z"}],"details":{"listingId":"ea315324-ac5e-4b45-a9b5-c8f88bcb4b5e","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"cognyai","slug":"reddit-launch-video","github":{"repo":"cognyai/claude-code-marketing-skills","stars":48,"topics":["agent-skills","ai-agents","claude-code","claude-skills","cluade-mcp","cursor","geo","growth-hacking","llm","marketing","mcp","seo","vibe","windsurf"],"license":null,"html_url":"https://github.com/cognyai/claude-code-marketing-skills","pushed_at":"2026-05-07T20:57:53Z","description":"Marketing skills for Claude Code — SEO audits and implementation, ad analysis, ad optimization. Free skills need no account. $9/mo for live Search Console, Bing & LinkedIn data.","skill_md_sha":"30a0ceeff0a3e601b8af8852c6f27ace3d1aa6fb","skill_md_path":"skills/reddit-launch-video/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/cognyai/claude-code-marketing-skills/tree/main/skills/reddit-launch-video"},"layout":"multi","source":"github","category":"claude-code-marketing-skills","frontmatter":{"name":"reddit-launch-video","description":"Produce a Reddit-native 1:1 or 4:5 launch video using HyperFrames. Idiomatic Reddit feel — text-first, low-polish, sound-off, subreddit-aware. Optionally hand off to Reddit Ads to launch as a promoted post targeted to specific subreddits."},"skills_sh_url":"https://skills.sh/cognyai/claude-code-marketing-skills/reddit-launch-video"},"updatedAt":"2026-05-18T18:58:07.482Z"}}