business-ops
Business operations: strategy, technology, growth, competitive intelligence, support, finance, HR, legal, operations, sales, productivity, product management.
Post tweets, build threads, upload media via the X API.
$ npx -y skills add notque/vexjoy-agent --skill x-api --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/x-apiContext preview
The summary Claude sees to decide when to auto-load this skill.
Post tweets, build threads, upload media via the X API.
name: x-api
description: "Post tweets, build threads, upload media via the X API."
user-invocable: false
agent: python-general-engineer
allowed-tools:
- Read
- Write
- Bash
- Glob
routing:
triggers:
- post to X
- post tweet
- tweet this
- build thread
- post thread
- twitter thread
- x api
- upload media to X
- read timeline
- search X
- search twitter
- publish to X
- publish to twitter
pairs_with:
- content-calendar
complexity: Medium
category: content-publishingThis skill orchestrates OAuth-authenticated, rate-limit-aware X/Twitter API interactions through a deterministic Python script (`scripts/x-api-poster.py`). The workflow implements a 4-phase pipeline with an explicit confirmation gate (Phase 2) to prevent accidental public posts.
**Core principles**:
---
**Goal**: Confirm credentials, content, and dependencies before any network call.
**Step 1: Check credentials**
Test credential presence by running a dry-run credential check:
python3 $HOME/.claude/scripts/x-api-poster.py post --dry-run --text "ping"
This confirms all required environment variables are set: `X_API_KEY`, `X_API_SECRET`, `X_ACCESS_TOKEN`, `X_ACCESS_SECRET`, `X_BEARER_TOKEN`.
**Step 2: Validate content length**
The script enforces a 280-character limit per tweet. Before posting, validate your content length:
For a single tweet:
python3 $HOME/.claude/scripts/x-api-poster.py post --dry-run --text "your tweet text here"
For a thread:
python3 $HOME/.claude/scripts/x-api-poster.py thread --dry-run --texts "part 1" "part 2" "part 3"
If `--dry-run` reports a length error, ask the user to shorten the text or approve auto-segmentation into a thread.
**Gate**: Dry run exits 0, content length validates, credentials confirmed present. Proceed only when gate passes.
---
**Goal**: Show the user exactly what will be posted and require explicit approval before writing.
This gate is mandatory because X posts are public and irreversible. Present a content preview in this format:
CONTENT PREVIEW ================ Tweet 1/1: "Your tweet text here" Characters: 42/280 Action: POST single tweet Approve? [yes/no]
For a thread:
CONTENT PREVIEW ================ Tweet 1/3: "First part text" Tweet 2/3: "Second part text" Tweet 3/3: "Third part text" Action: POST thread (3 tweets, chained replies) Approve? [yes/no]
**Wait for explicit user approval.** The words "yes", "approve", "go ahead", "post it", or equivalent typed in the current conversation turn constitute approval. Do not infer approval from context or prior conversation turns. Do not pass `--confirmed` before the user provides explicit typed approval.
**Gate**: User has typed an explicit approval in this conversation turn. Proceed only when gate passes.
---
**Goal**: Execute the write operation and capture tweet IDs.
Only proceed once Phase 2 approval is confirmed. Pass the `--confirmed` flag when the user approves in this turn.
**Single tweet:**
python3 $HOME/.claude/scripts/x-api-poster.py post \ --confirmed \ --text "your tweet text here"
**Thread:**
python3 $HOME/.claude/scripts/x-api-poster.py thread \ --confirmed \ --texts "part 1" "part 2" "part 3"
**Tweet with media:**
python3 $HOME/.claude/scripts/x-api-poster.py post \ --confirmed \ --text "your tweet text here" \ --media /absolute/path/to/image.jpg
**Media constraints**: Images must be <= 5 MB (JPG, PNG, GIF); videos must be <= 512 MB (MP4). Media upload is a two-step process; if either step fails, no orphaned media is left behind. Confirm the file exists and is in a supported format before posting.
Watch output for:
**OAuth mode is automatic**: Read operations use Bearer token only; write operations require full OAuth 1.0a. The script selects the mode based on operation type — do not override it.
**Gate**: Script exits 0, at least one `[tweet-posted]` line in output. Proceed only when gate passes.
---
**Goal**: Return tweet URLs, IDs, and engagement baseline to the user.
**Step 1: Collect tweet IDs from Phase 3 output**
Parse all `[tweet-posted] id=... url=...` lines from the script output.
**Step 2: Read engagement baseline (optional)**
For each posted tweet, you may optionally read initial engagement metrics via:
python3 $HOME/.claude/scripts/x-api-poster.py read-timeline --user-id me --max-results 5
**Engagement metrics have propagation delay**: X API metrics take time to populate. Reading `public_metrics` immediately after posting with 0 impressions is expected behavior, not failure. Report metrics as baseline at post time and note they will grow asynchronously.
**Step 3: Report to user**
Provide:
Essays and writing behind this toolkit live at vexjoy.com. VexJoy Agent connects plain-English requests to specialist agents, skills, and workflows. /do selects the knowledge and tools needed for your task.
Repo: notque/vexjoy-agent
Business operations: strategy, technology, growth, competitive intelligence, support, finance, HR, legal, operations, sales, productivity, product management.
Design workflows — UX copy, design systems, design critique, accessibility review, design handoff, user research synthesis. Use when writing UI copy, reviewing…
Marketing: SEO audits, campaign planning, content strategy, email sequences, competitive analysis, brand review, performance reporting.