بنقرة واحدة
skill-creation
使用 Skill Seekers MCP 工具生成 Claude AI 技能的完整工作流指南
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
使用 Skill Seekers MCP 工具生成 Claude AI 技能的完整工作流指南
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
站在巨人肩膀上创建高质量 Skill —— 在创建新 skill 之前,帮助用户发现并整合领域专家的成熟方法论。当用户请求"帮我创建一个关于 X 的 skill"或"我想做一个能 Y 的 skill"时触发。此 skill 指导方法论选择,然后交由 skill-creator 生成最终 skill。
CRITICAL - Guide for using Claudish CLI ONLY through sub-agents to run Claude Code with OpenRouter models (Grok, GPT-5, Gemini, MiniMax). NEVER run Claudish directly in main context unless user explicitly requests it. Use when user mentions external AI models, Claudish, OpenRouter, or alternative models. Includes mandatory sub-agent delegation patterns, agent selection guide, file-based instructions, and strict rules to prevent context window pollution.
Telegram 生态开发全栈指南 - 涵盖 Bot API、Mini Apps (Web Apps)、MTProto 客户端开发。包括消息处理、支付、内联模式、Webhook、认证、存储、传感器 API 等完整开发资源。。
snapDOM is a fast, accurate DOM-to-image capture tool that converts HTML elements into scalable SVG images. Use for capturing HTML elements, converting DOM to images (SVG, PNG, JPG, WebP), preserving styles, fonts, and pseudo-elements.
CCXT cryptocurrency trading library. Use for cryptocurrency exchange APIs, trading, market data, order management, and crypto trading automation across 150+ exchanges. Supports JavaScript/Python/PHP.
CoinGecko API documentation - cryptocurrency market data API, price feeds, market cap, volume, historical data. Use when integrating CoinGecko API, building crypto price trackers, or accessing cryptocurrency market data.
| name | skill-creation |
| description | 使用 Skill Seekers MCP 工具生成 Claude AI 技能的完整工作流指南 |
本技能提供使用 Skill Seekers MCP 工具创建 Claude AI 技能的最佳实践和工作流指南。
┌─────────────────────────────────────────────────────────────────┐
│ SKILL CREATION WORKFLOW │
├─────────────────────────────────────────────────────────────────┤
│ │
│ 1. 选择数据源 │
│ ├── 文档网站 → scrape_docs │
│ ├── GitHub 仓库 → scrape_github │
│ └── PDF 文件 → scrape_pdf │
│ │
│ 2. 配置 (可选) │
│ ├── 使用预设 → list_configs │
│ ├── 生成配置 → generate_config │
│ └── 验证配置 → validate_config │
│ │
│ 3. 爬取内容 │
│ └── estimate_pages → scrape_* → 本地技能文件 │
│ │
│ 4. 打包和安装 │
│ ├── package_skill → .zip 文件 │
│ ├── upload_skill → Claude 平台 │
│ └── install_skill → 一键完成 │
│ │
└─────────────────────────────────────────────────────────────────┘
使用 list_configs 工具列出所有可用的预设配置
如果目标框架有预设配置(如 React、Vue、Django),直接使用。
使用 estimate_pages 工具估计 https://react.dev/ 的页面数
这有助于了解爬取工作量和预计时间。
使用预设配置:
使用 scrape_docs 工具和 react 预设配置爬取 React 文档
使用自定义 URL:
使用 scrape_docs 工具爬取 https://docs.example.com/
使用 package_skill 工具将生成的技能打包为 zip 文件
使用 install_skill 工具安装打包的技能到 Claude
1. 使用 scrape_github 工具分析 owner/repo 仓库
2. 查看生成的 AST 分析结果
3. 使用 package_skill 打包
4. 使用 install_skill 安装
| 语言 | AST 解析 |
|---|---|
| TypeScript/JavaScript | ✅ |
| Python | ✅ |
| Go | ✅ |
| Rust | ✅ |
| Java | ✅ |
| C# | ✅ |
1. 使用 scrape_pdf 工具提取 path/to/document.pdf 的内容
2. 查看提取结果(文本、表格、图像描述)
3. 使用 package_skill 打包
4. 使用 install_skill 安装
1. 使用 scrape_docs 爬取官方文档
2. 使用 scrape_github 分析源码仓库
3. 系统会自动进行冲突检测
4. 统一打包为单一技能
使用 generate_config 工具为 https://docs.example.com/ 生成配置
{
"name": "example-skill",
"description": "技能描述",
"base_url": "https://docs.example.com/",
"start_urls": ["https://docs.example.com/getting-started"],
"selectors": {
"main_content": "article",
"title": "h1",
"code_blocks": "pre code"
},
"url_patterns": {
"include": ["/docs", "/api"],
"exclude": ["/blog", "/changelog"]
},
"rate_limit": 0.5,
"max_pages": 200
}
使用 validate_config 工具验证 my-config.json 的结构
使用 add_config_source 添加 GitHub 仓库作为配置源:
https://github.com/myorg/skill-configs
使用 fetch_config 从配置源获取 my-framework 配置
使用 submit_config 将本地配置提交到配置源
始终先使用 estimate_pages 了解工作量,避免爬取过多无关内容。
25 个预设配置经过优化,优先使用它们而非从头创建。
超过 500 页的文档应使用 split_config 分割,然后用 generate_router 创建路由技能。
框架和库会更新,定期重新爬取以保持技能的时效性。
提交或分享配置前,始终使用 validate_config 验证。
rate_limit 降低请求频率url_patterns 排除无关页面