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

reveal-feedback透露反馈

Agent Skill

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

总安装

21,790

周安装

936

GitHub Stars

公开资料未说明

下载量

7,638
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install reveal-feedback

简介

与Reveal反馈基础设施交互,管理产品审核与情绪洞察获取。

  • 适用于用户反馈收集、AI分析结果解读与提交状态跟踪场景。
  • 自动分类负面评论并生成改进建议,提升产品迭代效率。
  • 安装命令:openclaw skills install reveal-feedback,需配置Reveal API密钥。
  • 注意数据同步延迟问题,避免依赖实时反馈做出紧急决策。

SKILL.md

name
reveal-feedback
description
Interact with Reveal feedback infrastructure to manage products, create review tasks, read AI-analyzed user feedback, get sentiment insights, view submissions, manage notifications, register webhooks, and generate marketing content (scripts, images, videos). Use when the user asks about product feedback, user reviews, testing tasks, sentiment analysis, top issues, review submissions, marketing videos, marketing images, video scripts, or anything related to their Reveal account.
metadata
{"openclaw":{"requires":{"env":["REVEAL_API_KEY"]},"primaryEnv":"REVEAL_API_KEY","emoji":"📊","homepage":"https://testreveal.ai"}}

Reveal Feedback Infrastructure

Reveal is a universal feedback platform where human reviewers screen-record themselves using products and provide AI-analyzed feedback. This skill connects to the Reveal REST API to manage the full feedback lifecycle — from collecting reviews to generating marketing content from that feedback.

Authentication

All API calls require the REVEAL_API_KEY environment variable. The key is a vendor API key generated from the Reveal dashboard under Settings → API Keys.

Every request uses this header:

Authorization: Bearer $REVEAL_API_KEY

Base URL: https://www.testreveal.ai/api/v1 (Override with REVEAL_BASE_URL env var if set.)

Capabilities

1. Check dashboard overview

Fetch products, active review tasks, and unread notifications to give the user a quick status update.

Steps:

  1. GET /products to list vendor products
  2. GET /review-tasks?status=active to list active tasks
  3. GET /notifications?unread=true&limit=5 to get unread notifications
  4. Summarize: product count, active tasks with submission progress, and recent notifications

2. Get feedback insights for a product

Fetch AI-aggregated insights: top issues, top positives, sentiment distribution, and suggestions.

Steps:

  1. GET /products to find the product ID matching the user's request
  2. GET /insights/{productId} to get aggregated insights
  3. Present: sentiment breakdown, top issues ranked by frequency, top positives, unique issue count

3. Get product analytics

Fetch quantitative metrics for a product.

Steps:

  1. GET /products/{productId}/analytics
  2. Present: total submissions, analyzed count, average completion rate, sentiment distribution, top issues, top positives

4. View review submissions

Get individual review submissions with transcripts, AI analysis, sentiment, and issue counts.

Steps:

  1. GET /review-tasks?status=active&limit=5 to find the relevant task (or use a task ID if provided)
  2. GET /review-tasks/{taskId}/submissions to get all submissions
  3. For each submission, present: status, sentiment, issue count, positive count, transcript preview

5. Create a review task

Create a new user-testing task so reviewers can test a product.

Steps:

  1. GET /products to find the product matching the user's description
  2. Extract from the user's message: title, objective, steps, feedback focus, reviewer count
  3. POST /review-tasks with body:
{
  "title": "extracted title",
  "productId": "matched product ID",
  "requiredReviewers": 5,
  "instructions": {
    "objective": "what the reviewer should accomplish",
    "steps": "step-by-step instructions",
    "feedback": "what feedback to focus on"
  }
}
  1. Confirm creation with task ID and details

6. Update a review task

Close, pause, or modify an existing review task.

Steps:

  1. PATCH /review-tasks/{taskId} with fields to update (status, title, description, requiredReviewers)
  2. Confirm the update

7. List products

Show all products registered on the vendor's Reveal account.

Steps:

  1. GET /products?limit=50
  2. Present each product: name, category, platform support (web/mobile), website

8. Get notifications

Check for new activity on Reveal.

Steps:

  1. GET /notifications?unread=true&limit=20
  2. Present notification messages with timestamps
  3. If user says to mark as read: PATCH /notifications with {"markAllRead": true}

9. Register a webhook

Set up real-time event notifications.

Steps:

  1. POST /webhooks with body:
{
  "url": "https://user-provided-url",
  "events": ["review.submitted", "review.analyzed", "task.completed", "video.generated"]
}
  1. Return the webhook ID and signing secret. Instruct user to store the secret securely.

10. List webhooks

Steps:

  1. GET /webhooks
  2. Present each webhook: URL, subscribed events, active status

11. Summarize feedback into marketing highlights

Turn raw user feedback into polished, persuasive marketing statements.

Steps:

  1. Collect the positive feedback strings (from insights or submissions)
  2. POST /marketing/summarize-highlights with body:
{
  "highlights": ["feedback string 1", "feedback string 2", "..."]
}
  1. Response contains summary — an array of marketing-ready highlight strings

12. Generate a marketing video script

Generate a 30-second video script from product feedback or the product description.

Steps:

  1. GET /products to find the product ID
  2. Optionally GET /insights/{productId} to extract positive highlights
  3. POST /marketing/generate-script with body:
{
  "productId": "the product ID",
  "positiveHighlights": ["highlight 1", "highlight 2"],
  "scriptType": "problem-solution"
}

- positiveHighlights is optional; if omitted the product description is used - scriptType options: problem-solution, empathetic, aspirational, story-driven

  1. Response contains script — a formatted script with [Scene X: Title] headers, Visual and Narration per scene

13. Generate a marketing image

Create a marketing image for a product with AI.

Steps:

  1. GET /products to find the product ID
  2. POST /marketing/generate-image with body:
{
  "productId": "the product ID",
  "prompt": "Modern dashboard showcasing the key analytics features",
  "styleName": "Modern Gradient",
  "tagline": "Insights that drive growth"
}

- prompt is required — the creative direction for the image - styleName and tagline are optional

  1. Response contains imageUrl — a public URL to the generated image

14. Edit and refine a script

Parse a script into structured scenes and apply edits — change narration/visuals, add new scenes, or remove scenes.

Steps:

  1. POST /marketing/edit-script with body:
{
  "script": "the current script text",
  "operations": [
    { "action": "edit", "sceneNumber": 3, "narration": "Updated narration text" },
    { "action": "add", "position": 4, "title": "New CTA", "visual": "Happy customer using phone", "narration": "Try it free today!" },
    { "action": "remove", "sceneNumber": 6 }
  ]
}

- operations is optional — omit it to just parse the script into structured scenes - action: "edit" — update title, visual, or narration of an existing scene (only include fields to change) - action: "add" — insert a new scene at position (or append if omitted) - action: "remove" — delete a scene by number (scenes renumber automatically)

  1. Response contains both the updated script string and a scenes array with structured scene objects

15. Search stock media for video scenes

Find stock images and videos from the Pictory library to use in specific video scenes.

Steps:

  1. GET /marketing/media-search?keyword=business+meeting&page=1

- keyword is required — the search term - category and page are optional

  1. Response contains results — array of { url, type, thumbnail }
  2. Use the url values in the customMediaUrls field of generate-video to assign media to specific scenes

16. Generate a marketing video (full pipeline)

Create a full marketing video from a script. This is a multi-step async workflow.

Steps:

  1. Generate a script first (capability 12) or have the user provide one
  2. Optionally refine the script (capability 14) — edit scenes, add/remove as needed
  3. Optionally search for stock media (capability 15) to use in specific scenes
  4. POST /marketing/generate-video with body:
{
  "productId": "the product ID",
  "script": "the full script with [Scene X: Title] headers",
  "voiceOver": { "speaker": "Jackson", "speed": 100 },
  "musicVolume": 0.4,
  "customMediaUrls": {
    "1": "https://stock-media-url-for-scene-1",
    "3": "https://stock-media-url-for-scene-3"
  }
}

- customMediaUrls is optional — map scene numbers to stock media URLs from media-search - Scenes without a custom URL will get auto-matched stock media based on the visual description Response: { "data": { "jobId": "...", "accessToken": "...", "productId": "..." } }

  1. Wait ~30 seconds, then trigger rendering:

PUT /marketing/render-video/{jobId} with body:

{
  "accessToken": "the accessToken from step 4",
  "webhook": "https://optional-callback-url"
}
  1. Poll for completion:

GET /marketing/video-status?jobId={jobId} Response: { "data": { "status": "in-progress" | "completed" | "failed", "videoUrl": "..." } } - Keep polling every 15-30 seconds until status is completed - When complete, videoUrl contains the final video URL

Response format

All API responses follow this structure:

  • Success: { "data": { ... } }
  • Error: { "error": { "code": "ERROR_CODE", "message": "description" } }

Guardrails

  • Never expose or log the API key in responses to the user
  • If an API call fails with 401, tell the user their API key may be invalid or expired
  • If a product is not found, suggest listing products first
  • When creating review tasks, always confirm the details with the user before sending the POST
  • Do not fabricate feedback data — only report what the API returns
  • Marketing endpoints require a vendor API key — reviewer keys will get a 403
  • Video generation is async — always poll video-status rather than assuming immediate completion
  • When generating videos, save the accessToken from generate-video — it's needed for render-video

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

90.86%
按下载量换算6,940

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills