From xactions
Compose, preview, publish, and manage long-form Articles on X/Twitter using browser console JavaScript scripts. For Premium+ users writing, formatting, and tracking articles.
How this skill is triggered — by the user, by Claude, or both
Slash command
/xactions:articles-longformThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Browser console scripts for creating and managing X/Twitter Articles (Premium+ feature).
Browser console scripts for creating and managing X/Twitter Articles (Premium+ feature).
| Goal | File | Navigate to |
|---|---|---|
| Publish an article | src/articlePublisher.js | x.com/compose/article |
| Convert thread to article | src/contentRepurposer.js | x.com/USERNAME |
| Track article performance | src/tweetPerformance.js | x.com/USERNAME |
| Generate blog outline | src/contentRepurposer.js | x.com/USERNAME |
File: src/articlePublisher.js
Assists with article composition on X's article editor.
x.com/compose/articleXActions.setTitle(text) -- Set article titleXActions.setSubtitle(text) -- Set subtitleXActions.addParagraph(text) -- Add body paragraphXActions.addHeading(text, level) -- Add heading (h2, h3)XActions.addImage(url, alt) -- Insert imageXActions.preview() -- Preview formatted articleXActions.publish() -- Publish (with confirmation prompt)| Element | Selector |
|---|---|
| Article editor | [data-testid="articleEditor"] |
| Title field | [data-testid="articleTitle"] |
| Body editor | [data-testid="articleBody"] |
| Cover image | [data-testid="articleCoverImage"] |
| Publish button | [data-testid="articlePublishButton"] |
| Save draft | [data-testid="articleSaveDraft"] |
src/tweetPerformance.js to find your best-performing threadssrc/contentRepurposer.js -> XActions.toBlog(i) to generate article outlinex.com/compose/articlesrc/articlePublisher.js to format and publishsrc/contentRepurposer.js -> XActions.toBlog(i) for keyword suggestionsx.com/USERNAME/articles/IDnpx claudepluginhub nirholas/xactionsProvides guidance and patterns for publishing articles to X/Twitter. Useful when automating social media posts or integrating article publishing workflows.
Posts text, images, videos, and long-form Markdown articles to X (Twitter) via Chrome browser automation. Handles regular posts, videos, quote tweets, and articles.
Converts a blog post URL or article into a Twitter/X thread with a strong hook, one insight per tweet, and a CTA. Optionally posts the full thread to X via Composio.