Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计通过

massgen-config-creatorMassgen 配置创建者

Agent Skill

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

总安装

994

周安装

41

GitHub Stars

968

下载量

325
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/massgen/massgen --skill massgen-config-creator

简介

massgen-config-creator 用于查找、检索和筛选相关信息,适合在多种宿主环境中快速定位候选结果。

  • 适用于关键词搜索、任务场景匹配或来源线索梳理等研究检索需求。
  • 通过关键词输入和来源仓库配置实现信息定位与筛选功能。
  • 安装前需确认权限范围和维护状态,注意可能触发联网或文件读写操作。
  • 建议结合原始 README 核验具体用法,确保符合实际使用边界。

SKILL.md

Config Creator

This skill provides guidance for creating new YAML configuration files that follow MassGen conventions and best practices.

Purpose

The config-creator skill helps you create well-structured, validated configuration files for MassGen agents. It ensures consistency across the codebase and helps avoid common mistakes.

When to Use This Skill

Use the config-creator skill when you need to:

  • Create example configs demonstrating new features
  • Write configs for case studies or releases
  • Build reusable multi-agent workflow configs
  • Test new backend or tool integrations
  • Share configuration patterns with users

Authoritative Documentation

IMPORTANT: The primary source of truth for config creation is:

📖 docs/source/development/writing_configs.rst

This file contains:

  • Complete config creation workflow
  • All current conventions and rules
  • Property placement reference
  • Validation checklist
  • Common patterns and examples
  • Up-to-date templates

Always consult this document for the latest configuration standards.

Critical Rules (Quick Reference)

1. Never Invent Properties

ALWAYS read 2-3 existing configs first to understand current conventions:

# Find similar configs
ls massgen/configs/tools/{category}/

# Read examples
cat massgen/configs/basic/multi/two_agents_gemini.yaml
cat massgen/configs/tools/mcp/filesystem_claude.yaml

2. Property Placement Matters

  • cwdBACKEND-level (individual agent workspace)
  • context_pathsORCHESTRATOR-level (shared read-only files)
  • enable_web_searchBACKEND-level
  • enable_planning_modeORCHESTRATOR.COORDINATION-level

See docs/source/development/writing_configs.rst for complete property reference.

3. Key Conventions

DO:

  • Prefer cost-effective models (gpt-5-nano, gpt-5-mini, gemini-2.5-flash)
  • Give all agents identical system_message
  • Use separate workspaces per agent
  • Include "What happens" comments explaining execution flow

DON'T:

  • Reference massgen v1 or legacy paths
  • Invent new properties
  • Suggest cleanup commands that delete logs

Quick Start Workflow

Step 1: Research Existing Configs

# Find configs in your category
ls massgen/configs/tools/{relevant_category}/

# Read 2-3 similar examples
cat massgen/configs/basic/multi/two_agents_gemini.yaml

Step 2: Copy and Adapt

  • Copy a similar config as your starting point
  • Adapt values, never invent properties
  • Follow the structure from existing configs

Step 3: Test

massgen --config massgen/configs/tools/{category}/{your_config}.yaml "Test prompt"

Step 4: Validate

Refer to the validation checklist in docs/source/development/writing_configs.rst

File Naming and Location

Naming Pattern:

{agent_description}_{feature}.yaml

Location Categories:

  • massgen/configs/basic/ - Simple examples
  • massgen/configs/tools/filesystem/ - Filesystem operations
  • massgen/configs/tools/web-search/ - Web search
  • massgen/configs/tools/code-execution/ - Code execution
  • massgen/configs/tools/multimodal/ - Image, vision, audio
  • massgen/configs/tools/mcp/ - MCP integrations
  • massgen/configs/tools/planning/ - Planning mode

Common Patterns (Quick Reference)

Single Agent

agent:  # Singular
  id: "my_agent"
  backend:
    type: "claude"
    model: "claude-sonnet-4"

Multi-Agent

agents:  # Plural
  - id: "agent_a"
    backend:
      type: "openai"
      model: "gpt-5-mini"
    system_message: "Shared task description"

  - id: "agent_b"
    backend:
      type: "gemini"
      model: "gemini-2.5-flash"
    system_message: "Shared task description"

With Filesystem Access

agents:
  - backend:
      cwd: "workspace1"  # Backend-level

orchestrator:
  context_paths:  # Orchestrator-level
    - path: "massgen/configs/resources/v0.0.29-example/source"
      permission: "read"

Reference Files

Primary Documentation:

  • Config writing guide: docs/source/development/writing_configs.rst ⭐ START HERE
  • YAML schema reference: docs/source/reference/yaml_schema.rst
  • Example configs: massgen/configs/

Supporting Documentation:

  • Supported models: docs/source/reference/supported_models.rst
  • Backend configuration: docs/source/user_guide/backends.rst
  • MCP integration: docs/source/user_guide/mcp_integration.rst

Tips for Agents

When creating configs programmatically:

  1. Always read the authoritative docs first: docs/source/development/writing_configs.rst
  2. Read existing configs to understand current patterns
  3. Copy structure from similar configs, don't invent
  4. Test immediately after creating
  5. When in doubt, consult the full guide in docs/source/development/writing_configs.rst

This skill is a quick reference guide. For comprehensive, up-to-date information, always refer to the official documentation files listed above.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

26.35%
按下载量换算86

OpenCode

21.33%
按下载量换算69

Antigravity

20.33%
按下载量换算66

windsurf

14.16%
按下载量换算46

Codex

7.94%
按下载量换算26

Gemini CLI

3.36%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills