Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计通过

pinterest-trends-dashboardpinterest 趋势仪表板

Agent Skill

pinterest-trends-dashboard 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,602

周安装

188

GitHub Stars

1

下载量

1,474
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:pinterest-trends-dashboard(pinterest 趋势仪表板)
来源仓库:https://github.com/marlowne12/pinterest-trends-dashboard
安装命令:
openclaw skills install pinterest-trends-dashboard
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install pinterest-trends-dashboard

简介

Pinterest趋势仪表板实时显示利基市场与搜索热度数据。

  • 适合联属营销人员识别高转化潜力产品类目机会点。pinterest-trends-dashboard 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 整合ClickBank支付能力评估辅助收益预测模型构建。
  • 数据更新频率取决于第三方源同步机制可能存在滞后。
  • 可视化图表仅供趋势参考实际销售还需结合落地页优化。

SKILL.md

name
pinterest-trends-dashboard
description
>

Pinterest Trends Dashboard

An interactive dashboard visualizing ClickBank niche profitability, trending search terms on Pinterest, and opportunity scoring. Purpose: help affiliates make data-driven niche decisions for Pinterest-based affiliate marketing.

Status

MVP Specification Complete — Ready for Phase 1 build. See BRIEF_PRD_ARCH.md for full specification.

Core Features (MVP)

1. Niche Rankings Dashboard

  • Top 10 ClickBank niches ranked by 2025 revenue data
  • Metrics per niche:

- Est. annual revenue - Avg. affiliate payout - Competition score (1–10) - Year-over-year trend (↑ ↓ →)

2. Sub-Niche Drilldown

  • Click any niche → expand to top 3–5 sub-niches
  • Example: "Dietary Supplements" → "Fat Burning," "Muscle Growth," "Blood Sugar"
  • Show top product examples + avg payouts per sub-niche

3. Pinterest Search Trends

  • Monthly search volume estimates for niche keywords
  • 5 trending search terms per niche
  • Seasonal demand indicators

4. Opportunity Scoring Algorithm

Score = (Avg Payout × Search Volume) / (Competition Level)
  • Higher score = better opportunity
  • Highlights "hidden gems" (low competition, good payout)

5. Action Buttons

  • View Products on ClickBank — Direct link to niche products
  • Research on Pinterest — Pre-filled Pinterest search
  • Create Board — Board strategy guide (future feature)

Tech Stack

  • Frontend: Next.js (React 19) + Tailwind CSS
  • Data: Static JSON (niches-2025.json) + optional API routes
  • Deployment: Vercel (free tier)
  • Build Time: 3–4 hours (MVP)

Data Structure

{
  "niches": [
    {
      "id": "dietary-supplements",
      "name": "Dietary Supplements",
      "rank": 1,
      "annualRevenue": 450000000,
      "avgPayout": 150,
      "competitionScore": 9,
      "trendYoY": "stable",
      "pinterestSearchVolume": 250000,
      "subNiches": [
        {
          "name": "Fat Burning",
          "topProducts": ["Mitolyn", "Leanbiome"],
          "avgPayout": 160
        }
      ]
    }
  ],
  "lastUpdated": "2026-03-08"
}

Component Architecture

App Layout
├── Header (Title + Last Updated)
├── Left Sidebar
│   └── NicheSelector
├── Center
│   └── NicheChart (Rankings + Metrics)
├── Right Sidebar
│   ├── SubNicheDetails
│   └── SearchTrends
└── Footer (Data Sources)

Key Components

ComponentPurpose
NicheChartBar/card ranking of niches, click to select
SubNicheDetailsShows sub-niches + top products for selection
SearchTrendsPinterest search volume + trending terms
OpportunityScoreScore calculation + "hidden gems" highlight

Integration with Affiliate Automation Suite

1. ClickBank Scraper → Dashboard

clickbank-scraper (daily job)
    ↓
latest.json (product data)
    ↓
pinterest-trends-dashboard (niche opportunity view)
    ↓
[User selects niche]
    ↓
Auto-generate Pinterest pins (n8n workflow)

2. User Workflow

  1. Open dashboard
  2. View top niches + scores
  3. Click "Research on Pinterest" → see trending keywords
  4. Click "View Products" → ClickBank affiliate links
  5. (Future) Auto-generate pins based on selection

3. n8n Workflow Integration

// n8n "Read From Dashboard API" node
const selectedNiche = {{ $json.selectedNiche }};
const topProducts = {{ $json.products }};

// Generate Pinterest pins automatically
return {
  niche: selectedNiche,
  productCount: topProducts.length,
  action: "generate_pins"
};

Development Roadmap

MVP (Phase 1) — 4 hours

  • [x] Specification complete
  • [ ] Next.js project scaffold
  • [ ] Data file (niches-2025.json)
  • [ ] NicheChart component
  • [ ] SubNicheDetails component
  • [ ] Styling (Tailwind)
  • [ ] Deploy to Vercel

Phase 2 — Pinterest API Integration

  • [ ] Real-time Pinterest search volume API
  • [ ] Trending term discovery
  • [ ] Seasonal demand tracking

Phase 3 — ClickBank API Integration

  • [ ] Live gravity scores
  • [ ] Real-time payout data
  • [ ] Product-level filtering

Phase 4 — User Features

  • [ ] User accounts (saved niches)
  • [ ] Email alerts (trending shifts)
  • [ ] Export niche analysis as PDF

Phase 5 — Content Generation

  • [ ] Auto-generate Pinterest pin templates
  • [ ] Blog post outlines per niche
  • [ ] Email swipe copy

Deployment

Build

npm run build
npm run start  # local testing

Deploy to Vercel

git push origin main
# Vercel auto-deploys on push

Data Updates

Update data/niches-2025.json monthly with latest ClickBank + Pinterest trends:

node scripts/update-niche-data.js  # future: automated script

Data Sources

  • ClickBank Niches: Official ClickBank 2025 niche rankings (blog post)
  • Affiliate Payouts: ClickBank published averages by category
  • Pinterest Search Volume: Pinterest Trends API (or manual estimates)
  • Competition Data: Derived from gravity scores + search volume

Success Metrics

  1. Usability: Identify niche + view products in <2 minutes
  2. Accuracy: Data matches ClickBank official rankings (high confidence)
  3. Engagement: Track click-through rates to ClickBank affiliate links
  4. Time to Value: Dashboard fully functional within 4 hours of starting build

Integration with OpenClaw

Use as a sub-agent view or scheduled report generator:

# Run dashboard builder as cron job
openclaw cron add pinterest-dashboard-updater \
  --schedule "0 9 * * 0" \
  --command "cd max-co/products/pinterest-trends-dashboard && npm run build"

# Or spawn as interactive session
claude-code "Build and deploy Pinterest Trends Dashboard"

File Structure

pinterest-trends-dashboard/
├── BRIEF_PRD_ARCH.md        # Full specification (this doc)
├── SKILL.md                  # This skill definition
├── app/
│   ├── page.tsx             # Main dashboard
│   ├── layout.tsx           # Root layout
│   └── api/
│       └── niche-data.ts    # Data endpoint (optional)
├── components/
│   ├── NicheChart.tsx       # Rankings chart
│   ├── SubNicheDetails.tsx  # Drilldown view
│   ├── SearchTrends.tsx     # Pinterest trends
│   └── OpportunityScore.tsx # Opportunity ranking
├── data/
│   └── niches-2025.json     # Static niche data
├── styles/
│   └── globals.css          # Tailwind config
├── package.json
└── next.config.js

Author

Max @ max-co.digital — Autonomous affiliate marketing automation for passive income.

License

Proprietary — Part of Digital Helper Agency / max-co product suite.

Questions?

See BRIEF_PRD_ARCH.md for implementation details or integration examples.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

71.74%
按下载量换算1,057

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install pinterest-trends-dashboard 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills