企业业务快照_business-pulse
以下为本文档的中文说明该技能为中小企业主生成一页纸的跨职能业务快照整合来自多个数据源的实时信息形成一个可快速扫描的业务简报。技能的核心能力是主动调用所有可用的数据连接器将零散的业务数据综合为有洞察力的摘要并指出当天最关键的一个行动项。技能的工作流程是并行拉取数据——一次性地从所有连接的系统中获取最新信息从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)

相关新闻

多智能体系统部署挑战与DeepSeek解决方案

多智能体系统部署挑战与DeepSeek解决方案

1. 多智能体系统部署现状与挑战 多智能体系统(MAS)正在从实验室走向真实世界,但这条落地之路远比我们想象的要崎岖。去年我在参与一个智慧物流园区项目时,亲眼目睹了12台AGV小车因为通信延迟导致的"死锁"场面——这些价值数百万的设备像无头苍…

2026/7/27 8:53:28阅读更多 →
基于DM642 DSP的实时JPEG网络摄像头系统设计与优化实践

基于DM642 DSP的实时JPEG网络摄像头系统设计与优化实践

1. 项目概述与核心价值 在嵌入式视觉处理领域,如何将实时采集的视频流高效压缩并通过网络分发,一直是个经典且充满挑战的课题。尤其是在安防监控、工业检测这些对实时性和成本都极为敏感的场合,一个稳定、高效、可复现的解决方案就是工程师手…

2026/7/27 8:51:28阅读更多 →
5G核心网与网络切片渗透测试:从协议解析到云原生安全的实战指南

5G核心网与网络切片渗透测试:从协议解析到云原生安全的实战指南

1. 项目概述:为什么5G核心网与切片安全测试是当下必修课最近几年,我身边越来越多的安全研究员和渗透测试工程师开始把目光从传统的Web应用、内网渗透,转向了5G核心网和网络切片这个领域。这绝不是跟风,而是因为5G网络正在从“通信…

2026/7/27 8:51:28阅读更多 →
水下图像增强的多融合技术实践与优化

水下图像增强的多融合技术实践与优化

1. 水下图像增强的技术挑战与多融合方案价值 水下图像增强一直是计算机视觉领域极具挑战性的研究方向。作为一名长期从事图像处理算法开发的工程师,我在实际项目中深刻体会到水下环境给图像质量带来的多重影响。当光线进入水体后,不同波长的光会以不同速…

2026/7/27 10:36:27阅读更多 →
AI驱动的星际合作协议测试技术与实践

AI驱动的星际合作协议测试技术与实践

1. 星际合作协议测试的行业背景与挑战 2026年的太空探索领域正经历着前所未有的商业化浪潮。随着各国私营企业纷纷加入月球基地建设、小行星采矿等项目中,星际合作协议的复杂程度呈指数级增长。一份典型的商业太空合作协议可能同时涉及资源开采权分配、轨道数据共享…

2026/7/27 10:36:27阅读更多 →
如何安装Jellyfin Youtube Metadata Plugin?3种方法快速上手教程

如何安装Jellyfin Youtube Metadata Plugin?3种方法快速上手教程

如何安装Jellyfin Youtube Metadata Plugin?3种方法快速上手教程 【免费下载链接】jellyfin-youtube-metadata-plugin Youtube Metadata Plugin for Jellyfin 项目地址: https://gitcode.com/gh_mirrors/je/jellyfin-youtube-metadata-plugin Jellyfin Youtu…

2026/7/27 10:36:27阅读更多 →
如何在3分钟内打造你的Zotero专属应用商店?Zotero插件市场深度解析

如何在3分钟内打造你的Zotero专属应用商店?Zotero插件市场深度解析

如何在3分钟内打造你的Zotero专属应用商店?Zotero插件市场深度解析 【免费下载链接】zotero-addons Zotero Add-on Market | Zotero插件市场 | Browsing and installing plugins within Zotero 项目地址: https://gitcode.com/gh_mirrors/zo/zotero-addons 还…

2026/7/27 10:36:27阅读更多 →
数字电源时序管理实战:TI Fusion GUI配置UCD90xxx全流程解析

数字电源时序管理实战:TI Fusion GUI配置UCD90xxx全流程解析

1. 项目概述:数字电源管理的GUI化革命在服务器主板、高端通信设备或者复杂的工业控制板卡上,你很可能见过这样的场景:十几路甚至几十路不同电压的电源轨,它们不能同时上电,也不能随意断电。CPU核心电压必须先于I/O电压…

2026/7/27 10:36:27阅读更多 →
DP83849I以太网PHY PCB布局实战:差分信号、阻抗控制与EMI优化

DP83849I以太网PHY PCB布局实战:差分信号、阻抗控制与EMI优化

1. 项目概述与核心挑战在工业自动化、医疗仪器或任何需要可靠网络连接的嵌入式系统中,以太网物理层(PHY)芯片的PCB布局设计,往往是决定整个系统通信稳定性的“隐形战场”。你可能选用了性能卓越的DP83849I这款双端口10/100 Mbps以…

2026/7/27 10:34:27阅读更多 →
覆盖国产 + 海外 + 开源模型,OpenClaw 2.7.9 Windows/Mac 双端部署详解

覆盖国产 + 海外 + 开源模型,OpenClaw 2.7.9 Windows/Mac 双端部署详解

🔹 工具基础介绍 OpenClaw 是开源生态中一款实用性较强的本地智能工具,凭借本地离线运行、可视化图形操作和任务自动化三大核心特性,赢得了众多用户的青睐。与普通在线对话AI工具不同,它属于能够直接操控本机软硬件的智能数字员工…

2026/7/27 1:14:34阅读更多 →
伺服阀焊完微漏毁整机?精密激光焊接三关锁住高压

伺服阀焊完微漏毁整机?精密激光焊接三关锁住高压

所谓液压伺服阀体的精密激光焊接,是用激光束对阀座壳体(通常为不锈钢或铝合金)进行密封焊接,使阀体在21-35MPa的高压液压油或压缩气体中长期运行而不发生介质泄漏。液压伺服阀是高端液压系统的"大脑"。从航空航天飞行控…

2026/7/27 1:14:52阅读更多 →
D2DX:三步实现《暗黑破坏神2》高清宽屏体验的终极指南

D2DX:三步实现《暗黑破坏神2》高清宽屏体验的终极指南

D2DX:三步实现《暗黑破坏神2》高清宽屏体验的终极指南 【免费下载链接】d2dx D2DX is a complete solution to make Diablo II run well on modern PCs, with high fps and better resolutions. 项目地址: https://gitcode.com/gh_mirrors/d2/d2dx 你是否还在…

2026/7/27 1:14:56阅读更多 →
SPI实战指南:从时钟模式到寄存器配置,解决嵌入式通信难题

SPI实战指南:从时钟模式到寄存器配置,解决嵌入式通信难题

1. 项目概述:从寄存器手册到实战指南 如果你手头有一份类似德州仪器(TI)TMS320x240xA系列DSP的SPI模块技术手册,看着里面密密麻麻的寄存器位定义、时序图和公式,是不是感觉头大?这份资料虽然权威&#xff0…

2026/7/27 0:00:24阅读更多 →
【JAVA毕设源码分享】基于springboot的水果购物管理系统的设计与实现(程序+文档+代码讲解+一条龙定制)

【JAVA毕设源码分享】基于springboot的水果购物管理系统的设计与实现(程序+文档+代码讲解+一条龙定制)

博主介绍:✌️码农一枚 ,专注于大学生项目实战开发、讲解和毕业🚢文撰写修改等。全栈领域优质创作者,博客之星、掘金/华为云/阿里云/InfoQ等平台优质作者、专注于Java、小程序技术领域和毕业项目实战 ✌️技术范围:&am…

2026/7/27 0:00:24阅读更多 →
2007-2023年各市区县生态文明建设示范区DID

2007-2023年各市区县生态文明建设示范区DID

数据简介 自改革开放以来,我国依赖高投入、高资源消耗和高污染等传统发展模式实现了经济短期内的快速增长, 然而这也导致了严重的生态环境危机。因此,国家有力于推动企业高质量经济发展,协同生态保护的方针,从而从201…

2026/7/27 0:00:24阅读更多 →
YOLOv8推理性能优化:从1.2FPS到35FPS的全链路加速实践

YOLOv8推理性能优化:从1.2FPS到35FPS的全链路加速实践

如果你在部署 YOLOv8 时,发现推理速度只有可怜的 1-2 FPS,而别人的演示视频却能跑到 30 FPS 以上,那么问题很可能不在模型本身,而在于你的整个处理链路。很多开发者拿到一个训练好的 YOLOv8 模型后,会直接使用官方示例…

2026/7/25 23:03:25阅读更多 →
Coze与Dify对比指南:低代码AI应用开发从入门到实战

Coze与Dify对比指南:低代码AI应用开发从入门到实战

1. 从零到一:为什么你需要了解 Coze 和 Dify?如果你对 AI 应用开发感兴趣,但一看到“大模型”、“智能体”、“工作流”这些词就头疼,觉得门槛太高,那这篇文章就是为你准备的。很多开发者,包括我自己&#…

2026/7/26 19:05:21阅读更多 →
AI生图工具怎么选?2026年6月版实测对比

AI生图工具怎么选?2026年6月版实测对比

做自媒体的朋友应该都有体会:配图一直是个让人头疼的问题。2026年,AI生图工具已经非常成熟了,但工具太多反而不知道怎么选。以下是截至2026年6月我对主流AI生图工具的实测对比。Midjourney V8.1:速度之王2026年6月11日&#xff0c…

2026/7/26 19:05:21阅读更多 →