using-socials

using-socials is a skill for Claude Code from ninnettesudanese653/claude-plugins. It costs 57 tokens per session (1,468 once invoked), scanned A, a copy of using-socials, MIT.

A guide for using a Socials browser extension with X, LinkedIn, Reddit, and YouTube. It covers reading feeds, inspecting posts, drafting or publishing replies, choosing personas, and controlling the browser.

In plain words
What is it for?
Use it when you need to read feeds, inspect conversations, draft or post replies, list writing personas, or operate the Socials browser connection.
Why use it?
It provides a defined process for checking access and opening the correct browser tab before working with social-media content.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the socials plugin — 9 skills shipped together

Good fit Use it when you need to read feeds, inspect conversations, draft or post replies, list writing personas, or operate the Socials browser connection.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ninnettesudanese653/claude-plugins/using-socials
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.

Any agent
npx skills add ninnettesudanese653/claude-plugins --skill using-socials
Clone the repo
git clone --depth 1 https://github.com/ninnettesudanese653/claude-plugins

Made for: Claude Code.

Or install socials, the plugin that ships this one along with the rest of its 9 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for using-socials

README.md
[![agentmods](https://agentmods.dev/badge/skills/ninnettesudanese653/claude-plugins/using-socials.svg)](https://agentmods.dev/skills/ninnettesudanese653/claude-plugins/using-socials)
Your own site
<a href="https://agentmods.dev/skills/ninnettesudanese653/claude-plugins/using-socials"><img src="https://agentmods.dev/badge/skills/ninnettesudanese653/claude-plugins/using-socials.svg" alt="Measured on agentmods" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,468 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod 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.1 $0.00057 $0.01468
Opus 5 $0.00028 $0.00734
Sonnet 5 $0.00011 $0.00294
Haiku 4.5 $0.00006 $0.00147

Measured 7d ago against content hash d6949e0adb84, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

using-socials 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 7d 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.

Origin

This is a copy

100% identical to using-socials — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

plugins/socials/commands/using-socials/SKILL.md · 45 lines

How it starts

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

Working with Socials (MCP tools)

Follow this flow unless the user explicitly asks for something else.

1. Verify connectivity

  • Call socials_check_access first.
  • If the extension is not connected, tell the user they need a paid Socials plan (free tier does not connect), to stay signed in, and to keep the browser open with the extension loaded; do not assume tools work until access check succeeds.

2. Open the right context in the browser

  • Use socials_open_tab with a concrete URL first. That tab is pinned as the Socials agent tab: feed, reply, scroll, search, and engage run there even if the user is focused on another tab or another Chrome window—automation uses the pinned tab id, not “the focused window.” By default the tab opens in the background; use focus: true to switch to it, or socials_focus_agent_tab to bring that tab’s window forward. Additional socials_open_tab calls open in the same window as the pinned tab when possible so a new empty window does not hijack the agent workspace.
  • socials_get_agent_tab — see which tab is pinned (platform may be x, linkedin, reddit, or youtube). socials_set_agent_tab — pin an existing tab (e.g. X or YouTube already open) by tab_id from socials_get_active_tab.
  • Use socials_navigate, socials_reload_tab, or socials_scroll on the agent tab (omit tab_id unless targeting a specific tab). socials_get_active_tab is the focused tab (what the user sees), not necessarily the agent tab.
  • If platform is X: use socials_x_search first, then socials_get_feed / socials_quick_reply / (optionally) socials_engage_post on results.
  • If platform is LinkedIn: use socials_open_tab with https://www.linkedin.com/feed/ and then socials_get_feed / socials_quick_reply (optionally socials_scroll) to work with posts and replies. Use socials_linkedin_posts_search to search for posts, then socials_get_feed to read results. Use socials_linkedin_engage_post to like or repost.
  • If platform is Reddit: use socials_open_tab with the subreddit URL and then socials_get_feed / socials_quick_reply (optionally socials_scroll) to work with posts.
  • If the user wants YouTube: use socials_open_tab with https://www.youtube.com/ (home), a watch URL, or search results https://www.youtube.com/results?search_query=... where the query value is URL-encoded (same idea as encodeURIComponent). Refine search with socials_navigate on the agent tab. To apply filters (Type/Duration/Upload date/Features/Prioritize), use socials_apply_search_filters with platform: "youtube" and filter labels. Read search cards with socials_get_page_content; on watch pages use socials_get_page_content for metadata + comments (each has commentId — the YouTube lc token). To reply to a YouTube comment, use socials_quick_reply with post_id set to that commentId. socials_get_feed is not used for YouTube.

Read the full file on GitHub · 45 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. 7d ago First seen · 45 lines · 57 tokens per session scan A d6949e0adb84

Subscribe to this mod's changes

using-socials is a skill published in the GitHub repository ninnettesudanese653/claude-plugins (1 stars, last pushed 2d ago), licensed MIT. It adds 57 tokens to every session and 1,468 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to using-socials, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

hive.browser-automation

Required before any hive-browser CLI command. The browser is driven from the terminal by running hive-browser ... --json via terminalexec — not via MCP tools. Teaches the browser lifecycle rules (the bridge attaches to the USER'S running Chrome — never kill or launch browser processes; timeouts are transport issues…

aden-hive/hive · 142 tokens

hive.linkedin-automation

Read before automating LinkedIn with browser tools. LinkedIn combines shadow DOM (#interop-outlet), strict Trusted Types CSP that silently drops innerHTML, Lexical composer, native beforeunload dialogs that hang the bridge, and aggressive spam filters — each has bitten us at least once. Verified flows for profile…

aden-hive/hive · 99 tokens

hive.x-automation

Read before automating X / Twitter with browser tools. Verified flows for post, reply, delete, search-and-engage, plus the Draft.js compose quirks that silently disable the send button. Includes the daily-reply and job-market-reply playbooks. Requires hive.browser-automation for the underlying screenshot + coordinate…

aden-hive/hive · 81 tokens

hive.slack-notifications-setup

Set up a Slack notification channel (Sentinel) for a colony by driving the browser — reuse or create the "Hive Sentinel" Slack app from a JSON manifest, install it, capture the bot + app tokens, create/select the channel via the Slack API, and turn Sentinel on so the colony can ping the user on Slack and accept…

aden-hive/hive · 136 tokens

browser-edge-cases

SOP for debugging browser automation failures on complex websites. Use when browser tools fail on specific sites like LinkedIn, Twitter/X, SPAs, or sites with Shadow DOM.

aden-hive/hive · 40 tokens

shogun-screenshot

A screenshot tool for getting images from a computer or web page and then cropping, resizing, or masking sensitive information. Playwright is a browser-automation tool used here to capture web pages.

yohey-w/multi-agent-shogun · 149 tokens