Skip to main content

Agent-Skills 开发与质量保证 MCP Server

Project description

Skill Creator MCP Server

License: MIT Python 3.10+ ![Tests](https://img.shields.io/badge/tests-553%20passed-success ![Coverage](https://img.shields.io/badge/coverage-97%25-brightgreen

Agent-Skills 开发与质量保证 MCP Server。

📖 文档导航

快速导航

安装与配置


最新特性(v0.3.6)

生命周期管理

  • AppContext - 应用生命周期上下文
  • app_lifespan钩子 - 启动/关闭时的资源管理
  • 请求计数和统计 - 追踪MCP服务器使用情况

中间件支持

  • TimingMiddleware - 性能计时和统计
  • LoggingMiddleware - 日志记录(可选)
  • ErrorHandlingMiddleware - 错误处理(可选)

HTTP端点

  • /health - HTTP健康检查端点(用于健康监控)
  • /metrics - 性能指标端点(用于性能监控)

SSE传输协议

  • ✅ 支持Server-Sent Events (SSE)远程部署
  • ✅ 完整的SSE配置指南

开发状态

🚧 项目正在开发中

当前版本:v0.3.6

这是 Skill-Creator 项目的 MCP Server 组件,提供创建、验证、分析和重构 Agent-Skills 的工具。

特性

核心开发工具(4个)

  • init_skill - 初始化新的 Agent-Skill 项目(支持 4 种模板)
  • validate_skill - 验证技能结构和内容规范
  • analyze_skill - 分析代码质量和复杂度
  • refactor_skill - 重构建议生成(P0/P1/P2 优先级)

需求收集原子工具(7个)

  • create_requirement_session - 创建需求收集会话
  • get_requirement_session - 获取会话状态
  • update_requirement_answer - 更新会话答案
  • get_static_question - 获取静态问题(basic/complete模式)
  • generate_dynamic_question - 生成动态问题(brainstorm/progressive模式)
  • validate_answer_format - 验证答案格式
  • check_requirement_completeness - 检查需求完整性(使用LLM)

打包工具(1个)

  • package_skill - 统一打包工具(支持通用和Agent-Skill标准两种模式)
    • strict=False (默认): 通用打包模式
    • strict=True: Agent-Skill 标准打包模式,需要 version 参数

技能模板

模板类型 描述 适用场景
minimal 最小化模板 简单工具封装
tool-based 工具集成模板 封装现有工具
workflow-based 工作流模板 多步骤流程
analyzer-based 分析器模板 代码分析

注:✅ 已实现 | 🚧 开发中


🚀 5分钟快速开始

方式A:全局安装(推荐,简单)

1. 安装

# 使用 pip 或 uv pip 全局安装
pip install skill-creator-mcp
# 或
uv pip install skill-creator-mcp

2. 配置 Claude Code

选项1:使用 claude mcp add(简单)

claude mcp add skill-creator stdio python -m skill_creator_mcp --scope user

选项2:使用 claude mcp add-json(推荐)

claude mcp add-json "skill-creator" '{
  "command": "python",
  "args": ["-m", "skill_creator_mcp"]
}' --scope user

选项3:手动编辑配置文件

编辑 ~/.config/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "skill-creator": {
      "command": "python",
      "args": ["-m", "skill_creator_mcp"]
    }
  }
}

3. 验证

在 Claude Code 中输入:

使用 skill-creator MCP 工具初始化一个名为 "my-skill" 的技能

方式B:源码开发(仅限贡献者)

1. 克隆并安装

# 克隆仓库
git clone https://github.com/GeerMrc/Skills-Creator.git
cd Skills-Creator/skill-creator-mcp

# 安装依赖
uv sync --dev

2. 配置 Claude Code

编辑 ~/.config/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "skill-creator": {
      "command": "uv",
      "args": [
        "--directory",
        "/absolute/path/to/Skills-Creator/skill-creator-mcp",
        "run",
        "python",
        "-m",
        "skill_creator_mcp"
      ]
    }
  }
}

3. 验证

同方式A


下一步


配置

⚠️ 重要:根据安装方式选择配置

您是如何安装的?

安装方式 推荐配置 复杂度
pip / uv pip / PyPI 全局安装配置 ⭐ 简单
克隆源码仓库 源码开发配置 ⭐⭐⭐ 复杂

全局安装配置(推荐)

安装

pip install skill-creator-mcp
# 或
uv pip install skill-creator-mcp

配置

{
  "mcpServers": {
    "skill-creator": {
      "command": "python",
      "args": ["-m", "skill_creator_mcp"]
    }
  }
}

源码开发配置

仅限贡献者/开发者:需要克隆仓库并运行 uv sync

配置 A:使用 uv --directory

{
  "mcpServers": {
    "skill-creator": {
      "command": "uv",
      "args": [
        "--directory",
        "/absolute/path/to/Skills-Creator/skill-creator-mcp",
        "run",
        "python",
        "-m",
        "skill_creator_mcp"
      ]
    }
  }
}

配置 B:使用 cwd

{
  "mcpServers": {
    "skill-creator": {
      "command": "python",
      "args": ["-m", "skill_creator_mcp"],
      "cwd": "/absolute/path/to/Skills-Creator/skill-creator-mcp"
    }
  }
}

📘 详细说明:查看 MCP 配置完整指南

环境变量配置(可选)

创建 .env 文件来自定义服务器行为:

# 复制模板
cp .env.template .env

# 编辑配置
vim .env

可用环境变量

变量名 默认值 说明
MCP_SERVER_LOG_LEVEL INFO 日志级别(DEBUG/INFO/WARNING/ERROR)
MCP_SERVER_LOG_FORMAT %(asctime)s... 日志格式字符串
CACHE_ENABLED true 是否启用缓存
CACHE_TTL 300 缓存过期时间(秒)
CACHE_MAX_SIZE 100 缓存最大条目数
SKILL_CREATOR_OUTPUT_DIR ~/skills 默认输出目录
BATCH_CONCURRENT_LIMIT 5 批量操作并发限制

配置优先级:工具参数 > 环境变量 SKILL_CREATOR_OUTPUT_DIR > 默认值 ~/skills

目录自动管理

  • 默认使用 ~/skills(自动创建)
  • 支持自定义路径(如 ~/.claude/skills
  • 所有路径自动检测和创建目录
  • 自动验证目录可写性

推荐配置

# 使用默认 ~/skills
# (无需配置,自动创建)

# 或自定义目录
export SKILL_CREATOR_OUTPUT_DIR=~/.claude/skills

使用

init_skill - 初始化技能

创建新的 Agent-Skill 项目目录结构。

参数:

  • name (str): 技能名称(小写字母、数字、连字符,1-64字符)
  • template (str): 模板类型(minimal/tool-based/workflow-based/analyzer-based
  • output_dir (str): 输出目录路径(默认:.
  • with_scripts (bool): 是否包含示例脚本(默认:False
  • with_examples (bool): 是否包含使用示例(默认:False

返回:

{
  "success": true,
  "skill_path": "/path/to/skill",
  "skill_name": "my-skill",
  "template_type": "tool-based",
  "message": "技能初始化成功"
}

validate_skill - 验证技能

验证 Agent-Skill 的结构和内容是否符合规范。

参数:

  • skill_path (str): 技能目录路径
  • check_structure (bool): 是否检查目录结构(默认:True
  • check_content (bool): 是否检查内容格式(默认:True

返回:

{
  "success": true,
  "valid": true,
  "skill_path": "/path/to/skill",
  "skill_name": "my-skill",
  "template_type": "tool-based",
  "errors": [],
  "warnings": [],
  "checks": {
    "structure": true,
    "naming": true,
    "content": true,
    "template_requirements": true
  },
  "message": "验证通过"
}

analyze_skill - 分析技能

分析 Agent-Skill 的代码质量、复杂度和结构。

参数:

  • skill_path (str): 技能目录路径
  • analyze_structure (bool): 是否分析代码结构(默认:True
  • analyze_complexity (bool): 是否分析代码复杂度(默认:True
  • analyze_quality (bool): 是否分析代码质量(默认:True

返回:

{
  "success": true,
  "skill_path": "/path/to/skill",
  "skill_name": "my-skill",
  "structure": {
    "total_files": 10,
    "total_lines": 500,
    "file_breakdown": {
      "server": 1,
      "models": 2,
      "utils": 3,
      "tests": 4
    }
  },
  "complexity": {
    "cyclomatic_complexity": 5,
    "maintainability_index": 85.5
  },
  "quality": {
    "overall_score": 75.0,
    "structure_score": 30.0,
    "documentation_score": 25.0,
    "test_coverage_score": 20.0
  },
  "suggestions": ["建议1", "建议2"],
  "summary": "代码质量良好..."
}

打包工具说明

package_skill - 统一打包工具

支持两种模式:

  • 通用模式 (strict=False,默认): 灵活的排除选项,适用于通用打包场景
  • 标准模式 (strict=True): Agent-Skill标准打包模式,需要version参数,生成标准化包名

参数:

  • skill_path (str): 技能目录路径
  • output_dir (str): 输出目录路径(可选)
  • version (str): 版本号(可选,仅在strict=True时需要)
  • format (str): 打包格式(zip/tar.gz/tar.bz2,默认:zip)
  • include_tests (bool): 是否包含测试文件(默认:False)
  • strict (bool): 是否使用Agent-Skill标准打包模式(默认:False)
  • validate_before_package (bool): 打包前是否验证(默认:True)

使用示例:

# 通用打包模式
result = await package_skill(
    skill_path="/path/to/skill",
    format="zip"
)

# Agent-Skill标准打包模式(带版本号)
result = await package_skill(
    skill_path="/path/to/skill",
    version="0.3.6",
    strict=True
)
# 生成: skill-v0.3.6.zip

开发

# 运行环境检查
./scripts/check-env.sh

# 运行测试
uv run pytest

# 运行 lint
uv run ruff check .

# 运行类型检查
uv run mypy src/

# 启动服务器
uv run python -m skill_creator_mcp

开发工具(仅供开发者使用)

Phase 0 验证工具(5个)

注意:Phase 0工具已迁移到开发工具脚本(scripts/dev-tools.py),仅供开发者使用,不作为MCP工具暴露。

  • check_client_capabilities - 检测 MCP 客户端能力支持情况
  • test_llm_sampling - 测试 LLM Sampling 能力
  • test_user_elicitation - 测试用户征询能力
  • test_conversation_loop - 测试对话循环和状态管理能力
  • test_requirement_completeness - 测试需求完整性判断能力

运行开发工具:

# 查看所有可用工具
uv run python scripts/dev-tools.py --help

# 运行特定工具
uv run python scripts/dev-tools.py check_client_capabilities

许可证

MIT License

参考资源

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

skill_creator_mcp-0.3.6.tar.gz (452.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

skill_creator_mcp-0.3.6-py3-none-any.whl (87.5 kB view details)

Uploaded Python 3

File details

Details for the file skill_creator_mcp-0.3.6.tar.gz.

File metadata

  • Download URL: skill_creator_mcp-0.3.6.tar.gz
  • Upload date:
  • Size: 452.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.12

File hashes

Hashes for skill_creator_mcp-0.3.6.tar.gz
Algorithm Hash digest
SHA256 829661574e620b5e2cb2edb4c2d1dc728f1fb934148488f7262b6442c582afed
MD5 0fe671421b3b8bc05b3e1eefab729e98
BLAKE2b-256 18b44f7d5c48bd7e219aa374e1e9119669ebc9fd0a22a1095beb8baadf8b8d1f

See more details on using hashes here.

File details

Details for the file skill_creator_mcp-0.3.6-py3-none-any.whl.

File metadata

File hashes

Hashes for skill_creator_mcp-0.3.6-py3-none-any.whl
Algorithm Hash digest
SHA256 7e49456ab76fdf46da5d66b7a4e2717e56a547eadd3ef6ba2ab870affdf70121
MD5 458829f777f59c61de0e3db2b6a819cd
BLAKE2b-256 4033018babe2585f259241140da681b3563675a3ec734308cc252d265b7e30df

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page