以下为本文档的中文说明该技能为中小企业主生成一页纸的跨职能业务快照整合来自多个数据源的实时信息形成一个可快速扫描的业务简报。技能的核心能力是主动调用所有可用的数据连接器将零散的业务数据综合为有洞察力的摘要并指出当天最关键的一个行动项。技能的工作流程是并行拉取数据——一次性地从所有连接的系统中获取最新信息从QuickBooks获取现金余额、月度收入、应收款项和逾期发票从PayPal/Square获取7天结算金额、销售趋势和失败/待处理交易从HubSpot获取按阶段划分的管道、移动/关闭的交易、变冷的交易以及新线索从Google日历获取本周承诺的会议和事件从Gmail/Slack获取紧急的关注列表。所有数据收集后技能会将其综合为一页纸的快照包括现金状况仪表盘、销售趋势概览、管道健康度检查、本周关键承诺以及最需要关注的一个事项。使用场景包括每天早上获取业务概览、周一的周报生成、以及任何时候当用户询问“业务怎么样了”或“我错过了什么”时。核心原则是“不提问直接做”——技能会主动尝试每一个可用的连接器不要求用户提供数据来源有多少连接器就生成多大范围的快照而不是因为没有全部连接就放弃。技能在数据综合阶段使用了智能摘要算法不是简单罗列数据而是主动识别趋势变化和异常信号。例如它会对比本周与上周的现金余额变化趋势、标记销售额的异常波动、识别管道中长时间未推进的停滞交易、以及从通讯中提取需要紧急处理的事项。输出的业务快照采用结构化格式每个模块都有清晰的视觉分隔和关键数据突出显示让忙碌的企业主可以在30秒内掌握全貌。技能还会根据当前业务状况给出可操作的建议例如现金余额低于安全线时的节约建议、销售趋势下滑时的营销策略建议、管道中关键交易停滞时的跟进提醒等。核心设计理念是让数据为决策服务而非让用户在海量数据中自行寻找答案。Business PulseOne prompt, one page. Pull live data from every connected tool, synthesize it into a single scannable brief, and surface the single most important thing to act on today. Do the work — don’t ask the user to help find the data.Step 1 — Pull data in parallelDispatch all connector calls in a single parallel batch— seereference/data_sources.mdfor the exact tool-to-metric mapping. Do not pull serially; latency turns a 30-second skill into a painful wait.Connectors to attempt simultaneously:QuickBooks— cash balance, MTD revenue, outstanding receivables, overdue invoicesPayPal / Square— 7-day settlements, sales trend, failed/pending transactionsHubSpot— pipeline by stage, deals moved/closed, deals gone cold, new leadsGoogle Calendar— key meetings, deadlines, events this week and next 7 daysGmail— threads flagged urgent, customer complaints, time-sensitive requestsSlack / Teams— urgent internal signals, threads needing owner attentionIntercom / Zendesk— open tickets, escalations (if connected)Shopify / Square— fulfillment issues (if connected)If a connector errors or returns no data, record it internally and move on. Never block the pulse on a single bad integration.QuickBooks fallback: if QBO returns an unexpected state (account not connected, sync pending, empty response), mark the Cash section “n/a — QuickBooks unavailable” and proceed. Do not retry or ask the user to reconnect.Gmail fallback: Gmail auth is intermittently flaky. If the call errors, skip the Watch List section silently and note “Gmail unavailable” in the appendix — do not surface an error mid-pulse.Step 2 — Compute metricsReadreference/thresholds.mdfor red/yellow/green cutoffs. Compute:AR aging— open QuickBooks invoices grouped by days since due date (0–30, 31–60, 61)Pipeline coverage— HubSpot weighted pipeline ÷ monthly revenue targetRevenue trend— this month’s QBO revenue vs. prior month (or 7-day PayPal/Square vs. prior 7 days)Assign a // status to each section. If a source returned nothing, mark the metric “n/a” and note it in the appendix.Step 3 — Flag risks proactivelyScan for actionable items. Every risk entry must name a specific record and a next step — “some overdue invoices” is useless; “$3,400 from Acme Corp, 47 days overdue, no response since Mar 12” is actionable.QuickBooks invoices past due 30 days — name customer, amount, days overdueHubSpot deals with no activity in 7 days, or close date in past but still openGmail threads marked urgent or containing “escalation,” “complaint,” “cancel,” “refund”Failed or pending PayPal/Square transactions $500Step 4 — Compose the outputUse the exact template inreference/output_template.md. Include only sections where real data exists — omit headers for connectors that weren’t available. Adapt depth to context: a casual “how are we doing” gets a fuller report; “quick snapshot before a call” gets a tighter one.Cross-connector synthesis is where this skill earns its keep. If a Slack message connects to a stalled HubSpot deal, surface that link in the #1 Priority section. Synthesis is what makes the pulse more useful than checking each tool separately.Writing rules:Numbers lead, words follow. Never write “revenue is healthy” — write “$43k this month, ▲ 8% MoM” and let the owner judge.Every number carries a delta vs. the prior period where available. Absolute snapshots (cash balance) still show WoW delta.Names and dollars, not adjectives. “$4,200 from Acme, 23 days overdue” beats “some concerning receivables.”No filler. If a section has nothing worth reporting, write “No material changes” and move on.Step 5 — Export and share (once)After presenting the pulse, offer once:“Want me to save this as a file?” (use Files connector if available)“Should I post this to your Slack?” (only if Slack is connected and the user confirms — Slack write requires explicit approval)If they say yes, do it. If they say no or don’t respond, move on — don’t ask again.Scope variantsThe owner may ask for a narrower cut:“Just cash” / “financial check”→ only Cash Finance AR-related risks“Pipeline only” / “deals check”→ only Pipeline section stalled-deal risks“Watch list” / “anything urgent”→ only Watch List all risks, no metric sections“Quick snapshot before a call”→ TL;DR #1 Priority only, no full sectionsWhat not to doDo not ask permission before pulling data.If the skill was invoked, run it. Asking “should I check QuickBooks?” defeats the whole point.Do not invent or estimate numbers.If a source returned nothing, say “n/a” explicitly. Never fill a gap with guesswork.Do not skip the delta.A number without a comparison is a missed insight. If there’s no prior-period baseline, say “(no prior baseline)” rather than omitting the field.Do not surface connector errors mid-pulse.Log them to the appendix. The pulse leads with what was delivered.Reference filesreference/data_sources.md— exact connector tool → metric mapping with fallbacksreference/thresholds.md— // cutoffs, tunable per ownerreference/output_template.md— exact markdown structure; do not deviatereference/gotchas.md— known failure modes (QB states, Gmail auth, Slack write)
企业数字化 ERP 产品动态
相关推荐
多智能体系统部署挑战与DeepSeek解决方案 1. 多智能体系统部署现状与挑战 多智能体系统(MAS)正在从实验室走向真实世界,但这条落地之路远比我们想象的要崎岖。去年我在参与一个智慧物流园区项目时,亲眼目睹了12台AGV小车因为通信延迟导致的"死锁"场面——这些价值数百万的设备像无头苍… · 2026/8/2 20:40:31
精通Blender MMD工具:从导入到渲染的完整实战指南 精通Blender MMD工具:从导入到渲染的完整实战指南 【免费下载链接】blender_mmd_tools mmd_tools is a blender addon for importing Models and Motions of MikuMikuDance. 项目地址: https://gitcode.com/gh_mirrors/ble/blender_mmd_tools
Blender MMD工具… · 2026/8/5 9:19:25
政府主导的元宇宙创新平台和企业自建平台相比,哪种模式更适合区域性产业培育? 核心要点:
区域性产业培育面临技术转移与成果转化的结构性痛点,亟需数智化平台支撑。政府主导平台在资源整合、产学研对接上具有广度优势,企业自建平台在垂直场景效率突出。基于国家标准与数智工具(如GB/T 44731-2024评估规范&… · 2026/9/22 13:38:09
做新媒体的小说网站实战案例:搞定备案不头疼 做新媒体的小说网站实战案例:搞定备案不头疼 备案号还没下来,服务器就被运营商断网,这种憋屈事你遇到过吗?做新媒体的小说网站,最让人头大的往往不是代码写不出来,而是备案流程一头雾水。我见过太多创业者,站点做得花里胡哨,结果卡在工信部ICP备案… · 2026/9/27 2:35:04
树莓派5双2.5G网口扩展实战:PCIE Switch实现NVMe与网卡共存 /* MD / 富文本中的 .toc(含博客园搬家等嵌套结构);.toc-box 在侧栏,不受影响 */#content_views .toc,/* 编辑器常在目录前后插入空 p(:empty 仍占 20px),一并去掉避免顶空隙 */#content_views.markdown_views > p:empty:has(+ .toc),#content_views.markdown_views … · 2026/9/27 2:34:58
25个真正可用的SVG图标网站推荐(开发者实测) /* MD / 富文本中的 .toc(含博客园搬家等嵌套结构);.toc-box 在侧栏,不受影响 */#content_views .toc,/* 编辑器常在目录前后插入空 p(:empty 仍占 20px),一并去掉避免顶空隙 */#content_views.markdown_views > p:empty:has(+ .toc),#content_views.markdown_views … · 2026/9/27 2:34:58
内存测试核心:Shmoo图与RMT分析原理及工程实践 /* MD / 富文本中的 .toc(含博客园搬家等嵌套结构);.toc-box 在侧栏,不受影响 */#content_views .toc,/* 编辑器常在目录前后插入空 p(:empty 仍占 20px),一并去掉避免顶空隙 */#content_views.markdown_views > p:empty:has(+ .toc),#content_views.markdown_views … · 2026/9/27 2:34:52
全志T113-S3 RGB屏移植避坑指南:从设备树到LVGL触摸校准 /* MD / 富文本中的 .toc(含博客园搬家等嵌套结构);.toc-box 在侧栏,不受影响 */#content_views .toc,/* 编辑器常在目录前后插入空 p(:empty 仍占 20px),一并去掉避免顶空隙 */#content_views.markdown_views > p:empty:has(+ .toc),#content_views.markdown_views … · 2026/9/27 2:34:52
C++小游戏实战:从猜数字到丧尸生存,串联高频语法考点 /* MD / 富文本中的 .toc(含博客园搬家等嵌套结构);.toc-box 在侧栏,不受影响 */#content_views .toc,/* 编辑器常在目录前后插入空 p(:empty 仍占 20px),一并去掉避免顶空隙 */#content_views.markdown_views > p:empty:has(+ .toc),#content_views.markdown_views … · 2026/9/27 2:34:45
MATLAB雷达信号脉冲压缩仿真:LFM线性调频、匹配滤波与距离分辨率实现 简介:这套Matlab仿真工具完整呈现雷达信号脉冲压缩过程,从线性调频(LFM)信号生成、目标回波仿真到匹配滤波压缩处理均有可运行代码支撑,面向电子信息工程、计算机、数学等专业学生,适用于课程设计、期末大作… · 2026/9/27 0:00:01
汕头网站建设制作厂家避坑指南:5大注意事项救急 汕头网站建设制作厂家避坑指南:5大注意事项救急 改个需求建站公司拖一周,这种憋屈事我见得太多了。 很多汕头老板找本地建站团队,签合同前看着方案挺美,一上线就变脸。 今天不聊虚的,直接拆解找 汕头网站建设制作厂家 时的5个核心 注意事项… · 2026/9/27 0:00:01
多模态虚假新闻检测实战:BERT+ResNet双塔与对比学习 简介:基于PyTorch的多模态虚假新闻检测项目完整代码包,面向自然语言处理与计算机视觉交叉方向的开发者、科研人员及毕业设计选题者,解决社交媒体中文本与图像联合识别虚假新闻的问题。系统以BERT预训练模型提取文本语义特征,以Res… · 2026/9/27 0:00:01
MATLAB雷达信号脉冲压缩仿真:LFM线性调频、匹配滤波与距离分辨率实现 简介:这套Matlab仿真工具完整呈现雷达信号脉冲压缩过程,从线性调频(LFM)信号生成、目标回波仿真到匹配滤波压缩处理均有可运行代码支撑,面向电子信息工程、计算机、数学等专业学生,适用于课程设计、期末大作… · 2026/9/27 0:00:01
汕头网站建设制作厂家避坑指南:5大注意事项救急 汕头网站建设制作厂家避坑指南:5大注意事项救急 改个需求建站公司拖一周,这种憋屈事我见得太多了。 很多汕头老板找本地建站团队,签合同前看着方案挺美,一上线就变脸。 今天不聊虚的,直接拆解找 汕头网站建设制作厂家 时的5个核心 注意事项… · 2026/9/27 0:00:01
多模态虚假新闻检测实战:BERT+ResNet双塔与对比学习 简介:基于PyTorch的多模态虚假新闻检测项目完整代码包,面向自然语言处理与计算机视觉交叉方向的开发者、科研人员及毕业设计选题者,解决社交媒体中文本与图像联合识别虚假新闻的问题。系统以BERT预训练模型提取文本语义特征,以Res… · 2026/9/27 0:00:01