A skill is a procedure your assistant follows: which services to call, in which order, what to drop, and how to rank what comes back. The @socialrouter/skills package ships those procedures as files your agent picks up automatically, so a run is the same one every time and the same one for every teammate. They are not a second way into the API. Every call a skill makes goes through the MCP server and its two tools, list_services and run — the skill supplies the judgment around them.

Before you install

The skills need the MCP server connected. It is hosted at one URL:
Point your client at it and sign in when it opens your browser. There is no key to create, nothing to install and no version to keep up to date, and new platforms and services show up on their own. Claude Code, Claude Desktop, Cursor, Codex CLI, VS Code and Gemini CLI each have a short setup guide, and the generic setup covers the rest. On a machine that cannot open a browser, authenticate with an API key instead — see MCP authentication. Connected but no workflow to follow? Ask in plain language and the server answers on its own. The skills below are what turn one question into a ranked list.

Install

Claude Code

Other hosts

Clone the repo at the root of your project and the right files are auto-discovered. It follows the multi-host convention of the agentskills.io spec, so the same procedure works across every host that reads SKILL.md or AGENTS.md-style files:

What’s included

Two skills, each triggering on its own kind of request. They read the same live catalogue; what differs is which signal they chase and what they do with the result.

instagram-scout

Discovery. Triggers when you ask who exists on Instagram — creators in a niche, shops in a city, accounts like a given one. Instagram has no directory, so the agent seeds from a search, a place or an account, expands for free through related_profiles, mentions and commenters, then qualifies every candidate on followers, engagement rate and contact route, and ranks them in four tiers.

linkedin-prospector

Prospecting. Triggers when you ask who to contact. The agent runs the lanes that carry a buying signal — public posts about the problem, job listings that betray a team taking it on, the people who engage with a competitor — sizes the companies behind them, enriches only the shortlist (title, public email), and quotes the signal as the opening line.

Usage

Just ask in plain language:
Both skills spend credits per record and per input, so they state what a run cost and stop rather than padding a thin list. Ask for a follower range, a geography or a time window up front and the run stays cheap.

MCP server

One URL, sign in from your client, nothing to install.

SDK

Build your own integration in TypeScript.