Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计提醒

multi-ai-skill-builder多 AI 技能构建者

Agent Skill

multi-ai-skill-builder 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

392

周安装

16

GitHub Stars

9

下载量

127
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:multi-ai-skill-builder(多 AI 技能构建者)
来源仓库:https://github.com/adaptationio/skrillz
仓库路径:skills/multi-ai-skill-builder
安装命令:
npx skills add https://github.com/adaptationio/skrillz --skill multi-ai-skill-builder
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/adaptationio/skrillz --skill multi-ai-skill-builder

简介

multi-ai-skill-builder 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果时使用。
  • 支持基于语义匹配、标签过滤和上下文相关性进行智能内容检索与排序。
  • 安装命令为 npx skills add https://github.com/adaptationio/skrillz --skill multi-ai-skill-builder。
  • 使用前需确认权限范围、维护状态,注意可能触发联网、命令执行或文件读写操作。

SKILL.md

Multi-AI Skill Builder

Overview

multi-ai-skill-builder is a meta-skill that systematizes the Multi-AI approach to building Claude Code skills. It coordinates multiple AI models (Claude, Gemini, Codex) through research, planning, and implementation phases to create comprehensive, production-ready skills.

Purpose: Build high-quality Claude Code skills using Multi-AI research and synthesis

Pattern: Workflow-based (5-step sequential process)

Key Principles (validated by tri-AI research):

  1. Multi-Source Research - Claude for docs, Gemini for web, Codex for GitHub
  2. Synthesis Before Building - Combine findings into coherent plan
  3. Progressive Disclosure - SKILL.md + references/ + scripts/
  4. Pattern Compliance - Follow established skill patterns
  5. Validation Loop - Multi-AI review of generated skills
  6. Iterative Refinement - Build → Review → Improve cycle

Quality Targets:

  • Research coverage: 3+ sources (Claude + Gemini + Codex)
  • Skill completeness: All required sections present
  • Code examples: 5+ practical examples per skill
  • Validation score: ≥85/100

When to Use

Use multi-ai-skill-builder when:

  • Creating new Claude Code skills from scratch
  • Building skill families (related skills for a domain)
  • Enhancing existing skills with new research
  • Researching best practices for a technical domain
  • Converting research into actionable skills
  • Establishing skill development workflows

When NOT to Use:

  • Simple skill updates (use direct editing)
  • Trivial skills (<100 lines, single operation)
  • Skills outside your domain expertise (research first)

Prerequisites

Required

  • Skill topic/domain clearly defined
  • Time for research (30-60 min) and building (60-120 min)
  • Access to Claude (always available)

Recommended

  • Gemini CLI for web research
  • Codex CLI for GitHub patterns
  • Existing example skills to reference

Understanding

  • Claude Code skill structure
  • YAML frontmatter format
  • Progressive disclosure architecture

Workflow

Step 1: Research Phase (Multi-AI)

Time: 30-60 minutes Purpose: Gather comprehensive knowledge from multiple sources

1.1 Claude Documentation Research

Launch Claude subagent for official documentation:

Research [TOPIC] for Claude Code skill creation:

Focus on:
1. Official documentation and best practices
2. Existing similar skills in the codebase
3. API patterns and SDK usage
4. Common workflows and use cases

Output structured findings with:
- Key concepts
- Recommended patterns
- Code examples
- Gotchas and anti-patterns

1.2 Gemini Web Research

Use Gemini CLI for current best practices:

gemini -p "Research [TOPIC] best practices 2024-2025:
1. Industry standard approaches
2. Common patterns and anti-patterns
3. Tool comparisons and recommendations
4. Recent developments and trends
5. Real-world implementation examples

Provide comprehensive findings with sources."

1.3 Codex GitHub Research

Use Codex for code patterns:

codex "Research GitHub patterns for [TOPIC]:
1. Popular library implementations
2. Production code examples
3. Testing patterns
4. Configuration approaches
5. Error handling patterns

Provide code examples and best practices."

1.4 Create Research Directory

mkdir -p .analysis/[topic]-research

Save all research to:

  • .analysis/[topic]-research/claude-docs-research.md
  • .analysis/[topic]-research/gemini-web-research.md
  • .analysis/[topic]-research/codex-github-research.md

Step 2: Synthesis Phase

Time: 15-30 minutes Purpose: Combine research into actionable plan

2.1 Synthesize Findings

Synthesize findings from multi-AI research:

Claude findings: [SUMMARY]
Gemini findings: [SUMMARY]
Codex findings: [SUMMARY]

Create unified synthesis:
1. Key patterns to implement
2. Best practices to follow
3. Anti-patterns to avoid
4. Recommended skill structure
5. Operations/workflows to include
6. Code examples to provide

2.2 Create Synthesis Document

Save to .analysis/[topic]-research/SYNTHESIS_AND_PLAN.md:

# [Topic] Skill Synthesis

## Research Sources
- Claude: Documentation analysis
- Gemini: Web best practices
- Codex: GitHub patterns

## Key Findings
1. [Finding 1]
2. [Finding 2]
...

## Recommended Structure
- Pattern: [workflow/task/reference/capabilities]
- Operations: [list]
- References: [list]

## Implementation Plan
1. Create SKILL.md with [structure]
2. Add references for [topics]
3. Include [N] code examples
4. Cover [operations/workflows]

## Quality Checklist
- [ ] YAML frontmatter complete
- [ ] Trigger keywords included
- [ ] 5+ code examples
- [ ] Error handling covered
- [ ] All patterns validated

Step 3: Build Phase

Time: 60-90 minutes Purpose: Create the skill files

3.1 Create Directory Structure

mkdir -p .claude/skills/[skill-name]/references
mkdir -p .claude/skills/[skill-name]/scripts  # if needed

3.2 Build SKILL.md

Follow the template structure:

---
name: skill-name-in-hyphen-case
description: [Purpose]. [Pattern type]. Use when [triggers].
allowed-tools: Task, Read, Write, Edit, Glob, Grep, Bash
---

# Skill Name

## Overview
[Brief description]
**Purpose**: [One line]
**Pattern**: [Workflow/Task/Reference/Capabilities]
**Key Principles**: [3-6 numbered principles]
**Quality Targets**: [Measurable goals]

## When to Use
[Use cases and non-use cases]

## Prerequisites
### Required / ### Recommended / ### Understanding

## [Operations or Workflow Steps]
[Main content with code examples]

## Multi-AI Coordination
[How to use Claude/Gemini/Codex for this skill]

## Related Skills
[Links to related skills]

## References
[Links to reference files]

3.3 Build Reference Files

Create detailed guides in references/:

  • Detailed how-to guides
  • Configuration references
  • Integration patterns
  • Troubleshooting guides

3.4 Add Code Examples

Every skill needs:

  • Quick start example
  • Common use case examples
  • Advanced/edge case examples
  • Error handling examples
  • Integration examples

Step 4: Validation Phase

Time: 15-30 minutes Purpose: Verify skill quality

4.1 Structure Validation

Check YAML frontmatter:

head -20 .claude/skills/[skill-name]/SKILL.md

Verify sections:

  • YAML frontmatter with name, description
  • Overview section
  • When to Use section
  • Prerequisites section
  • Main content (operations/workflows)
  • Related Skills section
  • References section

4.2 Multi-AI Review

Review this skill for quality:

[PASTE SKILL.md]

Check:
1. YAML frontmatter complete and descriptive?
2. Trigger keywords in description?
3. Clear when to use / when not to use?
4. Prerequisites documented?
5. 5+ code examples?
6. Error handling covered?
7. Progressive disclosure followed?
8. Related skills linked?

Score (0-100) and improvement suggestions.

4.3 Gemini Cross-Check

gemini -p "Verify this skill against best practices:
[SKILL CONTENT]

Check for:
- Accuracy of technical information
- Missing important patterns
- Outdated recommendations"

Step 5: Refinement Phase

Time: 15-30 minutes Purpose: Apply improvements from validation

5.1 Apply Feedback

Address issues from validation:

  • Fix any structural issues
  • Add missing examples
  • Clarify unclear sections
  • Enhance descriptions

5.2 Final Quality Check

Ensure:

  • Score ≥85/100
  • All validation items pass
  • Cross-check feedback addressed
  • Ready for production use

5.3 Create Delivery Summary

Save to .analysis/[topic]-research/DELIVERY_SUMMARY.md:

# [Skill Name] - Delivery Summary

**Date**: [Date]
**Status**: COMPLETE
**Total Lines**: [X] lines across [Y] files

## Research Phase
- Claude: [Summary]
- Gemini: [Summary]
- Codex: [Summary]

## Skills Delivered
### [skill-name]
**Files**:
- SKILL.md ([X] bytes)
- references/[file].md
...

**Coverage**:
- [Feature 1]
- [Feature 2]
...

## Quality Validation
- Structure: PASS
- Content: PASS
- Examples: [N] included
- Score: [X]/100

## Usage Examples
[Show example triggers]

Multi-AI Coordination

Agent Assignment for Skill Building

PhasePrimarySupportPurpose
Docs ResearchClaude-Official documentation
Web ResearchGeminiClaudeCurrent best practices
Code ResearchCodexClaudeGitHub patterns
SynthesisClaudeGeminiCombine findings
BuildingClaude-Write skill files
ValidationClaudeGeminiQuality check

Research Commands

Claude Subagent:

Use Task tool with subagent_type=Explore

Gemini CLI:

gemini -p "Research [topic]: [specific questions]"

Codex CLI:

codex "Research GitHub patterns for [topic]"

Templates

SKILL.md Template

See templates/SKILL_TEMPLATE.md

Reference File Template

See templates/REFERENCE_TEMPLATE.md

Synthesis Template

See templates/SYNTHESIS_TEMPLATE.md


Quality Checklist

Structure (20 points)

  • YAML frontmatter valid
  • All required sections present
  • Progressive disclosure followed
  • File naming conventions

Content (25 points)

  • Clear descriptions
  • Comprehensive coverage
  • Accurate information
  • Well-organized

Examples (25 points)

  • 5+ code examples
  • Quick start example
  • Common use cases
  • Error handling
  • Advanced scenarios

Usability (15 points)

  • Easy to navigate
  • Clear when to use
  • Prerequisites documented
  • Related skills linked

Validation (15 points)

  • Multi-AI reviewed
  • Cross-checked
  • Feedback addressed
  • Score ≥85/100

Example: Building ECS Skills

This example shows how we built the ECS/Fargate skill family:

Research Phase

# Claude subagent for AWS docs
# Gemini for 2024-2025 best practices
gemini -p "Research ECS/Fargate best practices 2024-2025..."

# Codex for GitHub patterns
codex "Research GitHub patterns for ECS/Terraform..."

Synthesis Phase

  • Combined findings into unified plan
  • Identified 5 skills to build
  • Mapped to existing EKS skill patterns

Build Phase

  • Created boto3-ecs (SDK patterns)
  • Created terraform-ecs (IaC)
  • Created ecs-fargate (Fargate specifics)
  • Created ecs-deployment (strategies)
  • Created ecs-troubleshooting (debugging)

Result

  • 2,209+ lines across 15 files
  • All skills validated
  • Progressive disclosure implemented
  • Multi-AI researched and reviewed

Related Skills

  • multi-ai-research: Research phase patterns
  • multi-ai-planning: Planning phase patterns
  • multi-ai-implementation: Implementation patterns
  • multi-ai-verification: Validation patterns
  • skill-builder-generic: Universal skill patterns
  • review-multi: Skill review framework

References

  • templates/SKILL_TEMPLATE.md - Skill file template
  • templates/REFERENCE_TEMPLATE.md - Reference file template
  • templates/SYNTHESIS_TEMPLATE.md - Research synthesis template

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

github-copilot

31.89%
按下载量换算41

Claude Code

23.36%
按下载量换算30

mcpjam

17.82%
按下载量换算23

moltbot

12.59%
按下载量换算16

windsurf

8.7%
按下载量换算11

zencoder

3.25%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills