Overview

https://youtu.be/A_TyFViXieQ

Note - you’d probably want to edit the brand voice + tweet generation instructions to make the tweets more useable. This is an example workflow, a lot of the work will be in the prompting!!

Repo:

The entire system consists of Claude Code skills — markdown-based workflows that Claude reads and executes when a user invokes a command.

Each skill is a self-contained document that defines:

Claude follows those instructions, uses tools such as Puppeteer MCP when required, and passes information between workflow stages through structured markdown files. Human review remains part of the process and determines when content advances through the pipeline.

Screenshot 2026-06-04 at 10.10.28 PM.png


How Claude Skills Work

A skill is a folder inside .claude/skills/ containing a SKILL.md file.

When a user types a command such as /trend, Claude loads the contents of that skill file into the current session and executes the workflow described within it.

Skills communicate through files rather than function calls. Each skill writes a dated markdown artifact that becomes the input for the next stage. This makes every intermediate step visible, editable, auditable, and replayable.

.claude/
└── skills/
    ├── trend/
    │   ├── SKILL.md
    │   ├── template.md
    │   └── examples/
    ├── generate-drafts/
    ├── human-review/
    └── evaluate/