massgen-config-creator
Create structured, validated YAML configurations following MassGen standards.
Install
mkdir -p .claude/skills/massgen-config-creator && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/3565" && unzip -o skill.zip -d .claude/skills/massgen-config-creator && rm skill.zipInstalls to .claude/skills/massgen-config-creator
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Guide for creating properly structured YAML configuration files for MassGen. This skill should be used when agents need to create new configs for examples, case studies, testing, or demonstrating features.Key capabilities
- →Structure YAML configuration files
- →Define agent backends and orchestrators
- →Validate configuration property placement
- →Organize multi-agent workflows
How it works
The skill provides templates and validation rules based on established conventions for property placement at the backend or orchestrator level.
Inputs & outputs
When to use massgen-config-creator
- →Write multi-agent workflow configs
- →Create release-ready test configs
- →Structure tool integration settings
- →Validate YAML configuration syntax
About this skill
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
cwd→ BACKEND-level (individual agent workspace)context_paths→ ORCHESTRATOR-level (shared read-only files)enable_web_search→ BACKEND-levelenable_planning_mode→ ORCHESTRATOR.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 examplesmassgen/configs/tools/filesystem/- Filesystem operationsmassgen/configs/tools/web-search/- Web searchmassgen/configs/tools/code-execution/- Code executionmassgen/configs/tools/multimodal/- Image, vision, audiomassgen/configs/tools/mcp/- MCP integrationsmassgen/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:
- Always read the authoritative docs first:
docs/source/development/writing_configs.rst - Read existing configs to understand current patterns
- Copy structure from similar configs, don't invent
- Test immediately after creating
- 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.
When not to use it
- →When referencing legacy MassGen v1 paths
- →When inventing non-standard properties
Prerequisites
Limitations
- →Must follow property placement rules for cwd and context_paths
- →Requires reading existing configs for convention adherence
How it compares
It provides a standardized validation checklist and directory structure compared to manual YAML creation.
Compared to similar skills
massgen-config-creator side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| massgen-config-creator (this skill) | 1 | 8mo | Review | Beginner |
| openspec-onboard | 10 | 6mo | Review | Beginner |
| workflow-orchestration-patterns | 10 | 2mo | No flags | Advanced |
| meta-automation-architect | 7 | 8mo | Review | Advanced |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by massgen
View all by massgen →You might also like
openspec-onboard
studyzy
Guided onboarding for OpenSpec - walk through a complete workflow cycle with narration and real codebase work.
workflow-orchestration-patterns
wshobson
Design durable workflows with Temporal for distributed systems. Covers workflow vs activity separation, saga patterns, state management, and determinism constraints. Use when building long-running processes, distributed transactions, or microservice orchestration.
meta-automation-architect
comzine
Use when user wants to set up comprehensive automation for their project. Generates custom subagents, skills, commands, and hooks tailored to project needs. Creates a multi-agent system with robust communication protocol.
hive-mind-advanced
ruvnet
Advanced Hive Mind collective intelligence system for queen-led multi-agent coordination with consensus mechanisms and persistent memory
openspec-new-change
studyzy
使用实验性的产出物工作流启动一个新的 OpenSpec 变更。当用户想要通过结构化的分步方法创建新功能、修复或修改时使用。
router-first-architecture
parcadei
Router-First Architecture