一键导入
skill-creator
Turn any MCP server, OpenAPI spec, or GraphQL endpoint into an AI agent skill at runtime
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Turn any MCP server, OpenAPI spec, or GraphQL endpoint into an AI agent skill at runtime
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
In-process vector database for AI applications — embed vector search, hybrid retrieval, and full-text search directly into your application without managing a separate server.
LLM-powered knowledge extraction CLI — transform unstructured text into structured knowledge (graphs, hypergraphs, spatio-temporal graphs) with a single command.
Give your AI agent one-click internet access — Twitter, Reddit, YouTube, GitHub, Bilibili, and more. Zero API fees.
Generate token-efficient CLIs for AI agents by reading API docs and studying community patterns. Prints Go binaries + Claude Code skills + MCP servers.
Terminal AI coding agent with video input, subagents, MCP support, and ACP editor integration
AI-powered code review CLI — deterministic pipelines + LLM agent, battle-tested at Alibaba scale
| name | skill-creator |
| description | Turn any MCP server, OpenAPI spec, or GraphQL endpoint into an AI agent skill at runtime |
| version | 1.0.0 |
| author | Hermes Agent |
| license | MIT |
| platforms | ["linux","macos"] |
| metadata | {"hermes":{"tags":["skill-generation","mcp","openapi","graphql","automation"],"related_skills":["hermes-agent"]}} |
Generate reusable AI agent skills from MCP servers, OpenAPI specs, or GraphQL endpoints. Supports 9+ agent frameworks with an auto-improvement loop.
# Install via npm
npm install -g skill-creator
# Or clone and build
git clone https://github.com/sandiiarov/skill-creator.git
cd skill-creator
npm install && npm run build
# Generate skill from running MCP server
skill-creator from-mcp --server http://localhost:3000 --output ./skills/my-mcp
# Generate with custom agent framework
skill-creator from-mcp --server http://localhost:3000 --framework claude-code
# Generate from OpenAPI JSON/YAML
skill-creator from-openapi --spec ./api-spec.yaml --output ./skills/my-api
# Generate with authentication
skill-creator from-openapi --spec ./api-spec.yaml --auth bearer:TOKEN
# Generate from GraphQL endpoint
skill-creator from-graphql --endpoint https://api.example.com/graphql --output ./skills/my-graphql
# Run the improvement loop
skill-creator improve --skill ./skills/my-api --iterations 5
# This will:
# 1. Test the skill against real usage
# 2. Collect gotchas and edge cases
# 3. Update the skill documentation
# 4. Repeat for specified iterations
Each generated skill includes:
SKILL.md with Hermes-compatible frontmatter# Verify generated skill
cat ./skills/my-api/SKILL.md
# Test the skill works
skill-creator test --skill ./skills/my-api --dry-run