一键导入
wps-skills
WPS Office 智能助手 - AI编程助手通过自然语言操控WPS Office的MCP工具集。支持Excel(80工具) / Word(24工具) / PPT(111工具) / 通用(9工具)。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
WPS Office 智能助手 - AI编程助手通过自然语言操控WPS Office的MCP工具集。支持Excel(80工具) / Word(24工具) / PPT(111工具) / 通用(9工具)。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Claude Code 无限开发循环技能 - 让 Claude 成为无限开发循环:spec → feature list → implement → test → commit → repeat,跨无限制上下文窗口。
专业 PPT 演示文稿全流程 AI 生成助手。模拟万元/页级别 PPT 设计公司的完整工作流,输出高质量 HTML 演示文稿 + 可编辑矢量 PPTX。
小红书内容自动化 — 监控关键词、生成爆款文案、自动发布。 基于 Agent-Reach 实现小红书阅读、搜索、发帖、评论、点赞。 适用于博物馆/文博/文物等垂直领域,也支持通用爆款生成。
Comprehensive Git operations for repository management. Use when working with Git repositories for: - Committing changes (git commit with conventional commits format) - Creating branches (feature, bugfix, hotfix branches) - Stashing changes - Viewing history, diffs, and status - Merging and rebasing - Creating pull requests (GitHub, GitLab) - Undoing commits and changes - Syncing with remote (push, pull, fetch)
Universal HTTP retry mechanism with exponential backoff. Use when making API calls that may fail due to network issues, timeouts, or rate limits.
Aggregate and summarize AI/LLM/Agent news from multiple sources. Use when user needs latest AI news, GitHub trending, research papers, or daily AI briefing. Supports Hacker News, GitHub Trending, arXiv, and Hugging Face.
基于 SOC 职业分类
| name | wps-skills |
| version | 1.0.0 |
| description | WPS Office 智能助手 - AI编程助手通过自然语言操控WPS Office的MCP工具集。支持Excel(80工具) / Word(24工具) / PPT(111工具) / 通用(9工具)。 |
| emoji | 📊 |
| category | Productivity |
| tags | ["WPS","Office","Excel","Word","PPT","MCP","Automation"] |
| author | lc2panda |
| repoUrl | https://github.com/lc2panda/wps-skills |
WPS Office 智能助手,让 AI 能够通过自然语言操控 WPS Office。
git clone https://github.com/lc2panda/wps-skills.git
cd wps-skills
cd wps-office-mcp
npm install
npm run build
cd ..
Claude Code — 写入 ~/.claude/settings.json:
{
"mcpServers": {
"wps-office": {
"command": "node",
"args": ["/你的路径/wps-skills/wps-office-mcp/dist/index.js"]
}
}
}
Cursor — 写入项目根目录 .cursor/mcp.json:
{
"mcpServers": {
"wps-office": {
"command": "node",
"args": ["/你的路径/wps-skills/wps-office-mcp/dist/index.js"]
}
}
}
macOS:
bash scripts/auto-install-mac.sh
Windows (PowerShell):
powershell scripts/install.ps1
Linux:
bash scripts/install.sh
⚠️ 安装后必须重启 WPS Office 才能生效。
# 创建skills目录(如不存在)
mkdir -p ~/.claude/skills
# 创建符号链接
ln -sf "$(pwd)/skills/wps-excel" ~/.claude/skills/wps-excel
ln -sf "$(pwd)/skills/wps-word" ~/.claude/skills/wps-word
ln -sf "$(pwd)/skills/wps-ppt" ~/.claude/skills/wps-ppt
ln -sf "$(pwd)/skills/wps-office" ~/.claude/skills/wps-office
node wps-office-mcp/dist/index.js &
# 应看到 "MCP Server started successfully" 日志
kill %1 2>/dev/null
| 问题 | 解决方案 |
|---|---|
| MCP连接失败 | 确认 npm install && npm run build 已执行,检查dist/index.js存在 |
| WPS未响应 | 重启WPS Office,确认加载项已安装 |
| "arguments error" | 重新运行安装脚本,重启WPS |
| Linux找不到插件 | 查看INSTALL.md中的Linux专用指南 |
| 工具调用返回null | 确认WPS中已打开对应类型的文档 |
Skills层(SKILL.md自然语言指导)
↓ Claude Code调用
MCP Server层(236个工具)
↓ wpsClient.executeMethod()
执行层
├── macOS: wps-claude-assistant (224 action, HTTP轮询)
└── Windows: wps-com.ps1 (235 action, COM接口)