anysite-mcp-migration
Migrate anysite MCP skills, prompts, and agent instructions from v1 (individual tools like search_linkedin_users, get_linkedin_profile) to v2 (universal meta-tools execute, discover, get_page, query_cache, export_data). Automatically rewrites tool references, adds pagination/filtering/export capabilities, and validates migrated output. Use when users need to update existing skills or prompts for the new anysite MCP v2 API, convert old tool calls to execute() format, or adapt workflows to use new v2 features like server-side filtering and data export.
What this skill does
# anysite MCP Migration Assistant
Migrate your anysite MCP skills, prompts, and agent instructions from v1 (individual tools) to v2 (universal meta-tools).
## Overview
Anysite MCP v2 replaces 70+ individual tools with 5 universal meta-tools. This skill helps you:
- **Rewrite tool references** from old format (`search_linkedin_users`, `get_linkedin_profile`) to new `execute()` calls
- **Add new v2 capabilities** like pagination, server-side filtering, aggregation, and file export
- **Validate migrated output** to ensure nothing was missed
- **Preserve workflow logic** while updating only the tool interface layer
## When to Use
- User says "migrate my skill to v2", "update for new anysite API", "convert to execute format"
- User pastes a skill or prompt that contains old-style tool names (`search_*`, `get_*`, `find_*`)
- User asks how to use new anysite MCP features (pagination, cache queries, export)
---
## Migration Workflow
### Step 1: Receive Input
Ask the user for one of:
1. **A skill file path** — read the SKILL.md and any files in `references/`
2. **Pasted prompt text** — the raw text of their prompt or instruction
3. **A description** of what the skill does — you'll help build it from scratch using v2 format
### Step 2: Identify Old Tool References
Scan the input for any of these v1 tool name patterns:
| Pattern | Example |
|---------|---------|
| `search_linkedin_*` | `search_linkedin_users`, `search_linkedin_companies`, `search_linkedin_jobs`, `search_linkedin_posts` |
| `get_linkedin_*` | `get_linkedin_profile`, `get_linkedin_company`, `get_linkedin_user_posts` |
| `find_linkedin_*` | `find_linkedin_email`, `find_linkedin_user_email` |
| `google_linkedin_*` | `google_linkedin_search` |
| `search_twitter_*` / `get_twitter_*` | `search_twitter_users`, `get_twitter_user`, `get_twitter_user_tweets` |
| `search_instagram_*` / `get_instagram_*` | `search_instagram_users`, `get_instagram_user`, `get_instagram_post` |
| `search_youtube_*` / `get_youtube_*` | `search_youtube`, `get_youtube_channel`, `get_youtube_video` |
| `search_reddit_*` / `get_reddit_*` | `search_reddit`, `get_reddit_user`, `get_reddit_posts` |
| `search_yc_*` / `get_yc_*` | `search_yc_companies`, `get_yc_company` |
| `search_sec_*` / `get_sec_*` | `search_sec_filings`, `get_sec_document` |
| `scrape_webpage` | `scrape_webpage` |
| `mcp__anysite__*` | Any tool with the MCP prefix — strip prefix and match above |
Also look for references to **Crunchbase** — this source is disabled in v2 and must be removed.
### Step 3: Apply Tool Mapping
Replace each old tool call using this mapping:
#### LinkedIn
| Old tool | New execute() call |
|----------|-------------------|
| `search_linkedin_users(keywords, location, count, ...)` | `execute("linkedin", "search", "search_users", {"keywords": ..., "location": ..., "count": ...})` |
| `get_linkedin_profile(user)` | `execute("linkedin", "user", "get", {"user": ...})` |
| `get_linkedin_company(company)` | `execute("linkedin", "company", "get", {"company": ...})` |
| `search_linkedin_companies(keywords, count)` | `execute("linkedin", "search", "search_companies", {"keywords": ..., "count": ...})` |
| `search_linkedin_jobs(keywords, location, count)` | `execute("linkedin", "job_search", "search_jobs", {"keywords": ..., "count": ...})` |
| `search_linkedin_posts(keywords, count)` | `execute("linkedin", "post", "search_posts", {"keywords": ..., "count": ...})` |
| `get_linkedin_user_posts(user)` | `execute("linkedin", "post", "get_user_posts", {"user": ...})` |
| `find_linkedin_email(user)` | `execute("linkedin", "email", "find", {"user": ...})` |
| `google_linkedin_search(query, count)` | `execute("linkedin", "google", "search", {"query": ..., "count": ...})` |
#### Twitter/X
| Old tool | New execute() call |
|----------|-------------------|
| `search_twitter_users(query)` | `execute("twitter", "search", "search_users", {"query": ...})` |
| `get_twitter_user(username)` | `execute("twitter", "user", "get", {"username": ...})` |
| `get_twitter_user_tweets(username)` | `execute("twitter", "user_tweets", "get", {"username": ...})` |
#### Instagram
| Old tool | New execute() call |
|----------|-------------------|
| `search_instagram_users(query)` | `execute("instagram", "search", "search_users", {"query": ...})` |
| `get_instagram_user(username)` | `execute("instagram", "user", "get", {"username": ...})` |
| `get_instagram_post(url)` | `execute("instagram", "post", "get", {"url": ...})` |
#### YouTube
| Old tool | New execute() call |
|----------|-------------------|
| `search_youtube(query, count)` | `execute("youtube", "search", "search_videos", {"query": ..., "count": ...})` |
| `get_youtube_channel(channel_id)` | `execute("youtube", "channel", "get", {"channel_id": ...})` |
| `get_youtube_video(video_id)` | `execute("youtube", "video", "get", {"video_id": ...})` |
#### Reddit
| Old tool | New execute() call |
|----------|-------------------|
| `search_reddit(query)` | `execute("reddit", "search", "search", {"query": ...})` |
| `get_reddit_user(username)` | `execute("reddit", "user", "get", {"username": ...})` |
| `get_reddit_posts(subreddit)` | `execute("reddit", "posts", "get", {"subreddit": ...})` |
#### YC / SEC / Web
| Old tool | New execute() call |
|----------|-------------------|
| `search_yc_companies(query)` | `execute("yc", "search", "search", {"query": ...})` |
| `get_yc_company(slug)` | `execute("yc", "company", "get", {"slug": ...})` |
| `search_sec_filings(query)` | `execute("sec", "search", "search", {"query": ...})` |
| `get_sec_document(url)` | `execute("sec", "document", "get", {"url": ...})` |
| `scrape_webpage(url)` | `execute("webparser", "parse", "parse", {"url": ...})` |
### Step 4: Handle Unknown Endpoints
If the input references a tool name **not in the mapping above**:
1. Try to infer the source and category from the tool name (e.g., `get_instagram_user_friendships` → source `"instagram"`, category `"user"` or `"friendship"`)
2. **IMPORTANT: Actually call `discover()` yourself right now** — do NOT leave placeholder `{endpoint}` in the migrated output. Run `discover("{source}", "{category}")` via the MCP tool to get the real endpoint names and parameter schemas.
3. If the first category guess returns "Category not found", try alternative categories (e.g., if `"friendship"` fails, try `"user"` — the endpoint may be nested under a different category)
4. Once you get the real endpoint list from `discover()`, use the exact endpoint name and params in the migrated `execute()` call
**Example — resolving an unknown tool:**
```
Old tool: get_instagram_user_friendships(user, type, count)
→ Not in mapping table
→ You call: discover("instagram", "friendship") → error "Category not found"
→ You call: discover("instagram", "user") → returns endpoints including "user_friendships"
→ Migrated: execute("instagram", "user", "user_friendships", {"user": "...", "count": 100, "type": "followers"})
```
**Rules:**
- NEVER leave `discover()` as a placeholder instruction in the final migrated skill. The migrated output must contain exact `execute()` calls with real endpoint names and params.
- Only include `discover()` in the migrated skill text if the skill's workflow genuinely needs runtime discovery (e.g., the skill works with user-specified sources where the endpoint can't be known at migration time).
- If the mapping above covers the tool, use `execute()` directly — no discover needed.
- Run discover for ALL sources and categories used by the skill to verify that endpoint names and params in the mapping table are still accurate.
### Step 5: Add v2 Capabilities
Review the migrated skill for opportunities to add new v2 features:
#### Pagination
When the workflow processes large result sets or needs "more results":
```
Results from execute() include cache_key. If more data exists, use:
get_page(cache_key="{cache_key}", offset=10, limit=10)
```
#### Server-side Filtering
When the workflow filters results afteRelated in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.