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

零风险 AI 人格蜕变引擎

100

零风险 AI 人格蜕变引擎

让AI主动预判需求,持久记忆不失联

87

让AI主动预判需求,持久记忆不失联

极致理性的永生者语态转换

100

极致理性的永生者语态转换

越用越懂你的AI记忆进化系统

97

越用越懂你的AI记忆进化系统

结构化记忆,可验证的Agent知识图谱

92

结构化记忆,可验证的Agent知识图谱

让AI记住教训,不再重复犯错

97

让AI记住教训,不再重复犯错

时间线完整性守护顾问

100

时间线完整性守护顾问

AI 代理的持续进化引擎

100

AI 代理的持续进化引擎

AI自我进化·持续学习沉淀

92

AI自我进化·持续学习沉淀

为 AI 注入灵魂的情感引擎

100

为 AI 注入灵魂的情感引擎

多代理系统性能优化专家

100

多代理系统性能优化专家

结构化 Agent 人格设计系统

98

结构化 Agent 人格设计系统

六层架构·持久记忆·告别上下文丢失

97

六层架构·持久记忆·告别上下文丢失

发现 OpenClaw 生态技能

97

发现 OpenClaw 生态技能

审计级决策治理与结构化记录

100

审计级决策治理与结构化记录

智能经验记忆与技能进化系统

100

智能经验记忆与技能进化系统

AI 代理协作防坑指南

98

AI 代理协作防坑指南

双智能体中长期投资预测分析

97

双智能体中长期投资预测分析

AI 提示词注入多层防护系统

97

AI 提示词注入多层防护系统

OpenAI 全功能 API 集成

97

OpenAI 全功能 API 集成

五Agent协同的智能任务调度中枢

98

五Agent协同的智能任务调度中枢

思维统合的纯顾问角色助手

98

思维统合的纯顾问角色助手

本地会话历史的智能检索专家

97

本地会话历史的智能检索专家

AI 代理专用的紧凑型符号通信协议

100

AI 代理专用的紧凑型符号通信协议

交互式 AI 招聘向导,一键组建团队

100

交互式 AI 招聘向导,一键组建团队

确定性自主任务编排引擎

97

确定性自主任务编排引擎

零信任本地身份管控系统

97

零信任本地身份管控系统

LLM原生智能搜索 · S级安全

97

LLM原生智能搜索 · S级安全

火山引擎 RAG 智能检索方案

98

火山引擎 RAG 智能检索方案

全方位对抗验证与策略强化系统

97

全方位对抗验证与策略强化系统

AI 项目记忆中枢,本地隐私优先

97

AI 项目记忆中枢,本地隐私优先

让 AI 主动思考,而非被动应答

97

让 AI 主动思考,而非被动应答

Token 安全的智能提示词管家

98

Token 安全的智能提示词管家

全模态 AI 提示词工程精要

98

全模态 AI 提示词工程精要

叙事身份塑造的AI人格锻造术

98

叙事身份塑造的AI人格锻造术

智能自进化,越用越懂你

97

智能自进化,越用越懂你

AI 增强

结构化记忆,可验证的Agent知识图谱

score 92

结构化记忆,可验证的Agent知识图谱

使用说明

## 核心功能 Ontology 是一个类型化的知识图谱系统,将一切信息建模为带类型的实体(Entity)及其关系(Relation)。它提供声明式的约束验证(属性必填、枚举值、关系基数、无环依赖),并支持将多步骤规划表达为图变换序列。 ## 显著优势 - 强类型约束:在数据层面强制执行业务规则(如任务状态枚举、截止日期合法性、循环依赖阻断) - 跨技能状态共享:通过统一的实体ID和关系网络,实现Email、Task、Calendar等技能间的数据互通 - 可验证的规划:将"创建会议→关联项目→生成后续任务"等复杂流程拆解为原子操作,每步预验证、失败可回滚 - 纯本地运行:零网络依赖,数据以append-only JSONL格式存储,天然支持审计追溯 - 供应链安全:仅依赖Python标准库,无第三方包引入的CVE风险 ## 潜在局限 - 查询能力有限:复杂图遍历(多跳关系、路径搜索)需用户自行实现或迁移至SQLite - 无内置并发控制:多进程同时写入graph.jsonl可能产生冲突,需外部协调 - schema演进成本:类型定义变更后,历史数据不会自动迁移,需人工处理 - 规模天花板:JSONL格式在万级实体后查询性能下降,不适合大规模图谱 ## 适合人群 - 需要结构化记忆的个人Agent用户("记住Alice负责Q3项目,她的任务阻塞了发布") - 构建多技能工作流的开发者(邮件承诺自动转任务、日历事件驱动项目更新) - 重视数据可审计性的合规场景(append-only日志满足溯源需求) ## 常规风险 - 数据孤岛风险:若未定期备份memory/ontology/目录,工作区重置将导致图谱丢失 - 约束绕过可能:schema.yaml中的部分约束(如自定义validate规则)仅为文档说明,实际强制执行依赖代码实现 - 误操作不可逆:虽然支持append-only,但错误的relate操作会产生脏关系数据,需手动清理 knowledge-graphmemoryschema-validationentity-managementcross-skilllocal-firstappend-onlyplanningcausal-inference

knowledge-graphmemoryschema-validationentity-managementcross-skilllocal-firstappend-onlyplanningcausal-inference

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.