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

agency-digest-setup机构摘要设置

Agent Skill

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

总安装

245

周安装

10

GitHub Stars

1

下载量

79
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:agency-digest-setup(机构摘要设置)
来源仓库:https://github.com/victorpay1/intelligems-plugins
仓库路径:skills/agency-digest-setup
安装命令:
npx skills add https://github.com/victorpay1/intelligems-plugins --skill agency-digest-setup
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/victorpay1/intelligems-plugins --skill agency-digest-setup

简介

用于创建机构每日摘要自动化流程,整合 A/B 测试状态与关键业务指标。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库协作和项目进度进行信息整理。
  • 通过对话引导完成 Slack 配置与任务部署,自动输出可转发给客户的品牌摘要。
  • 安装前需确认权限范围、维护状态及是否涉及联网或文件操作。
  • agency-digest-setup 属于待分类类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

/agency-digest-setup

Create the complete Agency Morning Digest automation through conversation.

What you'll get:

  • Daily Slack messages with all active A/B tests
  • Key metrics: rev/visitor, profit/visitor, conversion, AOV
  • Health indicators for tests needing attention
  • One message per brand (ready to forward to clients)

Setup Workflow

Follow these steps in order. Ask questions conversationally, then create files directly.

Step 1: Project Directory

Ask where to create the project files.

Default: current working directory. If it's empty or home directory, suggest creating ~/Desktop/agency-morning-digest/.

Step 2: Slack Webhook

Ask: "Do you already have a Slack webhook URL, or do you need help creating one?"

If they need help creating one:

Guide them through:

  1. Go to https://api.slack.com/apps
  2. Click "Create New App" > "From scratch"
  3. Name it "Agency Test Digest" and select workspace
  4. Click "Incoming Webhooks" in sidebar
  5. Toggle "Activate Incoming Webhooks" to On
  6. Click "Add New Webhook to Workspace"
  7. Select the channel and click "Allow"
  8. Copy the webhook URL (starts with https://hooks.slack.com/services/)

If using Chrome browser automation: Offer to guide them through the Slack API website step by step.

Once they have the URL, save it for Step 4.

Step 3: Brand Configuration

Ask: "What brands do you want to track? For each brand, I'll need a name and Intelligems API key."

Collect for each brand:

  • Brand name: What shows in Slack (e.g., "Brand A", "Client Store")
  • API key: Format is ig_live_xxxxxxxxxx

Allow multiple brands. Ask "Add another brand?" after each one.

If they don't have API keys, direct them to contact Intelligems support.

Step 4: Create Files

Read the templates from references/file-templates.md and create these files in the project directory:

  1. agency_digest.py - Main script (copy exactly from template)
  2. config.py - Configuration with thresholds (copy from template)
  3. brands.json - Fill in user's brand names and API keys
  4. .env - Fill in user's Slack webhook URL
  5. requirements.txt - Python dependencies (copy from template)
  6. .gitignore - Protects credentials (copy from template)

Step 5: Install Dependencies

Create a virtual environment and install dependencies:

cd {PROJECT_DIR}
python3 -m venv venv
./venv/bin/pip install -r requirements.txt

This isolates packages and avoids conflicts with system Python.

Step 6: Daily Scheduler (Optional, macOS only)

Ask: "Want to set up automatic daily messages at 8 AM?"

If yes:

  1. Create the plist file at ~/Library/LaunchAgents/com.intelligems.agency-digest.plist using template from references/file-templates.md
  2. Replace {PROJECT_DIR} with the actual project path (uses venv Python automatically)
  3. Load the scheduler: launchctl load ~/Library/LaunchAgents/com.intelligems.agency-digest.plist

Tell user: "Your computer needs to be on at 8 AM for the message to send."

Step 7: Test

Ask: "Want to send a test message to Slack now?"

If yes, run:

./venv/bin/python3 agency_digest.py

If they want a preview first:

./venv/bin/python3 agency_digest.py --dry-run

Step 8: Confirm Setup

Summarize what was created:

  • Files location
  • Brands configured
  • Scheduler status
  • Commands for later use

Commands After Setup

# Send digest now (from project directory)
./venv/bin/python3 agency_digest.py

# Preview without sending
./venv/bin/python3 agency_digest.py --dry-run

# One combined message (instead of per-brand)
./venv/bin/python3 agency_digest.py --consolidated

Adding More Brands Later

Edit brands.json:

{
  "brands": [
    {"name": "Brand A", "display_name": "Brand A", "api_key": "ig_live_xxx"},
    {"name": "Brand B", "display_name": "Brand B", "api_key": "ig_live_yyy"}
  ]
}

Customizing Thresholds

Edit config.py:

SettingDefaultPurpose
MIN_RUNTIME_DAYS10Days before calling winners
MIN_CONFIDENCE_LEVEL0.8080% confidence threshold
MIN_SESSIONS_FOR_SIGNIFICANCE100Minimum visitors
NEUTRAL_LIFT_THRESHOLD0.05±5% considered flat

Troubleshooting

No Slack message?

  • Check /tmp/agency-digest.log for errors
  • Verify webhook URL in .env
  • Run with --dry-run to preview

Scheduler not running (macOS)?

launchctl list | grep agency-digest

API errors?

  • Verify API key format: ig_live_xxxxxxxxxx
  • Contact Intelligems support for access

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

28.22%
按下载量换算22

windsurf

24.31%
按下载量换算19

trae

15.03%
按下载量换算12

OpenCode

11.75%
按下载量换算9

Cursor

7.11%
按下载量换算6

Codex

3.22%
按下载量换算3

安全审计

Gen Agent Trust Hub

可疑

Socket

可疑

Snyk

未通过

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills