Crawler Summary

skill-mate answer-first brief

SkillMate - Your AI Skill Partner. AI技能生态平台,支持技能构建、分享、售卖和学习 <p align="center"> <img src="./public/icon.png" width="100" height="100" alt="SkillMate Logo"> </p> <h1 align="center">SkillMate</h1> <p align="center"> 🚀 一个开源的 AI Agent 桌面应用框架,用于学习如何构建现代化的 AI Skill助手 </p> <p align="center"> <a href="https://github.com/hhhh124hhhh/SkillMate"><img src="https://img.shields.io/github/v/release/hhhh124hhhh/SkillMate?style=flat-square&color=orange" alt="Release"></a> <a href="https://git Published capability contract available. No trust telemetry is available yet. 4 GitHub stars reported by the source. Last updated 2/24/2026.

Freshness

Last checked 2/22/2026

Best For

Contract is available with explicit auth and schema references.

Not Ideal For

skill-mate is not ideal for teams that need stronger public trust telemetry, lower setup complexity, or more explicit contract coverage before production rollout.

Evidence Sources Checked

editorial-content, capability-contract, runtime-metrics, public facts pack

Claim this agent
Agent DossierGitHubSafety: 100/100

skill-mate

SkillMate - Your AI Skill Partner. AI技能生态平台,支持技能构建、分享、售卖和学习 <p align="center"> <img src="./public/icon.png" width="100" height="100" alt="SkillMate Logo"> </p> <h1 align="center">SkillMate</h1> <p align="center"> 🚀 一个开源的 AI Agent 桌面应用框架,用于学习如何构建现代化的 AI Skill助手 </p> <p align="center"> <a href="https://github.com/hhhh124hhhh/SkillMate"><img src="https://img.shields.io/github/v/release/hhhh124hhhh/SkillMate?style=flat-square&color=orange" alt="Release"></a> <a href="https://git

MCPverified

Public facts

7

Change events

1

Artifacts

0

Freshness

Feb 22, 2026

Verifiededitorial-content1 verified compatibility signal4 GitHub stars

Published capability contract available. No trust telemetry is available yet. 4 GitHub stars reported by the source. Last updated 2/24/2026.

4 GitHub starsSchema refs publishedTrust evidence available

Trust score

Unknown

Compatibility

MCP

Freshness

Feb 22, 2026

Vendor

Hhhh124hhhh

Artifacts

0

Benchmarks

0

Last release

2.0.0

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

Summary

Published capability contract available. No trust telemetry is available yet. 4 GitHub stars reported by the source. Last updated 2/24/2026.

Setup snapshot

git clone https://github.com/hhhh124hhhh/SkillMate.git
  1. 1

    Setup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.

  2. 2

    Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Hhhh124hhhh

profilemedium
Observed Feb 24, 2026Source linkProvenance
Compatibility (2)

Protocol compatibility

MCP

contracthigh
Observed Feb 24, 2026Source linkProvenance

Auth modes

mcp, api_key

contracthigh
Observed Feb 24, 2026Source linkProvenance
Artifact (1)

Machine-readable schemas

OpenAPI or schema references published

contracthigh
Observed Feb 24, 2026Source linkProvenance
Adoption (1)

Adoption signal

4 GitHub stars

profilemedium
Observed Feb 24, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance
Integration (1)

Crawlable docs

6 indexed pages on the official domain

search_documentmedium
Observed Apr 15, 2026Source linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB MCP

Extracted files

0

Examples

6

Snippets

0

Languages

typescript

Executable Examples

text

SkillMate/
├── electron/                    # Electron 主进程代码
│   ├── main.ts                 # 主进程入口(窗口管理、IPC 注册)
│   ├── preload.ts              # 预加载脚本(IPC 桥接)
│   ├── agent/                  # AI Agent 系统
│   │   ├── AgentRuntime.ts     # 核心运行时
│   │   ├── commands/           # Agent 命令系统
│   │   ├── skills/             # 技能管理器
│   │   ├── mcp/                # MCP 客户端服务
│   │   ├── tools/              # 内置文件系统工具
│   │   ├── security/           # 权限管理器
│   │   ├── PythonRuntime.ts    # Python 运行时
│   │   └── SkillRecommender.ts # 技能推荐引擎
│   └── config/                 # 配置存储
├── src/                        # React 渲染进程代码
│   ├── App.tsx                 # 根组件
│   └── components/             # React 组件
│       ├── CoworkView.tsx      # 主界面(聊天/工作双模式)
│       ├── SettingsView.tsx    # 设置面板
│       ├── SkillsEditor.tsx    # 技能编辑器
│       ├── MCPConfigEditor.tsx # MCP 配置编辑器
│       ├── QuickActionsEditor.tsx # 快捷按钮配置
│       ├── FloatingBallPage.tsx # 悬浮球窗口
│       ├── CommandPalette.tsx  # 命令面板
│       ├── ConfirmDialog.tsx   # 权限确认对话框
│       └── ...                 # 其他 UI 组件
├── forge/                      # Electron Forge 构建配置
│   └── vite.*.config.ts        # Vite 构建配置
├── resources/skills/           # 内置技能库
├── docs/                       # 项目文档
│   ├── architecture.md         # 架构设计
│   ├── getting-started.md      # 快速开始
│   ├── configuration.md        # 配置指南
│   ├── skill-development.md    # 技能开发
│   ├── mcp-integration.md      # MCP 集成
│   └── development.md         # 开发指南
├── public/                     # 静态资源
│   ├── icon.png                # 应用图标
│   └── index.html              # HTML 入口
├── .gitignore                  # Git 忽略规则
├── package.json                # 项目配置
├── tsconfig.json               # TypeScript 配置
├── forge.config.ts             # Electron Forge 配置
├── CREDITS.md                  # 致谢与致敬
└── README.md                   # 项目说明

bash

# 1. 克隆仓库
git clone https://github.com/hhhh124hhhh/SkillMate.git
cd SkillMate

# 2. 安装依赖(选择一种方式)

bash

install.bat

bash

npm run setup

bash

# 仅安装 Node.js 依赖
npm install

# 可选:安装 Python MCP 服务器(用于网页抓取功能)
pip install mcp-server-fetch

bash

# 3. 启动开发服务器
npm start

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB MCP

Docs source

GITHUB MCP

Editorial quality

ready

SkillMate - Your AI Skill Partner. AI技能生态平台,支持技能构建、分享、售卖和学习 <p align="center"> <img src="./public/icon.png" width="100" height="100" alt="SkillMate Logo"> </p> <h1 align="center">SkillMate</h1> <p align="center"> 🚀 一个开源的 AI Agent 桌面应用框架,用于学习如何构建现代化的 AI Skill助手 </p> <p align="center"> <a href="https://github.com/hhhh124hhhh/SkillMate"><img src="https://img.shields.io/github/v/release/hhhh124hhhh/SkillMate?style=flat-square&color=orange" alt="Release"></a> <a href="https://git

Full README
<p align="center"> <img src="./public/icon.png" width="100" height="100" alt="SkillMate Logo"> </p> <h1 align="center">SkillMate</h1> <p align="center"> 🚀 一个开源的 AI Agent 桌面应用框架,用于学习如何构建现代化的 AI Skill助手 </p> <p align="center"> <a href="https://github.com/hhhh124hhhh/SkillMate"><img src="https://img.shields.io/github/v/release/hhhh124hhhh/SkillMate?style=flat-square&color=orange" alt="Release"></a> <a href="https://github.com/hhhh124hhhh/SkillMate/actions"><img src="https://img.shields.io/github/actions/workflow/status/hhhh124hhhh/SkillMate/release.yml?style=flat-square" alt="Build"></a> <a href="https://github.com/hhhh124hhhh/SkillMate/blob/main/LICENSE"><img src="https://img.shields.io/github/license/hhhh124hhhh/SkillMate?style=flat-square" alt="License"></a> </p>

⚠️ 开发版重要说明

🔴 这是开发版本!

SkillMate 目前处于活跃开发阶段,主要用于:

  • 🎓 学习和研究 - 了解 AI Agent 的实现原理
  • 🔬 实验和探索 - 测试新的交互方式和工具集成
  • 📚 教学演示 - 展示现代 AI 应用的构建方法

不推荐用于生产环境

⚠️ 当前版本的限制

  • 🔴 稳定性 - 可能存在未知 bug 和崩溃问题
  • 🔴 安全性 - AI 操作本地文件系统,需要用户谨慎授权
  • 🔴 功能完整性 - 部分功能仍在开发中
  • 🔴 性能优化 - 未经过大规模测试和优化

推荐使用场景

适合

  • 学习 Electron + AI 应用开发
  • 研究 AI Agent 架构和实现
  • 个人实验和原型验证
  • 教学演示和代码示例

不适合

  • 生产环境部署
  • 处理重要数据
  • 需要高可靠性的场景

✨ 特性

为什么选择 SkillMate?

  • 🎯 通用架构 - 不绑定任何特定领域,自由扩展
  • 🔧 高度可定制 - 支持自定义技能和 MCP 服务器
  • 📚 教学优先 - 清晰的代码结构和文档,适合学习
  • 🛠️ 最佳实践 - 展示 AI Agent 开发的行业标准
  • 🔌 MCP 协议支持 - 无限扩展能力边界
  • 🖥️ 跨平台 - Windows、macOS、Linux 全支持

核心能力

  • 💬 智能对话 - 基于 Claude AI 的自然语言交互
  • 🔧 工具调用 - 安全的文件操作和命令执行
  • 🔌 技能系统 - 35+ 内置技能,涵盖文档处理、设计创作、开发工具、Git 工作流等
  • 🌐 MCP 集成 - 标准化的工具集成协议
  • ⚡ 流式响应 - 实时展示 AI 思考过程
  • 🔐 权限管理 - 细粒度的权限控制和确认机制
  • ⚡ 性能优化 - 技能懒加载、智能缓存、并行加载(v2.0 新增)

🎯 适合谁?

对于学习者

  • 📖 学习如何构建 Electron + AI 应用
  • 🔍 理解 AI Agent 的运行时机制
  • 🎓 掌握 MCP 协议和技能系统

对于开发者

  • 🚀 快速原型验证 AI Agent 创意
  • 🧩 基于框架构建定制化助手
  • 🔌 集成自定义工具和服务

对于研究者

  • 🔬 研究 AI Agent 的行为模式
  • 📊 分析工具调用和权限管理
  • 🎨 实验新的交互方式

⚠️ Risk Notice / 风险提示

SkillMate allows AI to operate on local file systems and terminals. Please note:

SkillMate 允许 AI 操作本地文件系统和终端。请注意:

  • 🚨 AI may accidentally delete files or execute incorrect commands
  • 🚨 AI 可能意外删除文件或执行错误命令
  • 🔓 Prompt injection risks may exist
  • 🔓 可能存在提示注入风险
  • 👁️ AI can read all files within authorized directories
  • 👁️ AI 可以读取授权目录内的所有文件

Recommendations / 建议:

  • ✅ Only authorize necessary directories / 仅授权必要的目录
  • ✅ Backup data regularly / 定期备份数据
  • ✅ Review operation requests / 审查操作请求
  • ✅ Monitor AI behavior / 监控 AI 行为

Disclaimer / 免责声明: This software is provided "as-is" for learning and development purposes only. Developers are not liable for any losses caused by using this software.

本软件按"原样"提供,仅用于学习和开发目的。开发者不对使用本软件造成的任何损失承担责任。

This is a development version - use at your own risk! 这是开发版本 - 使用风险自负!


🏗️ 技术架构

核心技术栈

  • 桌面框架: Electron 30.0.1
  • 前端: React 18.2.0 + TypeScript 5.2.2 + Tailwind CSS
  • 构建工具: Vite 5.1.6 + vite-plugin-electron
  • AI SDK: 支持多种大模型(默认使用智谱 AI GLM-4.7)+ Model Context Protocol SDK

智谱 AI 优势

  • 💰 性价比高:GLM-4-Flash 完全免费,编程套餐 20元/月(Claude 的 1/7 价格)
  • 速度快:55+ Tokens/秒生成速度
  • 🎯 代码能力强:SWE-bench 得分 59.2%,专为编程优化
  • 🇨🇳 中文友好:国产大模型,对中文理解更深入

架构亮点

  • 流式响应 - 实时展示 AI 思考过程
  • 工具调用 - 安全的文件操作和命令执行
  • 权限管理 - 细粒度的权限控制和确认机制
  • 会话管理 - 多会话支持和历史记录持久化
  • 技能系统 - 可扩展的技能框架
  • MCP 协议 - 标准化的工具集成协议

目录结构

SkillMate/
├── electron/                    # Electron 主进程代码
│   ├── main.ts                 # 主进程入口(窗口管理、IPC 注册)
│   ├── preload.ts              # 预加载脚本(IPC 桥接)
│   ├── agent/                  # AI Agent 系统
│   │   ├── AgentRuntime.ts     # 核心运行时
│   │   ├── commands/           # Agent 命令系统
│   │   ├── skills/             # 技能管理器
│   │   ├── mcp/                # MCP 客户端服务
│   │   ├── tools/              # 内置文件系统工具
│   │   ├── security/           # 权限管理器
│   │   ├── PythonRuntime.ts    # Python 运行时
│   │   └── SkillRecommender.ts # 技能推荐引擎
│   └── config/                 # 配置存储
├── src/                        # React 渲染进程代码
│   ├── App.tsx                 # 根组件
│   └── components/             # React 组件
│       ├── CoworkView.tsx      # 主界面(聊天/工作双模式)
│       ├── SettingsView.tsx    # 设置面板
│       ├── SkillsEditor.tsx    # 技能编辑器
│       ├── MCPConfigEditor.tsx # MCP 配置编辑器
│       ├── QuickActionsEditor.tsx # 快捷按钮配置
│       ├── FloatingBallPage.tsx # 悬浮球窗口
│       ├── CommandPalette.tsx  # 命令面板
│       ├── ConfirmDialog.tsx   # 权限确认对话框
│       └── ...                 # 其他 UI 组件
├── forge/                      # Electron Forge 构建配置
│   └── vite.*.config.ts        # Vite 构建配置
├── resources/skills/           # 内置技能库
├── docs/                       # 项目文档
│   ├── architecture.md         # 架构设计
│   ├── getting-started.md      # 快速开始
│   ├── configuration.md        # 配置指南
│   ├── skill-development.md    # 技能开发
│   ├── mcp-integration.md      # MCP 集成
│   └── development.md         # 开发指南
├── public/                     # 静态资源
│   ├── icon.png                # 应用图标
│   └── index.html              # HTML 入口
├── .gitignore                  # Git 忽略规则
├── package.json                # 项目配置
├── tsconfig.json               # TypeScript 配置
├── forge.config.ts             # Electron Forge 配置
├── CREDITS.md                  # 致谢与致敬
└── README.md                   # 项目说明

📚 学习路径

1. 快速开始

安装和运行指南

2. 架构理解

架构设计文档

3. 技能开发

如何创建自定义技能

4. MCP 集成

MCP 服务器配置指南

5. 进阶主题

  • 安全机制详解
  • 性能优化技巧
  • 自定义 UI 主题

🤖 AI 助手安装(最简单)

💬 直接说:"帮我安装这个 GitHub 项目" 或 "帮我设置 SkillMate"

AI Agent 会自动完成所有安装步骤:

  • ✅ 克隆项目
  • ✅ 安装所有依赖
  • ✅ 配置环境
  • ✅ 启动应用

详细流程: 查看 INSTALL.md - 专为 AI Agent 设计的自动化安装指南


🚀 快速开始

前置要求

  • Node.js: >= 18.0.0(推荐 20.x)
  • npm: >= 9.0.0
  • Git: 用于克隆仓库
  • 操作系统: Windows 10+, macOS 10.15+, Linux (Ubuntu 20.04+)

安装

# 1. 克隆仓库
git clone https://github.com/hhhh124hhhh/SkillMate.git
cd SkillMate

# 2. 安装依赖(选择一种方式)

方式一:一键安装脚本(推荐)

Windows 用户:

install.bat

macOS/Linux 用户:

npm run setup

方式二:手动安装

# 仅安装 Node.js 依赖
npm install

# 可选:安装 Python MCP 服务器(用于网页抓取功能)
pip install mcp-server-fetch

💡 提示: 如果 npm install 速度慢或失败,可以尝试:

  • 使用国内镜像:npm install --registry=https://registry.npmmirror.com
  • 清理缓存:npm cache clean --force
# 3. 启动开发服务器
npm start

应用会自动启动并打开窗口。

🚀 5分钟快速上手

第一步:配置 API Key(必须)

┌─────────────────────────────────────┐
│  点击右上角 ⚙️ 设置按钮               │
│  ↓                                    │
│  粘贴智谱 AI API Key                  │
│  获取地址: open.bigmodel.cn          │
│  ↓                                    │
│  点击"保存配置"                       │
└─────────────────────────────────────┘

推荐使用 智谱 AI 编程套餐(性价比高)

第二步:授权工作目录(安全)

┌─────────────────────────────────────┐
│  设置 → 权限管理                      │
│  ↓                                    │
│  添加授权目录                         │
│  (选择工作文件夹,如 D:\Projects)    │
│  ↓                                    │
│  点击"授权"                           │
└─────────────────────────────────────┘

⚠️ AI 只能访问你授权的目录

第三步:开始对话

在底部输入框输入:

你好,请介绍一下你自己

按 Enter 发送,如果 AI 回复,配置成功!


核心功能

┌──────────────────────────────────────┐
│  技能系统 (35+ 技能)                  │
│  • 直接输入需求,系统自动推荐技能     │
│  • 或输入 / 搜索技能                  │
│  • 或按 Ctrl+Shift+P 打开命令面板     │
└──────────────────────────────────────┘

┌──────────────────────────────────────┐
│  文件操作                             │
│  • 拖拽文件到输入区                   │
│  • 或点击 + 按钮选择文件              │
│  • 点击 📂 选择工作目录               │
└──────────────────────────────────────┘

┌──────────────────────────────────────┐
│  对话模式                             │
│  • 💬 Chat: 纯对话(安全)            │
│  • 🔧 Work: 可操作文件(完整功能)    │
└──────────────────────────────────────┘

快捷键速查

| 快捷键 | 功能 | |--------|------| | Ctrl+L | 聚焦输入框 | | Ctrl+Shift+P | 命令面板 | | / | 技能搜索 |

安全提示

⚠️ 重要

  • AI 执行操作时会弹出权限确认,请仔细查看
  • 只授权必要的文件夹
  • 建议先在 Chat 模式熟悉功能

想了解更多?


配置

  1. 首次运行配置

    • 打开应用后,点击右上角设置按钮
    • 配置你的 API Key(推荐使用智谱 AI)
    • (推荐)配置授权文件夹(限制 AI 访问范围)
  2. 获取智谱 AI API Key

    SkillMate 推荐使用智谱 AI GLM 编程套餐,性价比极高:

    • 💰 超值定价

      • GLM-4-Flash:完全免费,永久调用
      • GLM Coding Plan:月付 20元起(首月仅 8.9元),年付 192元
      • API 按量付费:5元/百万tokens(约 Claude 的 1/4 价格)
    • 🚀 性能优势

      • 生成速度:55+ Tokens/秒
      • SWE-bench Verified 得分:59.2%
      • 价格仅为 Claude 的 1/7,用量提升 3 倍
    • 🎯 支持的模型

      • glm-4-flash - 免费模型(推荐入门使用)
      • glm-4.7 - 最新旗舰模型
      • deepseek-v3.2 - 高性能编程模型
      • kimi-k2-thinking - 思维链模型
    • 📱 获取方式

      1. 访问 智谱 AI 开放平台
      2. 注册/登录账号
      3. 进入 GLM Coding Plan 查看编程套餐
      4. 创建 API Key
  3. 其他模型支持

    也可以使用其他兼容的模型,在设置面板中配置:

    • Claude APIhttps://api.anthropic.com
    • OpenAI GPThttps://api.openai.com
    • Geminihttps://generativelanguage.googleapis.com
  4. 可选配置

    • 添加自定义技能
    • 配置 MCP 服务器(项目已内置,开箱即用)
    • 调整快捷键设置

开发构建

# 仅构建前端代码
npm run build:frontend

# 完整构建(Electron + Vite + 打包)
npm run build

# 仅构建 Electron 主进程
npm run build:electron

🎨 自定义技能

创建自己的技能非常简单:

# 1. 在 resources/skills/ 创建新目录
mkdir -p resources/skills/my-skill

# 2. 创建 SKILL.md 文件
cat > resources/skills/my-skill/SKILL.md << 'EOF'
---
name: my-skill
description: 我的自定义技能
input_schema:
  type: object
  properties:
    query:
      type: string
      description: 查询内容
---

这里是技能的具体指令...
EOF

# 3. 重启应用,技能会自动加载

详细指南:技能开发文档


🔌 MCP 配置示例

MCP (Model Context Protocol) 允许集成外部工具和服务:

{
  "mcpServers": {
    "filesystem": {
      "name": "filesystem",
      "description": "本地文件系统访问",
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-filesystem", "/allowed/path"]
    },
    "fetch": {
      "name": "fetch",
      "description": "网页内容获取",
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-fetch"]
    }
  }
}

详细指南:MCP 集成文档


📖 文档


🛠️ 开发指南

常用命令

npm start         # 启动开发服务器
npm run build    # 完整构建(Electron + Vite)
npm run lint     # 代码检查

开发环境

  • Node.js: >= 18.0.0(推荐 20.x)
  • npm: >= 9.0.0
  • 操作系统: Windows 10+, macOS 10.15+, Linux (Ubuntu 20.04+)

代码风格

项目使用 ESLint 和 Prettier 进行代码检查和格式化:

# 运行代码检查
npm run lint

# 自动修复代码格式问题
npm run lint -- --fix

开发模式特性

开发模式下有以下便利功能:

  • 🔥 热重载(前端代码修改自动刷新)
  • 🐛 自动打开 DevTools
  • 📝 详细日志输出
  • ⚡ 快速重启(主进程修改需手动重启)

🤝 贡献

欢迎贡献!请查看 贡献指南

如何贡献

  1. Fork 本仓库
  2. 创建特性分支 (git checkout -b feature/AmazingFeature)
  3. 提交更改 (git commit -m 'Add some AmazingFeature')
  4. 推送到分支 (git push origin feature/AmazingFeature)
  5. 开启 Pull Request

贡献指南

  • 🐛 Bug 报告 - 使用 GitHub Issues
  • 💡 功能建议 - 使用 GitHub Discussions
  • 📖 文档改进 - 提交 PR
  • 🔧 代码贡献 - 遵循代码规范,添加测试

🐛 问题反馈

遇到问题?

  1. 查看文档 - 先查看 文档
  2. 搜索 Issues - 检查是否已有类似问题
  3. 创建 Issue - 包含详细的错误信息和复现步骤

Issue 模板

创建 Issue 时请包含:

  • 📝 描述 - 清晰描述问题
  • 🔍 复现步骤 - 如何触发问题
  • 💻 环境 - 操作系统、Node.js 版本等
  • 📸 截图/日志 - 错误截图或日志
  • 🎯 期望行为 - 你期望发生什么

📊 开发状态

当前版本

v0.2.0-dev (开发版本)

最近更新

  • ✨ 新增 35+ 内置技能
  • ✨ 新增 MCP 协议支持
  • ✨ 新增权限管理系统
  • ✨ 新增技能懒加载和并行加载
  • 🐛 修复多个已知 bug
  • 📚 完善文档和注释

计划中的功能

  • 🔮 更多内置技能
  • 🔮 技能市场(社区技能分享)
  • 🔮 多语言支持
  • 🔮 插件系统
  • 🔮 性能优化和内存管理

📄 许可证

Apache License 2.0 - 详见 LICENSE

Copyright © 2024 SkillMate Team


🙏 致谢与致敬

💖 项目灵感

SkillMate 的诞生离不开开源社区的无私分享。

本项目在学习、参考和借鉴了以下优秀开源项目的基础上进行开发:

📚 主要参考项目

  • OpenCowork - 本项目的基础来源

    • 重要: SkillMate 基于 OpenCowork 进行二次开发和改造
    • 提供了 Electron + React + TypeScript 架构基础
    • 提供了 AI Agent 运行时系统设计
    • 提供了 MCP 协议集成框架和技能系统核心实现
    • 改造方向:保留通用架构,优化为学习和研究 AI Agent 的开源框架
  • Claude Code - Anthropic 官方的 AI 编程助手

    • 启发了 AI Agent 与文件系统交互的设计思路
    • 参考了权限管理和安全确认机制
    • 借鉴了技能系统的设计理念
  • Continue - AI 代码补全和助手

    • 参考了多 AI 模型支持的架构
    • 学习了上下文管理的实现方式
  • Cursor - AI 驱动的代码编辑器

    • 启发了 AI 辅助开发的交互模式
    • 参考了流式响应的展示方式

🏗️ 核心技术栈致谢

本项目建立在以下优秀开源项目的肩膀上:

AI 和协议层

桌面应用框架

前端框架

开发工具

社区资源

  • everything-claude-code - Anthropic 黑客松获胜配置
    • 提供了完整的 Claude Code 最佳实践
    • 参考了 agents、skills、hooks 等设计模式
    • 借鉴了自动化工作流配置

🌟 特别感谢

  • 智谱 AI 团队 - 提供高性价比的 GLM 大模型和完善的开发者支持
  • Anthropic 团队 - 提供强大的 Claude AI 能力和完善的技术文档
  • Model Context Protocol 社区 - 制定开放的工具集成标准
  • Electron 社区 - 提供稳定的跨平台应用框架
  • 所有开源贡献者 - 用代码和知识构建更美好的世界

📜 许可证感谢

本项目遵循 Apache License 2.0 开源,感谢以下项目的启发:

  • 技术架构设计思路
  • 安全最佳实践
  • 用户体验优化
  • 开发者体验设计

🤝 贡献致敬

如果你是某个开源项目的作者,并且觉得本项目参考了您的设计但没有列出来,欢迎通过 Issues 告知我们,我们会立即添加致谢!


开源的本质是分享和传承。我们站在巨人的肩膀上,也希望我们的工作能够帮助到更多人。


🔧 常见问题

如何清除缓存数据?

如果你看到旧的对话历史或遇到缓存问题,可以按以下步骤清除:

方法 1: 使用清理脚本(推荐)

Windows:

scripts\clean-cache.bat

macOS/Linux:

chmod +x scripts/clean-cache.sh
./scripts/clean-cache.sh

方法 2: 应用内清除

  1. 打开应用
  2. 点击右上角设置图标
  3. 进入"高级设置"
  4. 点击"清除所有数据"按钮
  5. 确认清除

方法 3: 手动清除

# 删除 Electron 用户数据
rm -rf .vscode/electron-userdata  # macOS/Linux
rmdir /s /q .vscode\electron-userdata  # Windows

# 重新启动应用
npm start

克隆项目后为什么还有历史记录?

Electron 浏览器缓存存储在 .vscode/electron-userdata/ 目录中。如果你克隆项目时包含了此目录(虽然已在 .gitignore 中),历史记录就会被带过去。

解决方案:删除 .vscode/electron-userdata/ 目录后重新启动。

清除数据会删除什么?

  • 会删除

    • 所有对话历史
    • 授权文件夹列表
    • 禁用的技能设置
    • 用户偏好设置
  • 不会删除

    • API Key(会保留)
    • 系统配置

如何验证干净克隆?

# 1. 检查是否有用户数据文件
git ls-files | grep -i "electron-userdata\|opencowork-sessions"

# 2. 应该看到空结果(表示没有用户数据被跟踪)

# 3. 检查 .gitignore
grep "electron-userdata" .gitignore

# 4. 应该看到: .vscode/electron-userdata/

📮 联系方式

  • GitHub: https://github.com/hhhh124hhhh/SkillMate
  • Issues: https://github.com/hhhh124hhhh/SkillMate/issues
  • Discussions: https://github.com/hhhh124hhhh/SkillMate/discussions
<p align="center"> <img src="./public/wechat-qrcode.png" width="200" alt="微信二维码" /><br> <i>扫描二维码,加入微信群</i> </p>

⭐ Star History

如果这个项目对你有帮助,请给它一个 Star ⭐

Star History Chart


<p align="center"> <b>⚠️ 开始使用前请阅读风险提示</b><br> <b>🚀 开始构建你的 AI Agent 之旅</b> </p>

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

Verifiedcapability-contract

Contract coverage

Status

ready

Auth

mcp, api_key

Streaming

No

Data region

global

Protocol support

MCP: verified

Requires: mcp, lang:typescript

Forbidden: none

Guardrails

Operational confidence: medium

Contract is available with explicit auth and schema references.
Trust confidence is not low and verification freshness is acceptable.
Protocol support is explicitly confirmed in contract metadata.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/mcp-hhhh124hhhh-skillmate/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mcp-hhhh124hhhh-skillmate/contract"
curl -s "https://xpersona.co/api/v1/agents/mcp-hhhh124hhhh-skillmate/trust"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

Trust signals

Handshake

UNKNOWN

Confidence

unknown

Attempts 30d

unknown

Fallback rate

unknown

Runtime metrics

Observed P50

unknown

Observed P95

unknown

Rate limit

unknown

Estimated cost

unknown

No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITLAB_AI_CATALOGgitlab-mcp

Rank

83

A Model Context Protocol (MCP) server for GitLab

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_PUBLIC_PROJECTSgitlab-mcp

Rank

80

A Model Context Protocol (MCP) server for GitLab

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_AI_CATALOGrmcp-openapi

Rank

74

Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_AI_CATALOGrmcp-actix-web

Rank

72

An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)

Traction

No public download signal

Freshness

Updated 2d ago

MCP
Machine Appendix

Contract JSON

{
  "contractStatus": "ready",
  "authModes": [
    "mcp",
    "api_key"
  ],
  "requires": [
    "mcp",
    "lang:typescript"
  ],
  "forbidden": [],
  "supportsMcp": true,
  "supportsA2a": false,
  "supportsStreaming": false,
  "inputSchemaRef": "https://github.com/hhhh124hhhh/SkillMate#input",
  "outputSchemaRef": "https://github.com/hhhh124hhhh/SkillMate#output",
  "dataRegion": "global",
  "contractUpdatedAt": "2026-02-24T19:46:47.033Z",
  "sourceUpdatedAt": "2026-02-24T19:46:47.033Z",
  "freshnessSeconds": 4432755
}

Invocation Guide

{
  "preferredApi": {
    "snapshotUrl": "https://xpersona.co/api/v1/agents/mcp-hhhh124hhhh-skillmate/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/mcp-hhhh124hhhh-skillmate/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/mcp-hhhh124hhhh-skillmate/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/mcp-hhhh124hhhh-skillmate/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/mcp-hhhh124hhhh-skillmate/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/mcp-hhhh124hhhh-skillmate/trust\""
  ],
  "jsonRequestTemplate": {
    "query": "summarize this repo",
    "constraints": {
      "maxLatencyMs": 2000,
      "protocolPreference": [
        "MCP"
      ]
    }
  },
  "jsonResponseTemplate": {
    "ok": true,
    "result": {
      "summary": "...",
      "confidence": 0.9
    },
    "meta": {
      "source": "GITHUB_MCP",
      "generatedAt": "2026-04-17T03:06:02.048Z"
    }
  },
  "retryPolicy": {
    "maxAttempts": 3,
    "backoffMs": [
      500,
      1500,
      3500
    ],
    "retryableConditions": [
      "HTTP_429",
      "HTTP_503",
      "NETWORK_TIMEOUT"
    ]
  }
}

Trust JSON

{
  "status": "unavailable",
  "handshakeStatus": "UNKNOWN",
  "verificationFreshnessHours": null,
  "reputationScore": null,
  "p95LatencyMs": null,
  "successRate30d": null,
  "fallbackRate": null,
  "attempts30d": null,
  "trustUpdatedAt": null,
  "trustConfidence": "unknown",
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Capability Matrix

{
  "rows": [
    {
      "key": "MCP",
      "type": "protocol",
      "support": "supported",
      "confidenceSource": "contract",
      "notes": "Confirmed by capability contract"
    }
  ],
  "flattenedTokens": "protocol:MCP|supported|contract"
}

Facts JSON

[
  {
    "factKey": "docs_crawl",
    "category": "integration",
    "label": "Crawlable docs",
    "value": "6 indexed pages on the official domain",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "MCP",
    "href": "https://xpersona.co/api/v1/agents/mcp-hhhh124hhhh-skillmate/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-hhhh124hhhh-skillmate/contract",
    "sourceType": "contract",
    "confidence": "high",
    "observedAt": "2026-02-24T19:46:47.033Z",
    "isPublic": true
  },
  {
    "factKey": "auth_modes",
    "category": "compatibility",
    "label": "Auth modes",
    "value": "mcp, api_key",
    "href": "https://xpersona.co/api/v1/agents/mcp-hhhh124hhhh-skillmate/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-hhhh124hhhh-skillmate/contract",
    "sourceType": "contract",
    "confidence": "high",
    "observedAt": "2026-02-24T19:46:47.033Z",
    "isPublic": true
  },
  {
    "factKey": "schema_refs",
    "category": "artifact",
    "label": "Machine-readable schemas",
    "value": "OpenAPI or schema references published",
    "href": "https://github.com/hhhh124hhhh/SkillMate#input",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-hhhh124hhhh-skillmate/contract",
    "sourceType": "contract",
    "confidence": "high",
    "observedAt": "2026-02-24T19:46:47.033Z",
    "isPublic": true
  },
  {
    "factKey": "vendor",
    "category": "vendor",
    "label": "Vendor",
    "value": "Hhhh124hhhh",
    "href": "https://github.com/hhhh124hhhh/skill-mate#readme",
    "sourceUrl": "https://github.com/hhhh124hhhh/skill-mate#readme",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-02-24T19:43:14.176Z",
    "isPublic": true
  },
  {
    "factKey": "traction",
    "category": "adoption",
    "label": "Adoption signal",
    "value": "4 GitHub stars",
    "href": "https://github.com/hhhh124hhhh/SkillMate",
    "sourceUrl": "https://github.com/hhhh124hhhh/SkillMate",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-02-24T19:43:14.176Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/mcp-hhhh124hhhh-skillmate/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-hhhh124hhhh-skillmate/trust",
    "sourceType": "trust",
    "confidence": "medium",
    "observedAt": null,
    "isPublic": true
  }
]

Change Events JSON

[
  {
    "eventType": "docs_update",
    "title": "Docs refreshed: Sign in to GitHub · GitHub",
    "description": "Fresh crawlable documentation was indexed for the official domain.",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  }
]

Sponsored

Ads related to skill-mate and adjacent AI workflows.