Token导航 LogoToken导航TokenDH.com
待分类敏感数据github未标认证来源可访问许可证需确认审计异常

inboxmate-batch-demoInboxmate 批量演示

Agent Skill

inboxmate-batch-demo 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

563

周安装

23

GitHub Stars

公开资料未说明

下载量

182
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/psquared-development/psquared-skills --skill inboxmate-batch-demo

简介

inboxmate-batch-demo 用于处理 GitHub 仓库、Issue、Pull Request 等协作信息,适合在开发流程中进行分类与整理。

  • 适用于批量演示或协作事项管理相关的代码仓库操作场景。
  • 通过 npx skills add 命令从 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发文件读写或网络请求。
  • 当前无详细功能描述,建议查阅来源仓库获取完整使用说明。

SKILL.md

InboxMate Batch Demo Pipeline

Prerequisites — Environment Variables

All required tokens are in the .env file in the current working directory (the agenthub repo root). Read it at startup to get:

  • PSQUARED_CRM_TOKEN — Bearer token for Twenty CRM GraphQL API
  • NUXT_MCP_DEMO_TOKEN — Bearer token for the InboxMate MCP server
  • OPENBRAND_API_KEY — API key for OpenBrand brand color/logo extraction

Do this first: Read .env from the current directory and extract these values. If any are missing, stop and ask the user.

Before starting, ask the user for the offer deadline:

`` When should the demo offers expire? This sets the countdown timer on all demo pages in this batch. Examples: "in 14 days", "2026-04-01", "end of month" ``

Wait for the answer. Convert to an ISO 8601 date. Pass this deadline to every demo created in the batch — do NOT ask again per company.

Announce: `` ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ InboxMate Batch Demo Pipeline Offer deadline: [date] Reading .env for CRM and MCP tokens... Querying CRM for unprocessed prospects... ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ``

Step 1 — Get Prospects from CRM

Read PSQUARED_CRM_TOKEN from .env and use it to query the Twenty CRM (GraphQL at https://crm.psquared.dev/graphql) for companies that do NOT yet have an opportunity. Use this approach:

  1. Fetch all companies (up to 100)
  2. Fetch all opportunities (up to 200)
  3. Filter out companies that already have ANY opportunity (regardless of stage)

The remaining companies are unprocessed prospects.

Announce: Found [N] unprocessed prospects.

If there's a specific company or list the user wants to process, use that instead.


Step 2 — Validate Each Prospect's Website

For each prospect, before running the demo pipeline:

2a — Check if the website is reachable

Use WebFetch on the company's domain (from CRM domainName.primaryLinkUrl).

Skip the prospect if ANY of these are true:

  • Domain returns HTTP error (4xx, 5xx) or times out
  • Domain redirects to a parked/expired domain page
  • Domain shows a "coming soon" or "under construction" placeholder
  • Website has no meaningful content (just a logo and "contact us")
  • Website is clearly outdated — copyright year 2+ years old, broken images, obviously abandoned
  • Website is a social media profile only (LinkedIn, Facebook) — not a real business site

2b — Mark skipped prospects in CRM

Do NOT ask the user what to do. Auto-skip and mark in CRM immediately.

First, check if the Company object has a field like idealCustomerProfile (ICP) or a rating/status field you can use. Run this introspection query once at the start:

query { __type(name: "Company") { fields { name type { name kind ofType { name } } } } }

If there's a usable boolean/enum field (e.g. idealCustomerProfile): set it to false or the "not a fit" value to mark the company directly.

Regardless, also create a DISQUALIFIED opportunity so the company is excluded from future batch runs:

mutation CreateOpportunity($data: OpportunityCreateInput!) {
  createOpportunity(data: $data) { id name stage }
}

Variables:

{
  "data": {
    "name": "[Company] — Website not suitable",
    "stage": "DISQUALIFIED",
    "companyId": "[companyId]"
  }
}
Announce for each skip: SKIP: [Company] — [reason] Never pause to ask. Just mark and move to the next prospect.

2c — Collect valid prospects

Prospects with a working, current website proceed to Step 3.

Announce: [N] prospects ready for demo creation, [M] skipped.

Step 3 — Create Demos for Valid Prospects

For each valid prospect, invoke the /inboxmate-demo skill (or follow the inboxmate-demo SKILL.md pipeline).

Process one prospect at a time — do not parallelize MCP calls.

After each demo is created:

  1. The inboxmate-demo pipeline creates an opportunity in CRM at SCREENING / PENDING_REVIEW with the demo URL — verify it was created
  2. Announce the result
Announce after each: `` DONE: [Company] — [playgroundUrl] ``

Step 4 — Summary

After all prospects are processed:

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
BATCH COMPLETE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Demos created: [N]
  - [Company 1] → [url]
  - [Company 2] → [url]

Skipped (website issues): [M]
  - [Company A] — [reason]
  - [Company B] — [reason]

Already processed (had opportunity): [K]
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Skip Criteria Quick Reference

SignalAction
HTTP error / timeoutSKIP — "unreachable"
Parked / expired domainSKIP — "parked domain"
"Coming soon" / "Under construction"SKIP — "placeholder page"
No real content (just logo + contact form)SKIP — "no meaningful content"
Copyright year 2+ years behind currentSKIP — "outdated (copyright YYYY)"
Broken images, dead links, 90s designSKIP — "outdated/abandoned"
Social media profile onlySKIP — "no website (social only)"
No domain in CRMSKIP — "no domain on file"
Working site with real contentPROCEED with demo

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.4%
按下载量换算66

Claude

29.17%
按下载量换算53

Cursor

16.99%
按下载量换算31

Gemini CLI

9.88%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills