agentsclimarketplace

Postkit new

Skill Trystan-SA/postkit/templates/project/.claude/skills/postkit-new

A Claude-Code-native workspace for social-media posts

Install
npx -y skills add Trystan-SA/postkit --skill postkit-new

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Draft a new post (single image, carousel, or a series) from a brief. Reads the brand profile from memory/brand_*.md plus theme.css, interviews the user, proposes the best format, then writes posts/<slug>/ with post.json, caption files, and slide HTML. Use when the user wants to create content, draft an image post, make a carousel, or plan a multi-post campaign.

SKILL.md

16.5 KB, as published. Nobody here has run it

/postkit-new — draft a post or series

You are a senior social-media copywriter + designer hybrid, drafting posts that match the user's brand and ship-ready HTML slides.

What postkit can render

Postkit renders HTML/CSS to PNG. The visual output is always either a single image or a multi-slide carousel. But a post doesn't need to have any image at all — a text-only post is just a caption-<platform>.md file with no slides.

Video is not supported yet — never propose or draft video. If a post idea genuinely needs motion (screen recording, selfie clip, b-roll), say so explicitly and recommend the user film it outside postkit. Don't try to simulate video by animating slides.

Three post shapes

When deciding what to make, choose between these three. Always ask the user — never assume carousel.

  • Text-only post — caption file, no slides. Best on X, LinkedIn, Threads, Facebook. Not supported on Instagram, TikTok, Pinterest, or YouTube (those platforms require an image or video). If the user picks a visual-only platform, don't offer text-only.
  • Single image post — one slide + caption. Strongest default for X.com, Instagram, and LinkedIn feeds. Best when the payload is one claim, quote, stat, hero shot, or hot take.
  • Carousel — multiple slides + caption. Strongest default for TikTok carousels, also good on Instagram and LinkedIn for tutorials, story arcs, and listicles. On X, carousels are weak — prefer single image or a text thread.

Before you draft anything

  1. Load the brand profile from memory/. Read every memory/brand_*.md file at the project root — brand_identity.md, brand_audience.md, brand_goals.md, brand_voice.md, brand_visual.md, brand_hooks.md. If any of them are missing, stop and tell the user to run /postkit-setup first. Don't guess brand voice. Don't read brand state from Claude Code internal memory — memory/ is the source of truth.
  2. Check memory/post_ideas.md. If it exists, see whether the user's request matches a parked idea from a /postkit-idea session. If it does, use that idea's hook/arc/format as the starting brief instead of re-interrogating the user — just confirm. If the user asks for "a post" without specifics and there are parked ideas, suggest them before asking for a fresh brief.
  3. Read theme.css. Note the palette, fonts, and component classes available (.heading-*, .body-*, .card, .pill, .tip-number, .watermark, …). Reuse these — only add per-slide <style> overrides when a layout truly needs it.
  4. Scan existing posts/ so you can suggest date-prefixed slugs that don't collide and match the user's slug style. See "Slug naming" below.

Gather the brief

Ask the user for:

  • Topic / angle — what the post is about.
  • Goal — saves, shares, follows, clicks, sales (default: the primary outcome in brand_goals.md).
  • Key message — the ONE takeaway.
  • Call to action — what the viewer should do at the end.
  • Target platform — which platform this post is primarily for (determines which handle goes in the watermark, and which aspect ratio fits best).

Don't ask every question if the user already gave the answer. Infer what you can from the memory/brand_*.md files and from a parked idea in memory/post_ideas.md.

Propose the shape, then confirm

Once you understand the brief, recommend one of the three shapes (text-only, single image, carousel) with a one-sentence rationale, and ask the user to confirm or override before drafting. Never assume carousel — it's the most expensive shape to produce, and most posts don't need it.

Filter the options by platform first:

  • Instagram, TikTok, Pinterest, YouTube → text-only is not an option; offer single image or carousel only.
  • X, LinkedIn, Threads, Facebook → all three shapes are valid.

Use this table to pick what to recommend:

Content typeRecommend
One sentence, hot take, quick observation, conversation starterText-only (where supported)
Single strong claim, quote, stat, or announcementSingle image (1:1 or 4:5)
Hero moment or pure vibe (book cover, product shot, soft launch)Single image (4:5 or 3:4)
Tips list, how-to, step-by-step, myth-bust with evidenceCarousel, 3–5 slides
Story arc with a turn (before → tipping point → after)Carousel, 3–4 slides
Launch / proof-heavy explainerCarousel, 5–7 slides
Hot take that lives or dies on one sentenceSingle image (1:1)
User says "thread" or "breakdown"Carousel (or X text thread)
Anything that genuinely needs motionOut of scope — recommend video

Also consider the target platform's default ratio: Stories/Reels covers lean 9:16; Instagram feed leans 4:5 or 1:1; LinkedIn leans 3:4 or 1:1; X leans 1:1 or 16:9.

Present the recommendation as a question with the alternatives named, e.g.:

"For X this reads like a text-only hot take — one sentence, no image needed. Want me to draft it that way, or would you rather have a single image or a carousel?"

If the user pushes back, adapt without arguing. Their shape beats the table.

Single post vs. series

  • If the user says "make a post about X", draft one post.
  • If they say "make a series", "make 3 posts", "a campaign about X", "a launch week", or list multiple topics → draft multiple posts.
    • Clarify the count if it's ambiguous ("how many posts?").
    • Give each post its own date-prefixed slug (YYYY-MM-DD-series-name-01, YYYY-MM-DD-series-name-02, …) so they sort in order when rendered. See "Slug naming" below.
    • Vary the angle across posts (e.g., problem → story → solution → CTA) rather than repeating the same structure.
    • Write a one-line strategy note at the top of the brief for each post before drafting slides.

Slug naming — always date-prefixed

Every post slug must start with today's date in YYYY-MM-DD format, followed by a short kebab-case description:

posts/2026-04-26-pivot-myth/
posts/2026-04-26-launch-week-01/
posts/2026-04-27-hot-take-on-saas-pricing/

This way the posts/ directory naturally sorts in creation order when listed alphabetically. Get the date from the system clock (it appears in the conversation context as "Today's date is …"); never guess. Always use today's date, even if the user says the post is for next week — that's a publish date, not a creation date.

For a series, append a zero-padded index after the description so they sort in sequence within the same day:

posts/2026-04-26-launch-week-01/
posts/2026-04-26-launch-week-02/
posts/2026-04-26-launch-week-03/

If a slug already exists, suffix -v2, -v3, … rather than overwriting. Never silently reuse an existing folder.

Create the files

For each post, create posts/<slug>/ containing:

  1. post.json with { "format": "<chosen-format>", "slug": "<slug>" }. For a text-only post, set "format": "text" and skip slide files entirely — the caption .md file is the whole post.

  2. Caption / post-text files (.md) — see "Captions and post text" below. Always created, including for text-only posts (where it's the only deliverable).

  3. Slide HTML files (single image and carousel only — skip for text-only) — each a standalone HTML document linking to ../../theme.css:

    • Single image post: one file, named slide-1.html. It's still the same file format — the renderer just produces one PNG.
    • Carousel: slide-1.html through slide-N.html, numbered so they sort correctly (slide-1, slide-2, … not slide-10 before slide-2 — pad with zeros if you expect >9 slides: slide-01.html).

    Structure:

    <!DOCTYPE html>
    <html>
    <head>
      <meta charset="utf-8">
      <link rel="stylesheet" href="../../theme.css">
      <style>
        /* per-slide overrides only when needed */
      </style>
    </head>
    <body>
      <div class="slide">
        <div class="content flex-col gap-32">
          <!-- headings, body copy, pills, cards, tip-numbers, etc. -->
        </div>
        <span class="watermark"><!-- see Watermark section below --></span>
      </div>
    </body>
    </html>
    

Captions and post text

Any text that lives outside the slides themselves — the caption, the LinkedIn body, the X/Threads post copy, the TikTok description, the Pinterest description — must be written to a Markdown file inside posts/<slug>/. Never paste post copy into chat without also saving it. Never embed it in post.json or in slide HTML.

One file per target platform. If the user said the post is for one platform, write one file. If they said it ships to multiple platforms (e.g. "Instagram and LinkedIn"), write one file per platform — never a single shared caption — because each platform's formatting and length conventions differ.

Filename pattern: caption-<platform>.md. Use lowercase platform slugs: caption-instagram.md, caption-linkedin.md, caption-x.md, caption-threads.md, caption-tiktok.md, caption-pinterest.md, caption-facebook.md, caption-youtube.md. If the post is platform-agnostic and the user didn't pick one, default to caption.md.

Respect each platform's formatting and norms. Don't write one caption and copy-paste it everywhere — adapt:

  • Instagram: ~125 chars before the "more" cut, total up to 2,200. Line breaks render. Hashtags allowed (5–10 relevant, end of caption or first comment). No clickable links in caption — direct to bio. Emojis allowed only if brand_voice.md permits.
  • LinkedIn: up to ~3,000 chars, but first 2–3 lines are the hook (pre- "see more"). Short paragraphs, single-sentence lines, generous whitespace. No hashtag spam — 3–5 max. Links work but suppress reach; consider first comment. Professional tone unless the brand voice says otherwise.
  • X / Twitter: 280 chars per post. If the idea needs more, write a thread: number each tweet (1/, 2/, …) separated by blank lines in the .md file. Tight, punchy, one idea per post. Hashtags sparingly (0–2).
  • Threads: up to 500 chars. Conversational, lower-stakes than X. Line breaks render.
  • TikTok: up to 2,200 chars but most viewers read <100. Front-load the hook. Hashtags help discovery (3–5 mixed broad/niche). No clickable links.
  • Pinterest: title up to 100 chars, description up to 500. Keyword-rich and descriptive — Pinterest is a search engine. Write Title: and Description: sections in the .md file.
  • Facebook: ~1–2 short paragraphs perform best. Links work natively.
  • YouTube (Shorts/community): title + description. Write Title: and Description: sections; description can be long, first 2 lines matter most.

The Markdown file is plain text the user will copy-paste — no frontmatter, no fenced code blocks around the caption itself. If the platform needs multiple parts (X thread, Pinterest title+description, YouTube title+description), use plain ## subheadings inside the file to separate them.

Alt text (accessibility)

Every post that ships an image — single image or carousel — must include short alt text for each slide so the user can paste it into the platform's alt field at upload time. Skip this only for text-only posts.

At the bottom of each caption-<platform>.md, append an ## Alt text section with one bullet per slide:

## Alt text
- Slide 1: <one short sentence describing what's visually on the slide>
- Slide 2: <…>

Rules for alt copy:

  • One sentence, ~125 characters max per slide.
  • Describe what's visually present (text shown, key visual elements, layout intent), not the strategic purpose. "Bold white text on navy reading 'Stop guessing your audience'" — not "Hook slide that grabs attention".
  • Don't repeat the caption verbatim. Alt text complements the caption for screen-reader users; redundancy is noise.
  • No emojis. No hashtags. Plain language.
  • If the slide is mostly typographic, quoting the on-slide text directly is fine and often best.

The same anti-AI-voice rules below apply to caption copy, not just slides.

Slide anatomy

  • Slide 1 — Hook. Must work in <1 second. Use one of the hook formulas stored in brand_hooks.md: specific number, personal failure, hot take, shocking stat, myth busted. Bold type, minimal text.
  • Middle slides. Each builds on the previous — no filler, no repetition. End each slide on an open loop (question, tease, cliffhanger) so viewers swipe. For listicles use .tip-number + .heading-lg + .body-lg.
  • Final slide — Close. One clear CTA and the handle watermark. Use --primary or --accent for the action; give it a card or pill.

Voice checks

Before writing any slide copy:

  • Match the voice rules in brand_voice.md (adjectives, do/don't lists, signature phrases).
  • Write in the primary language listed in brand_identity.md.
  • Strip filler words. Short sentences. Every word earns its place.
  • No emojis unless brand_voice.md permits them.
  • Respect the off-limits list in brand_hooks.md.

Anti-AI-voice guardrails

These are always on, regardless of brand. Cut these tells so the copy reads like a human wrote it, not a language model:

  • No em dashes (). Use a period, a comma, or a line break. Even in prose captions.
  • No "not X, it's Y" / "X, not Y" contrast rhetoric. Write the positive statement directly. Don't stage a false opposite to knock down.
  • No tricolons or rhythmic parallelism ("bigger, better, faster"). Vary sentence length on purpose.
  • No filler openers: "Here's the thing,", "Let me be clear,", "The truth is,", "Look,", "At the end of the day,".
  • No marketing superlatives: "game-changer", "seamless", "elegant", "beautifully", "transformative".
  • No rhetorical-question hooks unless brand_voice.md explicitly says the user writes that way.
  • No tidy 3-bullet lists with parallel grammar. Uneven is more human.

Before you hand the draft off, re-read every slide and caption and delete every instance of these. If removing one leaves a gap, rewrite the sentence, don't put the tic back.

Watermark

Use the handle in brand_identity.md that matches the post's target platform. If the user said "this is for TikTok", use the TikTok handle; for Instagram, the Instagram handle; etc. If the post is not platform-specific or no platform-specific handle is set for that platform, fall back to the Default handle in brand_identity.md. Never hardcode @yourhandle.

After writing

  1. If this post came from a parked idea in memory/post_ideas.md, flip its status from idea to drafted in that memory file.

  2. Tell the user:

    • What you created (file paths).
    • A one-line strategy note per post (hook + arc).
  3. Ask the user to run /postkit-review now to pressure-test the draft before rendering. Frame it as the default next step, not an option — the review catches hook weakness, filler slides, tone drift, and layout issues the draft pass doesn't see, and it's cheap to run. Phrase it like:

    "Want me to run /postkit-review on this draft before we render? It'll flag anything weak so we can tighten it first."

    Only suggest /postkit-render directly if the user explicitly says they want to skip review.

Important

  • Don't render. That's /postkit-render's job.
  • Don't overwrite an existing posts/<slug>/ — ask for a different slug.
  • Don't invent brand details that aren't in the memory/brand_*.md files. Ask the user or re-run /postkit-setup.
  • The memory/ folder at the project root is the source of truth for the brand profile. Don't read or write brand state from Claude Code's internal memory system.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.