Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

verosight-monitorVerosight 监视器

Agent Skill

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

总安装

3,224

周安装

133

GitHub Stars

公开资料未说明

下载量

1,053
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install verosight-monitor

简介

用于查找、检索和筛选相关信息,适合社交媒体监控场景。

  • 适用于 OpenClaw 环境中需要网络情报的场景。
  • 通过情感分析、趋势检测和影响者识别提供社交媒体洞察。
  • 安装前建议确认权限范围和是否会触发外部 API 调用。
  • 可能涉及第三方监控服务,需评估维护状态后再使用。verosight-monitor 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
verosight-monitor
description
Integrate Verosight API for social media intelligence and cyber monitoring. Sentiment analysis, trend detection, influencer identification, and bot detection across X (Twitter), Instagram, TikTok, YouTube, Threads, and news portals. Use when: user asks for sentiment analysis, social media monitoring, trend analysis, influencer tracking, bot detection, or mentions 'Verosight', 'social listening', 'cyber monitoring', 'digital reputation'. Covers auth setup, querying posts, analytics (sentiment/trending/volume), profile search, and report generation.

Verosight Monitor — Social Media Intelligence Skill

Integrate Verosight API for real-time social media monitoring and digital reputation management across major platforms.

Quick Setup

1. Get API Key

Sign up at verosight.com and generate an API key from the API Keys dashboard. Keys start with vlt_live_ (production) or vlt_test_ (test).

2. Authenticate

Exchange your API key for a JWT token (valid 24 hours):

JWT=$(curl -s -X POST "https://api.verosight.com/v1/auth/token" \
  -H "X-API-Key: vlt_live_YOUR_KEY" | jq -r '.token')

Or use the bundled auth script:

./scripts/verosight-auth.sh vlt_live_YOUR_KEY

3. Query Data

# Sentiment analysis
curl -s "https://api.verosight.com/v1/analytics/sentiment?query=KEYWORD&sources=x,instagram&days=7" \
  -H "Authorization: Bearer $JWT"

# Search posts
curl -s "https://api.verosight.com/v1/posts?query=KEYWORD&sources=x,instagram&limit=10" \
  -H "Authorization: Bearer $JWT"

API Endpoints

Posts

GET /v1/posts

Search posts across platforms with filters.

ParameterTypeDescription
querystringSearch keyword
sourcesstringComma-separated: x,instagram,tiktok,youtube,threads,news_portal
limitintResults per page (default: 10, max: 50)
daysintLookback period (1-90)
sentimentstringFilter: positive, negative, neutral
GET /v1/posts/:id

Get a single post by ID.

GET /v1/posts/:id/comments

Get comments for a post.

Analytics

GET /v1/analytics/sentiment

Sentiment analysis for a keyword. Returns positive/negative/neutral breakdown, weighted percentages, and sample posts.

ParameterTypeDescription
querystringSearch keyword
sourcesstringComma-separated platforms
daysintLookback period
limitintNumber of sample posts to return
GET /v1/analytics/volume

Post/comment volume over time (daily breakdown).

GET /v1/analytics/trending

Trending posts and profiles for a keyword.

Profiles

GET /v1/profiles?query=ACCOUNT&source=instagram

Search for social media profiles.

GET /v1/profiles/:source/:account

Get profile details (auto-crawls if missing).

GET /v1/profiles/:source/:account/stats

Engagement stats for a profile.

Search

POST /v1/search

Semantic search across all content.

Body:

{
  "query": "keyword",
  "sources": ["x", "instagram"],
  "days": 7
}

Account

GET /v1/account/balance

Check credit balance (0 cost).

GET /v1/account/usage

Usage history and statistics (0 cost).

Response Format

All responses follow a standard envelope:

{
  "data": { ... },
  "meta": {
    "request_id": "uuid",
    "credits_used": 2,
    "credits_remaining": 998
  },
  "pagination": {
    "next_cursor": "base64...",
    "has_more": true,
    "total": 38113
  }
}

Workflows

Sentiment Analysis Report

  1. Authenticate → get JWT
  2. Query /v1/analytics/sentiment → get positive/negative/neutral breakdown
  3. Query /v1/posts with sentiment=negative → identify vocal accounts
  4. Query /v1/analytics/volume → trend over time
  5. Compile report: overview → trend → narratives → insights → recommendations

For detailed workflow, see references/sentiment-workflow.md.

Influencer Identification

  1. Query posts about target topic with high engagement
  2. Sort by likes, shares, views
  3. Cross-reference with sentiment (positive vs negative influencers)
  4. Profile top accounts for follower count and verification status

Bot Detection

  1. Query posts about target topic across platforms
  2. Look for patterns:

- Multiple posts from same account in short timeframe - Identical or near-identical content across accounts - Coordinated posting timing - New accounts with abnormally high activity

  1. Flag suspicious accounts for manual review

PDF Report Generation

Generate professional reports with tables, charts, and formatted layouts using pdfkit (Node.js).

See references/pdf-template.md for complete guide.

Supported Platforms

PlatformCoverage
X (Twitter)Posts, replies, engagement metrics
InstagramPosts, captions, engagement
TikTokVideos, descriptions
YouTubeVideos, comments
ThreadsPosts, replies
FacebookPosts, pages
LinkedInPosts, articles
News PortalsArticles from Indonesian media

Credit System

Each successful API call (2xx response) costs credits. Failed calls (4xx/5xx) do not deduct credits.

TierRate LimitStarting Credits
Standard60 req/min1,000
Pro300 req/min10,000
EnterpriseCustomCustom

Check balance:

curl -s "https://api.verosight.com/v1/account/balance" \
  -H "Authorization: Bearer $JWT"

Known Limitations

  • News portal results dominate volume (~70%); social platforms contribute less
  • Semantic search returns broadly relevant results; source/date filters are limited
  • Instagram direct scraping often blocked; use Verosight API for Instagram data
  • Profile metadata (followers, account age) may not be available for all accounts

Bundled Resources

FilePurpose
references/sentiment-workflow.mdStep-by-step sentiment analysis workflow with report template
references/pdf-template.mdPDF generation guide with pdfkit (tables, charts, layout)
scripts/verosight-auth.shAuth helper — exchange API key for JWT
scripts/quick-sentiment.shQuick sentiment check from command line

Links

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

89.27%
按下载量换算940

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills