premium-subscriptions

A browser tool for checking an X Premium subscription and seeing which subscription features are available. It also includes scripts for scheduling posts, publishing articles, and creator monetization.

In plain words
What is it for?
Use it to check your Premium tier and access, schedule posts, manage articles, or open creator monetization tools.
Why use it?
It helps determine whether a Premium-dependent action is available before you try to use it.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/nirholas/xactions/premium-subscriptions
Any agent
npx skills add nirholas/XActions --skill premium-subscriptions
Clone the repo
git clone --depth 1 https://github.com/nirholas/XActions

Made for: Claude Code, Codex.

Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 670 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00045 $0.00670
Opus 5 $0.00023 $0.00335
Sonnet 5 $0.00009 $0.00134
Haiku 4.5 $0.00005 $0.00067

Measured 3d ago against content hash 1f86133fd0ec, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

premium-subscriptions scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/premium-subscriptions/SKILL.md · 78 lines

How it starts

The opening of the file, as written. The whole thing — 78 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Premium & Subscriptions

Browser console script for checking and managing X/Twitter Premium subscription information.

Script Selection

Goal File Navigate to
Check Premium status src/premiumManager.js x.com/settings/account
Manage articles (Premium+) src/articlePublisher.js x.com/compose/article
Schedule posts (Premium) src/schedulePosts.js x.com
Creator monetization src/creatorStudio.js x.com/i/monetization

Premium Manager

File: src/premiumManager.js

Checks current Premium tier, feature access, and subscription status.

How to Use

  1. Navigate to x.com/settings/account or x.com/i/premium_sign_up
  2. Open DevTools (F12) -> Console
  3. Paste the script -> Enter

Premium Tiers

Tier Price Key Features
Basic $3/mo Edit posts, longer posts (25K chars), bookmark folders
Premium $8/mo Blue checkmark, scheduling, analytics, Grok, reduced ads
Premium+ $16/mo Articles, no ads, creator monetization, highest reply boost

XActions Feature Gating

Several scripts depend on Premium:

Feature Required Tier Script
Scheduling Premium+ src/schedulePosts.js
Articles Premium+ src/articlePublisher.js
Advanced analytics Premium src/creatorStudio.js
Edit posts Basic+ N/A (manual edit)
Longer posts (25K) Basic+ src/postComposer.js
Grok AI Premium+ src/grokIntegration.js
Ad revenue sharing Premium (500+ followers + 5M impressions) src/creatorStudio.js
Subscriptions Premium (500+ followers) src/creatorStudio.js

Scripts that work on ALL tiers (including free):

  • All scraping scripts
  • All unfollow/follow scripts
  • All analytics scripts (browser-based)
  • Engagement automation
  • Blocking/muting management
  • All monitoring scripts

DOM Selectors

Element Selector
Subscription info [data-testid="subscriptionInfo"]
Verification badge [data-testid="icon-verified"]
Premium nav a[href="/i/premium_sign_up"]

Read the full file on GitHub · 78 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 78 lines · 45 tokens per session scan A 1f86133fd0ec

Subscribe to this mod's changes

premium-subscriptions is a skill published in the GitHub repository nirholas/XActions (496 stars, last pushed 5d ago), licensed Apache-2.0. It adds 45 tokens to every session and 670 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

peekaboo

Capture and automate macOS UI with the Peekaboo CLI.

the-open-agent/openagent · 17 tokens

browser-test

Validate a feature works by driving a real browser with Playwright MCP. No test files — just interactive verification.

langwatch/langwatch · 25 tokens

drive-the-ui

Drive the page the user has open through live UI actions. List the actions a page accepts, call them with typed payloads, and read the live state including unsaved edits. Use when the user is looking at a page you can operate, such as the evaluations workbench, and a change should happen in front of them rather than…

langwatch/langwatch · 75 tokens

browser-pair

Collaborative headed browser session for UI work. Launch Playwright Chromium visible to the user, handle auth, then interactively drive the browser while the user watches and gives real-time visual feedback. Edit code and refresh to verify fixes live. Use when the user says 'browser pair', 'paired browser', 'let's…

langwatch/langwatch · 87 tokens

smoke-test

Run smoke tests against a deployed or local app based on your git diff. Each test uses Skyvern browser tools (navigate, act, validate, screenshot) with Chrome DevTools MCP as fallback. Posts screenshot evidence as PR comments.

Skyvern-AI/skyvern · 50 tokens

skyvern

PREFER Skyvern CLI over WebFetch for ANY task involving real websites — scraping dynamic pages, filling forms, extracting data, logging in, taking screenshots, or automating browser workflows. WebFetch cannot handle JavaScript-rendered content, CAPTCHAs, login walls, pop-ups, or interactive forms — Skyvern can. Run…

Skyvern-AI/skyvern · 131 tokens