Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计异常

review-demos回顾演示

Agent Skill

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

总安装

574

周安装

23

GitHub Stars

公开资料未说明

下载量

186
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:review-demos(回顾演示)
来源仓库:https://github.com/psquared-development/psquared-skills
仓库路径:skills/review-demos
安装命令:
npx skills add https://github.com/psquared-development/psquared-skills --skill review-demos
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/psquared-development/psquared-skills --skill review-demos

简介

review-demos 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中基于关键词或场景线索快速获取候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态,注意是否触发联网或命令执行。
  • 建议结合原始 README 核验具体用法和功能细节。

SKILL.md

Review InboxMate Demos

Announce: `` ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Demo Review Pipeline started. Checking environment... ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ``

STEP 0 — Check Environment

Before doing anything, check if a .env file exists in the current working directory. Read it using the Read tool:

Do NOT use source.env — values may contain semicolons that break shell parsing. Read the file directly and extract the values manually.

The .env file must contain all three of the following tokens:

  • PSQUARED_CRM_TOKEN — for querying and updating CRM opportunities
  • NUXT_MCP_DEMO_TOKEN — for calling the InboxMate MCP API (auto-fixing widget styles)
  • OPENBRAND_API_KEY — for extracting brand colors via the OpenBrand API (used in Step 2b2)

If the .env file is missing or doesn't contain all three tokens, stop immediately and ask the user to provide them.

Once verified, announce: Environment OK. Finding demos pending review...

STEP 1 — Find Demos Pending Review

Query CRM for opportunities at SCREENING stage with demoStatus = PENDING_REVIEW:

curl -s -X POST https://crm.psquared.dev/graphql \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $PSQUARED_CRM_TOKEN" \
  -d '{"query":"{ opportunities(filter: { stage: { eq: SCREENING }, demoStatus: { eq: PENDING_REVIEW } }, first: 50) { edges { node { id name stage demoStatus demoUrl { primaryLinkUrl } company { id name domainName { primaryLinkUrl } } } } } }"}'
Announce: `` Found [N] demos pending review: 1. [Company Name] — [demoUrl] 2. [Company Name] — [demoUrl] ... ``

If none found, announce "No demos pending review" and stop.


STEP 2 — Review Each Demo

For each opportunity, perform a quality check:

2a — Fetch the Demo Page

Use WebFetch to open the demo playground URL. The demo page is at demo.inboxmate.psquared.dev/?id=<demoId>.

Look at the page content for:

  • Company name and branding
  • Bot greeting message
  • Quick questions displayed
  • Color theme

2b — Fetch the Company Website

Use WebFetch on the company's domain (from company.domainName.primaryLinkUrl). Compare against the demo.

2b2 — Get Brand Colors via OpenBrand

Call the OpenBrand API to extract the company's actual brand colors:

WebFetch: https://openbrand.sh/api/extract?url=https://[companyDomain]

From the response, find the primary color — look for the color tagged as "primary" in the colors array. Record this hex value as expectedPrimaryColor.

If OpenBrand fails or returns no colors, fall back to manually inspecting the company website HTML for dominant button/CTA colors.

2b3 — Get Demo Data via API

Fetch the demo's stored data to check the countdown configuration:

WebFetch: https://app.psquared.dev/api/demo/[demoId]

Extract the demoId from the opportunity's demoUrl (the ?id= parameter or last path segment).

From the response, record:

  • offerText — the offer headline text
  • offerExpiresAt — the countdown deadline (ISO date, or null if missing)
  • agentId — needed for auto-fixes

2c — Quality Checklist

Score each item as PASS or FAIL:

CheckWhat to verify
Company matchDemo mentions the correct company name
Language matchDemo language matches the company website language (DE/EN/both)
Greeting qualityGreeting is specific to the company, not generic ("Hi! How can I help?")
Quick questionsQuestions are relevant to this company's products/services
Color matchWidget primary color matches OpenBrand expectedPrimaryColor. Compare hex values — minor shade differences (e.g. #1a365d vs #1e3a5f) are OK, but completely different hues are a FAIL.
Countdown setofferExpiresAt is present AND is a future date (not null, not expired) — this is set by the campaign, not during review. The offerText should describe a time-limited offer — NOT "Kostenlose Erstberatung" or generic text.
Content accuracyAny visible knowledge snippets reference real products/services from the website
No hallucinationsDemo doesn't mention products, pricing, or features not on the company website

2d — Auto-Fix: Colors

If the Color match check FAILED (widget color doesn't match OpenBrand primary color):

  1. Call update_widget_style via the InboxMate MCP to fix the color:
curl -s -X POST https://app.psquared.dev/api/mcp \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $NUXT_MCP_DEMO_TOKEN" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"update_widget_style","arguments":{"agentId":"[agentId]","primaryColor":"[expectedPrimaryColor]"}}}'
  1. Republish the agent:
curl -s -X POST https://app.psquared.dev/api/mcp \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $NUXT_MCP_DEMO_TOKEN" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"publish_agent","arguments":{"agentId":"[agentId]"}}}'
Announce: Auto-fixed: Updated [Company] widget color from [oldColor] to [expectedPrimaryColor] After auto-fixing, mark the Color match check as PASS (fixed).

2e — Auto-Fix: Countdown / Deadline

If the Countdown set check FAILED (missing offerExpiresAt, expired date, or wrong offerText):

Important: Do NOT invent or default a deadline (e.g. "7 days from today"). Deadlines are set by campaigns — not during review. If no deadline is present in the CRM opportunity notes, flag the check as FAIL in the review note and set NEEDS_FIX rather than guessing a date.

Only proceed with auto-fix if the CRM opportunity notes explicitly mention a specific deadline to use.

Determine the correct offer text:

  • The text should describe a time-limited offer that fits the countdown premise
  • Good examples (DE): "Jetzt starten und bis zu 50% Rabatt im ersten Jahr sichern", "Ihren KI-Assistenten jetzt aktivieren — Sonderkonditionen sichern"
  • Good examples (EN): "Start now and save up to 50% in your first year", "Activate your AI assistant now — special terms available"
  • Never use "Kostenlose Erstberatung" — the countdown is for an offer deadline, not a consultation

Apply the fix — update the demo_pages table directly via Supabase SQL:

Use mcp__plugin_supabase_supabase__execute_sql with:
  project_id: "fevtfywriufbqnvbgyrm"
  query: UPDATE demo_pages SET offer_text = '[corrected offerText]', offer_expires_at = '[corrected ISO date]' WHERE id = '[demoId]'
Why raw SQL? The InboxMate MCP does not expose an update_demo_page tool for campaign-managed fields like offer_expires_at. Direct Supabase SQL is the only way to update these fields programmatically.
Announce: Auto-fixed: Updated [Company] countdown — expires [date], text: "[offerText]" After auto-fixing, mark the Countdown set check as PASS (fixed).

2f — Make a Decision

  • 6+ PASS (including auto-fixed), 0 critical FAILsOK_TO_SEND
  • Any critical FAIL (wrong company, wrong language, hallucinated content) → NEEDS_FIX
  • Minor issues only (greeting could be better) → OK_TO_SEND with note about improvements
  • Auto-fixed items count as PASS but should be mentioned in the review note

STEP 3 — Update CRM

If OK_TO_SEND:

# Update demoStatus
curl -s -X POST https://crm.psquared.dev/graphql \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $PSQUARED_CRM_TOKEN" \
  -d '{"query":"mutation { updateOpportunity(id: \"[opportunityId]\", data: { demoStatus: OK_TO_SEND, demoReviewIssues: null }) { id } }"}'

If NEEDS_FIX:

curl -s -X POST https://crm.psquared.dev/graphql \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $PSQUARED_CRM_TOKEN" \
  -d '{"query":"mutation { updateOpportunity(id: \"[opportunityId]\", data: { demoStatus: NEEDS_FIX, demoReviewIssues: \"[Issue 1: description. Issue 2: description. Suggested fixes: ...]\" }) { id } }"}'

STEP 4 — Report

Announce: `` ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Demo Review complete. ✅ OK to send: - [Company A] — [brief reason] - [Company B] — [brief reason] ❌ Needs fix: - [Company C] — [issue summary] Next step: Send approved demos to prospects ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ``

CRM Fields Updated by This Skill

StepFieldValueWhen
3 (OK)demoStatusOK_TO_SENDDemo passed QA
3 (OK)demoReviewIssuesnullClear any previous issues
3 (FIX)demoStatusNEEDS_FIXDemo failed QA
3 (FIX)demoReviewIssues"Issue 1:... Issue 2:..."What's wrong and how to fix

Reads: demoStatus (filter PENDING_REVIEW), demoUrl (demo page link), company domain

Does NOT touch: outreachSentAt, followupSentAt, agenthubAccountId, stage

Important: demoStatus is a GraphQL enum — use bare values (no quotes): demoStatus: OK_TO_SEND

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.63%
按下载量换算68

Claude

30.95%
按下载量换算58

Cursor

16.33%
按下载量换算30

Gemini CLI

9.54%
按下载量换算18

安全审计

Gen Agent Trust Hub

可疑

Socket

可疑

Snyk

未通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/psquared-development/psquared-skills --skill review-demos 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills