moai-alfred-config-schema

Define the official schema and migration rules for .moai/config.json files.

1|Updated Jul 28, 2025
One-click install
npx skills add https://github.com/kivo360/quickhooks --skill moai-alfred-config-schema
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: moai-alfred-config-schema
Source: https://github.com/kivo360/quickhooks/tree/main/.claude/skills/moai-alfred-config-schema
Command: npx skills add https://github.com/kivo360/quickhooks --skill moai-alfred-config-schema

SYSTEM DOCUMENTATION & REQUIREMENTS

What It Does

.moai/config.json 파일의 공식 스키마와 각 필드의 목적, 유효한 값, 마이그레이션 규칙을 정의합니다.

When to Use

  • ✅ Project 초기화 후 config.json 설정
  • ✅ config.json 스키마 이해
  • ✅ Language settings, git strategy, TAG configuration 변경
  • ✅ Legacy config 마이그레이션

Schema Overview

{
  "version": "0.17.0",
  "project": {
    "name": "ProjectName",
    "codebase_language": "python",
    "conversation_language": "ko",
    "conversation_language_name": "Korean"
  },
  "language": {
    "conversation_language": "ko",
    "conversation_language_name": "Korean"
  },
  "git": {
    "strategy": "github-pr",
    "main_branch": "main",
    "protected": true,
    "auto_delete_branches": true,
    "spec_git_workflow": "feature_branch"
  },
  "report_generation": {
    "enabled": true,
    "auto_create": false,
    "warn_user": true
  },
  "tag": {
    "prefix_style": "DOMAIN-###"
  }
}

Top-Level Sections

  • version: Configuration version (do not edit)
  • project: Name, codebase language, conversation language
  • language: Multi-language support settings
  • git: GitHub workflow strategy, branch auto-cleanup, SPEC workflow mode
  • report_generation: Document generation frequency control (v0.17.0+)
  • tag: TAG system configuration