tweet-draft-reviewerlisted
Install: claude install-skill BrianRWagner/ai-marketing-claude-code-skills
# Tweet Draft Reviewer
Paste a tweet draft and get a score out of 10, a rule-by-rule breakdown, and a rewrite if the score is below 7. Takes 30 seconds. Saves you from posting something that sounds like a chatbot wrote it.
Built on 8 voice rules distilled from real content analysis — what separates high-engagement tweets from the ones that get skimmed.
---
## How to Use
**Single draft:**
```
Review this tweet draft: [paste tweet here]
```
**Batch scan:**
```
Review all tweet drafts in my content/tweet-drafts/ folder.
```
---
## Skill Instructions (for Claude Code)
When this skill is invoked, follow these phases exactly.
---
### PHASE 1: INTAKE
Determine input mode:
**Mode A — Direct paste:** User provided draft text inline. Proceed to PHASE 2 with that text.
**Mode B — Folder scan:** User asked to review drafts folder. Run:
```bash
VAULT="${VAULT_PATH:-$(pwd)}"
find "$VAULT/content/tweet-drafts" -name "*.md" 2>/dev/null | while read f; do
if ! grep -q 'reviewed: true' "$f" 2>/dev/null; then
echo "UNREVIEWED:$f"
fi
done
```
If no vault path was given and no `content/tweet-drafts/` exists in the current directory, ask:
```
Where is your tweet drafts folder? (full path, e.g. /root/obsidian-vault/content/tweet-drafts)
```
**Mode C — Ambiguous:** No draft provided and no folder context. Ask:
```
Paste your tweet draft here, or tell me the path to your tweet-drafts folder and I'll scan it.
```
---
### PHASE 2: ANALYZE
Apply all 8 rules to the draft. For