可视化设计专家,擅长图表创建、数据可视化、配色方案。 自动触发于用户意图包含: <example>做个图表</example> <example>创建可视化</example> <example>画个柱状图</example> <example>数据可视化</example> <example>做个饼图</example>
WPS JS 代码审查专家,在代码执行前检查质量和兼容性问题。 自动触发于代码生成后、执行前,或用户意图包含: <example>检查代码</example> <example>代码有问题</example> <example>为什么报错</example> <example>执行失败</example> <example>应用不上去</example> <example>review</example>
数据清洗专家,擅长去重、格式统一、异常值处理、缺失值填充。 自动触发于用户意图包含: <example>清洗数据</example> <example>去重</example> <example>去除空白</example> <example>统一格式</example> <example>修正异常值</example> <example>填充缺失值</example> <example>数据规范化</example>
数据分析专家,擅长统计分析、趋势识别、数据洞察、描述性统计。 自动触发于用户意图包含: <example>分析这些数据</example> <example>给我一个统计摘要</example> <example>这些数据有什么趋势</example> <example>帮我做个数据透视</example> <example>对比分析</example> <example>环比同比</example>
公式专家,擅长复杂公式设计、数组公式、VLOOKUP/INDEX-MATCH、条件公式。 自动触发于用户意图包含: <example>写个公式</example> <example>公式怎么写</example> <example>VLOOKUP</example> <example>条件求和</example> <example>数组公式</example> <example>SUMIFS</example> <example>INDEX MATCH</example>
条件格式与表格美化 — FormatConditions API、数据条、色阶、一键美化方案
数据解读与分析 — 统计方法、趋势分析、透视汇总、结论输出规范
数据清洗最佳实践 — 空值处理、去重、格式统一、异常值检测、分列操作
股票估值报告引擎 — 数据质量门控/多方法估值/质量评估/风险矩阵/决策框架的 Excel 完整估值工作簿
投行级金融建模引擎 — 公式驱动的多Sheet专业DCF/估值模型
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
WPS Office Excel AI 助手——通过自然语言对话操控表格,由 Claude API 驱动。
┌─────────────┐ ┌──────────────────┐ ┌─────────────────┐
│ WPS Excel │◄───►│ Proxy Server │◄───►│ React TaskPane │
│ Plugin Host│ │ (Express :3001) │ │ (Vite :5173) │
│ main.js │ │ proxy-server.js │ │ src/App.tsx │
└─────────────┘ └──────────────────┘ └─────────────────┘
│ │ │
│ WPS ET API │ Claude CLI (SSE) │ 用户对话
│ 读写表格数据 │ Skill/Mode 匹配 │ Markdown 渲染
│ 代码执行 │ Session 持久化 │ 代码高亮+执行
│ │ MCP Connectors │ 模式切换
npm install -g @anthropic-ai/claude-code && claude logingit clone https://github.com/claude-office-skills/claude-wps-plugin.git
cd claude-wps-plugin
cp .env.example .env
编辑 .env 选择模型(默认 Sonnet 4.5):
VITE_CLAUDE_MODEL=claude-sonnet-4-5
npm install
# 一键启动(Proxy + Dev Server)
npm start
# 或分别启动
npm run proxy # 启动代理服务器 :3001
npm run dev # 启动前端开发服务器 :5173
打开 http://localhost:5173 即可预览插件 UI,工作在 Mock 模式(模拟 WPS 数据)。
自动安装(推荐):
# macOS 一键启动 + 注入 WPS
bash install-to-wps.sh
# 或双击「启动插件.command」
手动安装:
manifest.xmlnpm run build # Vite 前端构建
npm run build:dist # 完整分发包(Skill 嵌入 + 混淆 + tarball)
claude-wps-plugin/
├── src/ # React 前端(TaskPane 侧边栏)
│ ├── api/
│ │ ├── claudeClient.ts # Claude API 调用(SSE 流式响应)
│ │ ├── wpsAdapter.ts # WPS JS API 封装 + Mock 模式
│ │ └── sessionStore.ts # 会话持久化(CRUD + 记忆)
│ ├── components/
│ │ ├── CodeBlock.tsx # 代码块(语法高亮 + Run/Copy)
│ │ ├── MessageBubble.tsx # 消息气泡(Markdown 渲染)
│ │ ├── QuickActionCards.tsx # 快捷命令卡片(按模式切换)
│ │ ├── ModeSelector.tsx # 交互模式选择器(Agent/Plan/Ask)
│ │ ├── ModelSelector.tsx # AI 模型选择器
│ │ ├── AttachmentMenu.tsx # 附件菜单(剪贴板/PDF/图片)
│ │ └── HistoryPanel.tsx # 历史会话面板
│ ├── App.tsx # 主应用(对话 + 状态管理)
│ └── types.ts # TypeScript 类型定义
├── proxy-server.js # Express 代理服务器(:3001)
├── skills/ # 技能系统
│ ├── bundled/ # 内置 Skills(9 个)
│ │ ├── wps-core-api/ # WPS ET API 完整参考
│ │ ├── code-rules/ # 代码生成规范
│ │ ├── data-cleaning/ # 数据清洗
│ │ ├── formula-operations/ # 公式运算
│ │ ├── conditional-formatting/ # 条件格式
│ │ ├── data-analysis/ # 数据分析
│ │ ├── financial-modeling/ # 金融建模
│ │ ├── chart-creation/ # 图表创建
│ │ └── template-generation/ # 模板生成
│ ├── modes/ # 交互模式(3 个)
│ │ ├── agent/ # 自动执行模式
│ │ ├── plan/ # 步骤规划模式
│ │ └── ask/ # 只读分析模式
│ ├── connectors/ # MCP 连接器(2 个)
│ │ ├── web-search/ # 网络搜索
│ │ └── knowledge-base/ # 企业知识库
│ └── workflows/ # 工作流模板(1 个)
│ └── monthly-report/ # 月度报告生成
├── commands/ # 快捷命令(14 个 .md 文件)
├── wps-addon/ # WPS 加载项运行时
│ ├── main.js # Plugin Host 入口
│ ├── ribbon.xml # Ribbon 栏 UI 定义
│ └── *.png # 图标资源
├── manifest.xml # WPS 加载项清单
├── .claude-plugin/plugin.json # 插件元数据
├── .mcp.json # MCP 连接器配置
├── AGENTS.md # AI Agent 行为定义
├── CONNECTORS.md # 连接器使用说明
├── build-dist.mjs # 生产构建脚本
├── install-to-wps.sh # 自动安装脚本
└── 启动插件.command # macOS 双击启动器
在 WPS 中选中数据区域,然后在对话框输入:
"删除 A 列中的重复内容,保留第一条""把 B 列的日期统一转换成 YYYY-MM-DD 格式""统计 C 列的平均值和总和""删除所有空白行""把第一行设置为加粗并填充灰色背景""生成一个销售数据柱状图""智能填充缺失的邮编数据"npx claudepluginhub claude-office-skills/claude-office-pluginGenerate diagrams, flowcharts, and visual representations from text descriptions. Helps media planners and strategists visualize campaign flows and data structures.
WPS Office Excel AI 数据处理助手 — Skills-Driven 全文件驱动架构
通过 WPS Office COM 自动化驱动 Word/Excel/PPT/PDF — 76 条 CLI 命令,100% 格式保真,内置 MCP 服务器,适配 AI Agent 和自动化流水线
Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas
Official OpenAI skills for PDF, Word, PowerPoint, and Excel document processing.
Professional document processing suite: 3 comprehensive skills for Word (.docx), Excel (.xlsx), and PDF files - create, edit, analyse, and process documents with advanced features like tracked changes, forms, tables, OCR, and formulas
Use when tasks involve creating, editing, analyzing, or formatting spreadsheets (`.xlsx`, `.csv`, `.tsv`) using Python (`openpyxl`, `pandas`), especially when formulas, references, and formatting need to be preserved and verified. Originally from OpenAI's curated skills catalog.
Professional financial modeling toolkit for Claude Code with auto-invoked Skills and Excel MCP integration. Build DCF models, LBO analysis, variance reports, and pivot tables using natural language.