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

intelligems-morning-brief情报早间简报

Agent Skill

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

总安装

220

周安装

9

GitHub Stars

2

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/victorpay1/intelligems-analytics --skill intelligems-morning-brief

简介

用于生成 intelligems 平台的每日运营简报摘要。

  • 适合汇总关键指标、异常事件和待办事项。
  • 可按部门、产品线或地理区域分类展示。intelligems-morning-brief 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 建议设置阈值告警和重要事件突出显示。
  • 注意简报中不得包含未脱敏的用户数据。

SKILL.md

/morning-brief

One-glance prioritized summary of ALL active tests. Red/yellow/green health status, action items, emerging signals. The CEO Morning Brief.


Step 0: Workspace Check

Check if ~/intelligems-analytics/ exists with the core libraries and virtual environment.

ls ~/intelligems-analytics/venv/bin/activate && ls ~/intelligems-analytics/ig_client.py

If the workspace does not exist, run the /intelligems-core skill first to set it up. Copy the core libraries from intelligems-core/references/ and run setup_workspace.sh.


Step 1: Get API Key

Check if the .env file has a real API key (not the placeholder):

source ~/intelligems-analytics/venv/bin/activate
python3 -c "
from dotenv import load_dotenv
import os
load_dotenv(os.path.expanduser('~/intelligems-analytics/.env'))
key = os.getenv('INTELLIGEMS_API_KEY', '')
if not key or key == 'your_api_key_here':
    print('NEED_KEY')
else:
    print('OK')
"

If NEED_KEY, ask the user:

"What's your Intelligems API key? You can get one by contacting support@intelligems.io"

Then save it:

echo "INTELLIGEMS_API_KEY=<user's key>" > ~/intelligems-analytics/.env

Never hardcode or assume an API key.


Step 2: Copy brief.py

Copy the morning brief script from this skill's references into the workspace:

cp references/brief.py ~/intelligems-analytics/brief.py

Step 3: Run

Execute the brief script in the workspace using the virtual environment:

cd ~/intelligems-analytics && source venv/bin/activate && python3 brief.py

The script prints progress messages as it fetches data, then outputs the full morning brief.


Step 4: Present

Read the script output and present it to the user as a clean, scannable morning brief:

  1. Date and time header — "Morning Brief — {date}"
  2. Per-test cards sorted by priority — RED tests first (need attention), then YELLOW (watch), then GREEN (healthy)
  3. Each card shows:

- Test name and type - Runtime, visitors, orders with daily rates - Best variant performance (primary metric + conversion) - Health status with color indicator and action item - Estimated days to verdict (or "Ready to call")

  1. Action items called out prominently — anything RED or YELLOW gets a clear callout
  2. Program Pulse summary at the end — total active tests, daily run rates, how many are ready to call

Formatting guidance:

  • Use bold for test names and status labels
  • Use emoji sparingly: only for status (red/yellow/green circles)
  • Keep it scannable — this is meant for a quick morning read
  • Lead with what needs attention, close with the overall pulse

Step 5: Set Up Slack Automation (Recommended)

The morning brief is designed for daily delivery to Slack. This is the recommended way to use it.

1. Get a Slack webhook URL

Ask the user:

"To get your morning brief in Slack every day, you need an Incoming Webhook URL. Go to https://api.slack.com/apps → Create New App → Incoming Webhooks → Add New Webhook. Which channel should the brief go to?"

2. Copy the Slack module

cp ../intelligems-core/references/ig_slack.py ~/intelligems-analytics/ig_slack.py

3. Test it

Run the brief with the --slack flag:

cd ~/intelligems-analytics && source venv/bin/activate && python3 brief.py --slack "<webhook_url>"

Verify the message appears in Slack with per-test cards, status indicators, and program pulse.

4. Schedule daily delivery

Copy and run the automation setup script:

cp ../intelligems-core/references/setup_automation.sh ~/intelligems-analytics/
bash ~/intelligems-analytics/setup_automation.sh brief.py "<webhook_url>" 8 0

This creates a macOS LaunchAgent that runs the morning brief every day at 8:00 AM and posts to Slack.

Ask the user what time they'd like it (default 8 AM). Adjust the hour parameter accordingly.


Notes

  • Slack output: When using --slack, results are formatted as Slack Block Kit messages with per-test cards sorted by priority, status emoji, and a program pulse summary.
  • Terminal output: Without --slack, the brief prints to the terminal as before — useful for on-demand checks.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.78%
按下载量换算24

Claude

30.98%
按下载量换算22

Cursor

20.18%
按下载量换算14

Gemini CLI

8.6%
按下载量换算6

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills