panda-analytics

View social media analytics and insights. Use when the user wants to check post performance, engagement metrics, best posting times, follower stats, content decay, posting frequency, or any analytics data from their connected platforms.

mrpaulscrivens/nosy-pandas-skills11 installsMITSynced Aug 26

Works with

Claude CodeCursorCodex CLIGitHub CopilotGemini CLI
---
name: panda-analytics
description: View social media analytics and insights. Use when the user wants to check post performance, engagement metrics, best posting times, follower stats, content decay, posting frequency, or any analytics data from their connected platforms.
license: MIT
---

# Social Analytics

View social media analytics and insights via the Nosy Pandas API from Claude Code.

## Configuration

This skill shares the same `~/.pandas` config file as `panda-publish`. See that skill for the full setup flow.

Required values: `api_url` and `api_key`.

### Reading Configuration

```bash
# Read config values (use these instead of env vars in all curl commands)
PANDAS_API_URL="https://nosypandas.com/api"
PANDAS_API_KEY=$(grep '^api_key=' ~/.pandas 2>/dev/null | cut -d= -f2-)
```

If `~/.pandas` doesn't exist or is missing `api_key`:
1. Ask: "Paste your API key" (tell them to generate one from the dashboard under API Keys)
2. Write the values to `~/.pandas`:
```bash
cat > ~/.pandas << 'EOF'
api_url=https://nosypandas.com/api
api_key=the-pasted-key
media_folder=~/social-media
EOF
chmod 600 ~/.pandas
```

If the user pastes what looks like an API key without being asked, detect it and offer to save it to `~/.pandas`.

## Available Commands

| Command | Description |
|---------|-------------|
| Overview | Post analytics with engagement metrics (paginated) |
| Best Time | Optimal times to post based on historical performance |
| Content Decay | How engagement drops off over time |
| Daily Metrics | Day-by-day engagement stats (filterable by date range) |
| Follower Stats | Follower growth and demographics |
| Post Timeline | Engagement timeline for posts |
| Posting Frequency | How often you're posting and consistency |

## Pro Plan Gate

All 7 analytics endpoints require a Pro plan. Before displaying any analytics data, you must handle the 403 response.

When any analytics API call returns a 403 status with `{"message": "Pro plan required."}`, do the following:

1. Do NOT show the raw error or JSON response
2. Display this message exactly:

> **Analytics requires a Pro plan.**
>
> You're currently on the Basic plan. Analytics — including post performance, best posting times, follower growth, and content decay — are available on Pro.
>
> Upgrade to Pro ($79/year) from your dashboard's Billing page to unlock analytics.

3. STOP. Do not retry, do not offer workarounds, do not show empty states or dummy data.

## Overview

Post analytics with engagement metrics.

### Steps
1. Verify `~/.pandas` config has `api_url` and `api_key`
2. Make the API call
3. If 403, show the Pro Plan Gate upgrade message and stop
4. Format and display results

### API Call

```bash
curl -s "$PANDAS_API_URL/analytics" \
  -H "Authorization: Bearer $PANDAS_API_KEY" \
  -H "Accept: application/json"
```

Optional query parameters:
- `?postId=ID` — filter to a specific post
- `?page=N` — pagination (default page 1)

For paginated results, offer to fetch the next page if more data is available.

## Best Time

Optimal times to post based on historical performance.

### Steps
1. Verify `~/.pandas` config has `api_url` and `api_key`
2. Make the API call
3. If 403, show the Pro Plan Gate upgrade message and stop
4. Format and display results

### API Call

```bash
curl -s "$PANDAS_API_URL/analytics/best-time" \
  -H "Authorization: Bearer $PANDAS_API_KEY" \
  -H "Accept: application/json"
```

## Content Decay

How engagement drops off over time.

### Steps
1. Verify `~/.pandas` config has `api_url` and `api_key`
2. Make the API call
3. If 403, show the Pro Plan Gate upgrade message and stop
4. Format and display results

### API Call

```bash
curl -s "$PANDAS_API_URL/analytics/content-decay" \
  -H "Authorization: Bearer $PANDAS_API_KEY" \
  -H "Accept: application/json"
```

## Daily Metrics

Day-by-day engagement stats.

### Steps
1. Verify `~/.pandas` config has `api_url` and `api_key`
2. Make the API call
3. If 403, show the Pro Plan Gate upgrade message and stop
4. Format and display results

### API Call

```bash
curl -s "$PANDAS_API_URL/analytics/daily-metrics" \
  -H "Authorization: Bearer $PANDAS_API_KEY" \
  -H "Accept: application/json"
```

Optional query parameters:
- `?days=30` — number of days to look back (default varies by API)

## Follower Stats

Follower growth and demographics.

### Steps
1. Verify `~/.pandas` config has `api_url` and `api_key`
2. Make the API call
3. If 403, show the Pro Plan Gate upgrade message and stop
4. Format and display results

### API Call

```bash
curl -s "$PANDAS_API_URL/analytics/follower-stats" \
  -H "Authorization: Bearer $PANDAS_API_KEY" \
  -H "Accept: application/json"
```

## Post Timeline

Engagement timeline for posts.

### Steps
1. Verify `~/.pandas` config has `api_url` and `api_key`
2. Make the API call
3. If 403, show the Pro Plan Gate upgrade message and stop
4. Format and display results

### API Call

```bash
curl -s "$PANDAS_API_URL/analytics/post-timeline" \
  -H "Authorization: Bearer $PANDAS_API_KEY" \
  -H "Accept: application/json"
```

Optional query parameters:
- `?postId=ID` — filter to a specific post's timeline

## Posting Frequency

How often you're posting and consistency.

### Steps
1. Verify `~/.pandas` config has `api_url` and `api_key`
2. Make the API call
3. If 403, show the Pro Plan Gate upgrade message and stop
4. Format and display results

### API Call

```bash
curl -s "$PANDAS_API_URL/analytics/posting-frequency" \
  -H "Authorization: Bearer $PANDAS_API_KEY" \
  -H "Accept: application/json"
```

## Display Guidelines

When presenting analytics data to the user:

- **Tables** for tabular data (daily metrics, post lists, overview results)
- **Bullet points** for insights (best time recommendations, frequency analysis)
- **Highlight key numbers** — top-performing posts, growth trends, peak engagement times
- **Summaries first, details on request** — lead with the headline stat, offer to drill down
- **Paginated results** (overview) — offer to fetch the next page if more data is available
- **Date ranges** — when showing daily metrics, clearly label the date range covered

## Error Handling

| Status | Meaning | Recovery |
|--------|---------|----------|
| 401 | Invalid API key | Check `api_key` in `~/.pandas` is correct |
| 403 | Pro plan required | Show the upgrade message (see Pro Plan Gate section) |
| 422 | Validation error | Show the specific error messages from the response body and help the user fix them |
| 500 | Server error | Try again later |

More SEO & Marketing skills

ai-video-generation

skills-101/superpowers

Generate AI videos with Google Veo, Seedance 2.0, HappyHorse, Wan, Grok and 40+ models via inference.sh CLI. Models: Veo 3.1, Veo 3, Seedance 2.0, HappyHorse 1.0, Wan 2.5, Grok Imagine Video, OmniHuman, Fabric, HunyuanVideo. Capabilities: text-to-video, image-to-video, reference-to-video, video editing, lipsync, avatar animation, video upscaling, foley sound. Use for: social media videos, marketing content, explainer videos, product demos, AI avatars. Triggers: video generation, ai video, text to video, image to video, veo, animate image, video from image, ai animation, video generator, generate video, t2v, i2v, ai video maker, create video with ai, runway alternative, pika alternative, sora alternative, kling alternative, seedance, happyhorse

394.9k

ai-image-generation

skills-101/superpowers

Generate AI images with GPT-Image-2, FLUX, Gemini, Grok, Seedream, Reve and 50+ models via inference.sh CLI. Models: GPT-Image-2, FLUX Dev LoRA, FLUX.2 Klein LoRA, Gemini 3 Pro Image, Grok Imagine, Seedream 4.5, Reve, ImagineArt. Capabilities: text-to-image, image-to-image, inpainting, LoRA, image editing, upscaling, text rendering. Use for: AI art, product mockups, concept art, social media graphics, marketing visuals, illustrations. Triggers: flux, image generation, ai image, text to image, stable diffusion, generate image, ai art, midjourney alternative, dall-e alternative, text2img, t2i, image generator, ai picture, create image with ai, generative ai, ai illustration, grok image, gemini image, gpt image, openai image, chatgpt image

394.6k

ai-avatar-video

skills-101/superpowers

Create AI avatar and talking head videos via inference.sh CLI. Recommended: P-Video-Avatar (fastest, cheapest, built-in TTS). Also: OmniHuman, Fabric, PixVerse. Audio: Inworld TTS-2 (100+ languages, emotion steering for characters), ElevenLabs, Kokoro. Capabilities: audio-driven avatars, text-to-avatar, lipsync videos, talking head generation, virtual presenters, UGC content. Use for: AI presenters, explainer videos, virtual influencers, dubbing, marketing videos, UGC ads, gaming avatars, NPC dialogue. Triggers: ai avatar, talking head, lipsync, avatar video, virtual presenter, ai spokesperson, audio driven video, heygen alternative, synthesia alternative, talking avatar, lip sync, video avatar, ai presenter, digital human, ugc, ugc video, ugc ad, avatar ugc

394.5k

← All SEO & Marketing skills

Check your AI visibility

One URL in, a 0–100 score and the exact fixes out.

RUN THE CHECK

Browse all the tools

15 tools across six categories
13 of them never send your data anywhere

Free · No signup · No trial clock

SEE THE DIRECTORY