skills/claude-ecosystem-promoter/SKILL.md
Marketing and promotion specialist for Claude ecosystem technology - MCP servers, skills, plugins, and agents. Expert in community engagement, registry submissions, content marketing, and developer relations. Activate on 'promote MCP', 'share skill', 'market plugin', 'launch agent', 'developer marketing', 'MCP registry'. NOT for creating MCPs/skills (use agent-creator), general marketing (use content-marketer), or SEO optimization (use seo-visibility-expert).
npx skillsauth add curiositech/windags-skills claude-ecosystem-promoterInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Marketing specialist for Claude ecosystem technology. Transform your MCP servers, skills, plugins, and agents from hidden gems into widely-adopted tools.
Given: (Budget: low/med/high, Target: devs/business/general, Urgency: days/weeks/months)
IF Budget=low AND Target=devs:
→ Official MCP Registry + r/ClaudeAI + GitHub awesome lists
IF Budget=low AND Target=business:
→ LinkedIn + dev.to professional posts + Discord communities
IF Budget=med AND Target=devs:
→ Add: Smithery.ai + YouTube demos + Twitter threads
IF Budget=med AND Target=business:
→ Add: Medium articles + newsletter outreach + HackerNews
IF Budget=high:
→ Full multi-channel: All above + influencer outreach + paid communities
IF Urgency=days:
→ Reddit + Twitter + Discord (immediate reach)
IF Urgency=weeks:
→ Add: Registry submissions + dev.to articles
IF Urgency=months:
→ Add: SEO content + awesome list building + newsletter campaigns
IF Tool complexity = simple:
→ GIF demo + 2-minute video + Twitter thread
IF Tool complexity = moderate:
→ 5-minute tutorial + dev.to walkthrough + Reddit showcase
IF Tool complexity = advanced:
→ YouTube deep-dive + documentation site + multi-part series
IF Audience = technical:
→ Code samples + GitHub integration + technical blogs
IF Audience = business:
→ ROI examples + case studies + professional platforms
IF Tool type = MCP server:
→ Installation demo + Claude config examples + registry submissions
IF Tool type = skill:
→ Usage examples + workflow integration + skills directory
Symptoms: Tool gets 5-10 stars, no community engagement, forgotten in weeks Diagnosis: Posted once to one channel, never followed up Fix:
Symptoms: Downvoted posts, community backlash, banned from subreddits Diagnosis: Same promotional content posted to 10+ places simultaneously Fix:
Symptoms: GitHub issues asking "how to install?", high bounce rate from repos Diagnosis: README lacks clear installation, no demo video, poor examples Fix:
Symptoms: Tool not discoverable in MCP clients, low adoption despite quality Diagnosis: Never submitted to official registries, only posted on social media Fix:
Symptoms: Reddit post gets 3 upvotes, tweet gets 2 likes, no traction Diagnosis: Posted Friday evening or during major tech events Fix:
Scenario: Developer built MCP server connecting Claude to Notion API
Day -7 Pre-Launch:
Launch Day Decision Points:
Execution:
Results Week 1: 127 GitHub stars, 45 Reddit upvotes, 2.3K tweet views, featured in PulseMCP newsletter
Expert vs Novice:
Scenario: Business user created Claude skill for automated email responses
Decision Process:
Content Strategy:
Results: 45 LinkedIn shares, Medium article featured in AI newsletter, 2 enterprise inquiries
Launch Readiness Checklist:
Do NOT use this skill for:
agent-creator insteadcontent-marketer insteadseo-visibility-expert insteadtechnical-writer insteadDelegate when:
data-ai
license: Apache-2.0 NOT for unrelated tasks outside this domain.
development
Use when designing caching strategies (cache-aside, write-through, write-behind), implementing distributed locks, building rate limiters, leaderboards, real-time streams (XADD/consumer groups), pub/sub, or tuning eviction policies. Triggers: thundering-herd on cache miss, dogpile on key expiry, Redlock vs SET-NX-PX choice, sliding-window rate limiter, hot-key on a single cluster slot, big-key blowup, MULTI/EXEC across slots, KEYS in production. NOT for Redis Cluster operations/admin (different domain), embedded KV (SQLite, leveldb), in-process LRU caches, or Memcached.
tools
Drawing the `'use client'` boundary correctly in React Server Components apps (Next.js App Router, RSC frameworks) — leaf-pushing, slot composition, serialization rules, and environment poisoning prevention. Grounded in react.dev and Next.js 16 docs.
development
Use when designing rate limiting for an API, choosing between token bucket / sliding window / leaky bucket / fixed window, implementing it in Redis, deciding edge (Cloudflare/Upstash) vs origin enforcement, sizing per-user vs per-IP vs per-endpoint quotas, returning the right 429 response with Retry-After, or fixing the boundary-burst bug in fixed-window limiters. Triggers: 429 too many requests, INCR + EXPIRE, ZADD + ZREMRANGEBYSCORE + ZCARD, X-RateLimit-Remaining header, Cloudflare WAF rate limiting rules, Upstash @upstash/ratelimit, leaky bucket shaping vs policing, distributed rate limiter consistency. NOT for DDoS mitigation specifically (different scale), CAPTCHA / bot management, full WAF design, or per-user quota billing.