api-and-interface-desi…
Guides stable API and interface design. Use when designing APIs, module boundaries, or any public interface. Use when creating REST or GraphQL endpoints,…
Audit social media accounts (TikTok, IG, etc.): scrape profiles, calculate engagement metrics, diagnose performance drops, interpret analytics screenshots.
$ npx -y skills add kevinnft/ai-agent-skills --skill social-media-account-audit --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/social-media-account-auditContext preview
The summary Claude sees to decide when to auto-load this skill.
Audit social media accounts (TikTok, IG, etc.): scrape profiles, calculate engagement metrics, diagnose performance drops, interpret analytics screenshots.
name: social-media-account-audit description: "Audit social media accounts (TikTok, IG, etc.): scrape profiles, calculate engagement metrics, diagnose performance drops, interpret analytics screenshots." tags: [tiktok, instagram, analytics, audit, engagement, live-streaming, social-commerce] related_skills: [social-media-slideshow-video, xurl] origin: unknown source_license: see upstream language: en
1. Scrape profile data (if link provided) 2. Extract metrics from screenshots (if provided) 3. Calculate health ratios 4. Diagnose root causes 5. Deliver actionable recommendations
curl -s -L -A "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" \ "https://www.tiktok.com/@USERNAME" -o /tmp/tiktok_profile.html
grep -oP '"uniqueId":"[^"]*"|"nickname":"[^"]*"|"signature":"[^"]*"|"followerCount":\d+|"followingCount":\d+|"heartCount":\d+|"videoCount":\d+|"verified":[a-z]+' /tmp/tiktok_profile.html
import json, re
from datetime import datetime
with open('/tmp/tiktok_profile.html') as f:
html = f.read()
match = re.search(
r'<script id="__UNIVERSAL_DATA_FOR_REHYDRATION__"[^>]*>(.*?)</script>',
html, re.DOTALL
)
data = json.loads(match.group(1))
scope = data['__DEFAULT_SCOPE__']
user_info = scope['webapp.user-detail']['userInfo']
user = user_info['user']
stats = user_info['stats']
# Key fields
print(f"Username: @{user['uniqueId']}")
print(f"Bio: {user['signature']}")
print(f"Created: {datetime.fromtimestamp(int(user['createTime']))}")
print(f"Category: {user.get('commerceUserInfo', {}).get('category', 'N/A')}")
print(f"Commerce User: {user.get('commerceUserInfo', {}).get('commerceUser', False)}")
print(f"TT Seller: {user.get('ttSeller', False)}")
print(f"Verified: {user['verified']}")
print(f"Followers: {stats['followerCount']:,}")
print(f"Following: {stats['followingCount']:,}")
print(f"Likes: {stats['heartCount']:,}")
print(f"Videos: {stats['videoCount']}")# Commerce info, seller status, room ID, account settings
grep -oP '"commerceUserInfo":\{[^}]*\}|"category":"[^"]*"|"ttSeller":[a-z]+|"roomId":"[^"]*"|"privateAccount":[a-z]+|"nickNameModifyTime":\d+|"openFavorite":[a-z]+' /tmp/tiktok_profile.htmlgrep -oP '"secUid":"[^"]*"' /tmp/tiktok_profile.html | head -1
| Metric | Formula | Healthy Range | Warning | |--------|---------|---------------|---------| | **Engagement Rate** | (avg_likes / followers) × 100 | 4-8% | <3% is low | | **Likes-to-Follower Ratio** | total_likes / followers | 10-20+ | <5 = ghost followers | | **Follower:Following Ratio** | followers / following | 50:1+ for brands | <10:1 = follow-for-follow | | **Video Output** | videos / account_age_months | 30-90/month (1-3/day) | <10/month is too low | | **LIVE Retention Rate** | avg_viewers / total_viewers × 100 | 5-15% | <1% = bounce problem | | **LIVE PCU Ratio** | PCU / avg_viewers | 2-4x | >10x = spike then crash |
1. Posting frequency dropped → algorithm deprioritized 2. Content/niche changed → audience mismatch 3. Community guidelines violation/warning → shadow restriction 4. Ghost followers accumulated → engagement rate tanked 5. Increased competition in niche
[Emoji] [What you sell — specific] [Emoji] LIVE [Schedule — day +
191 attribution-first agent skills for Hermes Agent, Claude Code, Cursor — one installer, 28 categories, searchable catalog. See NOTICE for upstream attribution.
Repo: kevinnft/ai-agent-skills
Guides stable API and interface design. Use when designing APIs, module boundaries, or any public interface. Use when creating REST or GraphQL endpoints,…
Tests in real browsers. Use when building or debugging anything that runs in a browser. Use when you need to inspect the DOM, capture console errors, analyze…
Automates CI/CD pipeline setup. Use when setting up or modifying build and deployment pipelines. Use when you need to automate quality gates, configure test…
Conducts multi-axis code review. Use before merging any change. Use when reviewing code written by yourself, another agent, or a human. Use when you need to…
Simplifies code for clarity. Use when refactoring code for clarity without changing behavior. Use when code works but is harder to read, maintain, or extend…
Optimizes agent context setup. Use when starting a new session, when agent output quality degrades, when switching between tasks, or when you need to configure…