ClawHeart
Free tool · Local-first

SkillRouter

A local skills manager for Claude Code, Codex, OpenEva, and other Agents. Discover skills online, install them into a local center, and expose them through MCP.

Free

The current release is free to download and use. SkillRouter focuses on a lightweight skills center, usage-guide index, and local MCP bridge.

Skills Center

Browse skills from the central library, filter by category, and read usage guides.

One-click Install

Install skills into the SkillRouter local center without per-Agent symlink setup.

MCP Bridge

Expose search and install actions as local MCP tools your Agent can call directly.

Browse Skills Online

This page shows public skills from the SkillRouter center. The web version is for discovery, filtering, and usage guides; installation, sync, and MCP publishing happen in the local desktop client.

Install with desktop client

Excel 文件处理最佳实践指南

100

Excel 文件处理最佳实践指南

商业地产审计证据本地 RAG 专家

97

商业地产审计证据本地 RAG 专家

奥地利官方企业注册信息查询工具

97

奥地利官方企业注册信息查询工具

全球广告情报与竞品分析专家

92

全球广告情报与竞品分析专家

多维度链上声誉智能评估

97

多维度链上声誉智能评估

AI 驱动的全球海洋安全预报

100

AI 驱动的全球海洋安全预报

精准高效的数据核对与异常监控

97

精准高效的数据核对与异常监控

数据驱动的交易复盘进化系统

100

数据驱动的交易复盘进化系统

智能恒温与环境监测专家

100

智能恒温与环境监测专家

零代码亚马逊商品数据抓取专家

97

零代码亚马逊商品数据抓取专家

透明严谨的学术研究员

100

透明严谨的学术研究员

从种子轮到A轮的数据指标罗盘

97

从种子轮到A轮的数据指标罗盘

全球滑雪场雪况实时追踪专家

100

全球滑雪场雪况实时追踪专家

实时外汇数据与智能情绪分析

97

实时外汇数据与智能情绪分析

实时资产智能追踪分析

97

实时资产智能追踪分析

透明可审计的建筑成本估算专家

98

透明可审计的建筑成本估算专家

零门槛ETF投研助手

97

零门槛ETF投研助手

专业级市场影响量化分析

97

专业级市场影响量化分析

专业级板块轮动与市场周期分析

97

专业级板块轮动与市场周期分析

数据驱动市场决策框架

100

数据驱动市场决策框架

专业级跨资产市场简报生成

92

专业级跨资产市场简报生成

日本政府官方统计数据一键查询

87

日本政府官方统计数据一键查询

纪律化预测市场决策框架

98

纪律化预测市场决策框架

零风险多策略交易学习系统

97

零风险多策略交易学习系统

带引用来源的实时AI搜索

92

带引用来源的实时AI搜索

建筑工程智能造价数据库管家

92

建筑工程智能造价数据库管家

零依赖全球市场智能分析

97

零依赖全球市场智能分析

DOJ 解密档案一键检索

92

DOJ 解密档案一键检索

Fitbit 健康数据一键查询

92

Fitbit 健康数据一键查询

专业级 A 股量化数据引擎

87

专业级 A 股量化数据引擎

专业级图表技术分析助手

97

专业级图表技术分析助手

智能 SEO 搜索数据洞察工具

97

智能 SEO 搜索数据洞察工具

毛孩子生活记录与训练助手

100

毛孩子生活记录与训练助手

NEAR生态空投智能追踪器

87

NEAR生态空投智能追踪器

专业级竞品分析与战略洞察

97

专业级竞品分析与战略洞察

本地化鸟类声音识别助手

87

本地化鸟类声音识别助手

数据分析

Excel 文件处理最佳实践指南

score 100

Excel 文件处理最佳实践指南

使用说明

## 核心用途 本 Skill 是一份关于 Microsoft Excel 工作簿处理的最佳实践文档,而非可执行工具。它系统性地指导用户如何在 Python 生态中正确处理 .xlsx、.xlsm、.xls 等格式,特别强调公式保真、日期系统、格式 preservation 和工作簿结构完整性。 ## 显著优点 1. 工作流清晰分层:明确区分 pandas(分析/CSV 任务)与 openpyxl(公式/样式/结构任务)的适用场景,避免工具误用 2. 技术细节深入:涵盖 Excel 日期系统(1900/1904)、15位精度截断、缓存值失效等真实坑点 3. 模型保真意识:强调保持工作簿"活性"——写入公式而非硬编码结果,验证引用完整性,避免 #REF! 等残留错误 4. 模板尊重原则:要求保留现有模板的视觉系统、冻结窗格、打印设置、数据验证等隐性业务逻辑 ## 潜在局限 - 纯文档无代码:仅提供指导原则,不包含可运行的封装函数或 API - 需配合工具使用:实际执行仍需用户自行组合 openpyxl、pandas 等库 - 高级功能覆盖有限:动态数组函数(FILTER、XLOOKUP 等)仅提及兼容性风险,未展开处理策略 - 性能优化较简略:大文件流式处理仅点到为止,缺乏完整实现示例 ## 适合人群 - 需要用 Python 生成或修改 Excel 报表的数据工程师 - 维护财务模型、预算模板等"活工作簿"的分析师 - 追求跨平台(Windows/Mac/云)Excel 文件兼容性的开发者 ## 常规风险提示 - 误读 "cached values" 可能导致发送含过期数据的工作簿 - 公式复制时未检查相对/绝对引用会造成隐蔽计算错误 - .xlsm 宏文件存在潜在安全风险,但本 Skill 本身不含宏代码 - 新旧 Excel 版本函数兼容性差异可能导致接收方无法正常显示

excelxlsxspreadsheetopenpyxlpandasdata-exportformula-handlingdocument-skillno-code

How Agents Use SkillRouter

  1. 1The user asks an Agent for a capability, for example: find a PPT skill.
  2. 2The Agent calls search_skills through SkillRouter MCP and searches local and remote skills.
  3. 3After confirmation, the Agent calls install_skill_to_center to install the selected skill.
  4. 4Future tasks can read the installed skill's instructions, scope, and usage workflow.

Install in Agent / OpenEva

Add this config to any HTTP MCP client to let your Agent call SkillRouter.

{
  "mcpServers": {
    "skillrouter": {
      "type": "http",
      "url": "http://127.0.0.1:18650/mcp"
    }
  }
}

Example Prompts

Use skillrouter to search for PPT skills
Find the high-conversion WeChat Moments copy diagnosis skill
Install this skill into the SkillRouter center

Download SkillRouter

Install the local desktop client to expose SkillRouter as an MCP service and let Agents call search and install tools.

The macOS builds are signed with Developer ID and notarized by Apple. If you still see a security warning, remove the old copy and download the latest build again.