sn-da-excel-workflow
Excel 数据分析多步编排器。覆盖:(1) 读取多 Sheet Excel 文件并统计行数,(2) 大文件检测(≥10k 行自动 Parquet 优化),(3) 数据清洗(缺失值、文本标准化、无效字符),(4) 条件筛选与分类提取,(5) 跨 Sheet 统计聚合,(6) 导出 Excel/CSV…
Use when a user asks what SenseNova Team Harness is, wants an introduction or overview, is getting started, or is deciding whether it fits — a self-hosted workspace where people and local AI agents collaborate on conversations, projects, work items, and artifacts. Covers its
$ npx -y skills add OpenSenseNova/SenseNova-Skills --skill sn-team-harness --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/sn-team-harnessContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when a user asks what SenseNova Team Harness is, wants an introduction or overview, is getting started, or is deciding whether it fits — a self-hosted workspace where people and local AI agents collaborate on conversations, projects, work items, and artifacts. Covers its
name: sn-team-harness description: >- Use when a user asks what SenseNova Team Harness is, wants an introduction or overview, is getting started, or is deciding whether it fits — a self-hosted workspace where people and local AI agents collaborate on conversations, projects, work items, and artifacts. Covers its core concepts (Workspace, Project, Conversation, Agent, WorkItem, Resource, Artifact, Local Computer), main capabilities, how to run it, and the basic usage flow.
SenseNova Team Harness 是一个**自托管的团队协作工作区**,让人和本地 AI Agent 围绕 同一份工作协同:讨论、待办、AI 执行和最终成果都放在同一个空间里。它把 「提出问题 → 分配工作 → 持续推进 → 交付成果」连成一条完整、可审计的协作链, 让 AI 真正作为团队成员参与,而不是把回答留在个人聊天窗口里。
| 概念 | 说明 | | --- | --- | | **Workspace** | 团队共享空间,是共享协作事实的唯一权威来源。 | | **Project** | 一个目标下的任务、讨论和交付物的集合。 | | **Conversation** | 团队讨论;可以在其中 @Agent 或创建待办。 | | **Agent** | 作为团队成员参与的 AI,绑定一台本地 Runtime 执行工作。 | | **WorkItem** | 一项待办工作,有负责人、状态和预期结果。 | | **Resource** | 人为 Project 上传的输入文件(数据、素材等),是 Agent 工作的原料,区别于 Artifact。 | | **Artifact** | Agent 产出的成果(报告、代码、方案等),独立于聊天,内容寻址、可版本化、可审核。 | | **Local Computer** | 连接服务并在成员自己电脑上运行 Agent 的本地客户端;凭据、文件和工作目录都留在本地。 |
研究与分析、产品与运营、软件研发、内容与设计、知识与流程管理,以及多人多 AI 围绕同一目标分工、由人在关键节点验收的跨角色项目。
环境要求:Node.js 24 和 npm。服务端从源码运行,不提供 Docker 镜像和 npm 包。
git clone https://github.com/OpenSenseNova/SenseNova-Skills-TeamHarness.git cd SenseNova-Skills-TeamHarness cp .env.example .env npm ci npm run dev
浏览器打开 `http://localhost:5173`。生产模式本地运行用 `npm run build` 后 `NODE_ENV=production npm start`。
1. 创建 **Workspace**,通过可撤销的 Join Link 邀请成员。 2. 创建 **Project** 和 **Agent**,为 Agent 绑定一台已上线的 **Local Computer** Runtime。 3. 在 **Conversation** 中 `@Agent`,或创建 **WorkItem** 指派负责人;把输入文件作为 **Resource** 上传到 Project。 4. Local Computer 在本地运行 Agent;Agent 读取讨论上下文和 Resource,用消息回复或发布 / 更新 **Artifact**。 5. 团队在任务看板和 Artifact 版本历史中查看进展、负责人和最终成果。 6. 并发写入冲突时,候选结果保留为本地 Held Draft,Agent 读取最新版本后显式 retry / discard / force。
密钥轮换、备份、监控、限流和威胁模型评审。
仓库内有更完整说明:`README.md` / `README_CN.md`(功能与使用)、`INSTALL.md`(安装配置)、 `local-computer/README.md`(Local Computer 与 teamctl 命令,含 `resource` / `artifact` / `message`)、 `docs/contracts/openapi.json`(HTTP 契约)。
The SenseNova model family plugs directly into agent runtimes such as OpenClaw and hermes-agent, with the skills in this repository extending the models with concrete, end-to-end office capabilities.
Repo: OpenSenseNova/SenseNova-Skills
Excel 数据分析多步编排器。覆盖:(1) 读取多 Sheet Excel 文件并统计行数,(2) 大文件检测(≥10k 行自动 Parquet 优化),(3) 数据清洗(缺失值、文本标准化、无效字符),(4) 条件筛选与分类提取,(5) 跨 Sheet 统计聚合,(6) 导出 Excel/CSV…
当Excel文件总行数超过1万行时,通过转换为Parquet格式提升读取性能,提取目标指标并计算最大值,最后将结果输出为Excel并对特定行进行高亮标注。
根据Excel总行数自动切换Parquet加速读取,计算特定维度的时间序列平均值,并使用openpyxl输出带有条件格式(如低于均值标绿)和自定义样式的分析报告。
根据数据规模动态选择处理策略,对多表数据进行合并、统计筛选,并利用 openpyxl 实现关键指标的自动化样式高亮与格式化导出。