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

moai-workflow-templates摩艾工作流程模板

Agent Skill

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

总安装

192

周安装

8

GitHub Stars

61

下载量

64
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:moai-workflow-templates(摩艾工作流程模板)
来源仓库:https://github.com/modu-ai/cc-plugins
仓库路径:skills/moai-workflow-templates
安装命令:
npx skills add https://github.com/modu-ai/cc-plugins --skill moai-workflow-templates
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/modu-ai/cc-plugins --skill moai-workflow-templates

简介

moai-workflow-templates 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于需要根据关键词或任务场景从模板库中筛选合适工作流的场景。
  • 通过 npx skills add 命令安装,需结合来源仓库和 README 确认具体用法。
  • 安装前建议确认权限范围、维护状态及是否会触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Enterprise Template Management

Unified template system combining code boilerplates, feedback templates, and project optimization workflows for rapid development and consistent patterns.

Quick Reference

Core Capabilities:

  • Code template library for FastAPI, React, Vue, and Next.js
  • GitHub issue feedback templates covering 6 types
  • Project template optimization and smart merging
  • Template version management and history
  • Backup discovery and restoration
  • Pattern reusability and customization

When to Use:

  • Scaffolding new projects or features
  • Creating GitHub issues with /moai:9-feedback
  • Optimizing template structures after MoAI-ADK updates
  • Restoring from project backups
  • Managing template versions and customizations
  • Generating boilerplate code

Key Features:

  • Code Templates: FastAPI, React, Vue, Docker, and CI/CD templates
  • Feedback Templates: 6 GitHub issue types including bug, feature, improvement, refactor, docs, and question
  • Template Optimizer: Smart merge, backup restoration, and version tracking
  • Pattern Library: Reusable patterns for common scenarios

Quick Access to Modules:

  • Code Templates documentation in modules/code-templates.md
  • Feedback Templates documentation in modules/feedback-templates.md
  • Template Optimizer documentation in modules/template-optimizer.md

Implementation Guide

Features

  • Project templates for common architectures
  • Boilerplate code generation with best practices
  • Configurable template variables and customization
  • Multi-framework support including React, FastAPI, and Spring
  • Integrated testing and CI/CD configurations

When to Use

  • Bootstrapping new projects with proven architecture patterns
  • Ensuring consistency across multiple projects in an organization
  • Quickly prototyping new features with proper structure
  • Onboarding new developers with standardized project layouts
  • Generating microservices or modules following team conventions

Core Patterns

Pattern 1 - Template Structure:

Templates are organized in a directory hierarchy. The top-level templates directory contains framework-specific subdirectories. A backend framework directory such as fastapi-backend contains template.json for variables and a src directory with main.py, models subdirectory, and tests subdirectory. A frontend framework directory such as nextjs-frontend contains template.json, app directory, and components directory. A fullstack template contains separate backend and frontend subdirectories.

Pattern 2 - Template Variables:

Template variables are defined in a JSON configuration file with two main sections. The variables section defines key-value pairs such as PROJECT_NAME, AUTHOR, LICENSE, and PYTHON_VERSION. The files section maps file patterns to processing modes: files marked as substitute have variables replaced, while files marked as copy are transferred unchanged.

Pattern 3 - Template Generation:

The template generation process follows five steps. First, load the template directory structure. Second, substitute variables in files marked for substitution. Third, copy static files as-is. Fourth, run post-generation hooks such as dependency installation and git initialization. Fifth, validate the generated project structure.

Core Patterns in Detail

Pattern 1: Code Template Scaffolding

Concept: Rapidly scaffold projects with production-ready boilerplates.

To generate a project, load the appropriate template such as backend/fastapi. Configure the scaffold with the project name, desired features such as auth, database, and celery, and customizations such as database type. Execute the scaffold to create the project structure.

For complete library and examples, see the Code Templates module documentation.


Pattern 2: GitHub Feedback Templates

Concept: Structured templates for consistent GitHub issue creation.

Six Template Types: Bug Report, Feature Request, Improvement, Refactor, Documentation, and Question/Discussion.

Integration: Auto-triggered by the /moai:9-feedback command.

For all template types and usage, see the Feedback Templates module documentation.


Pattern 3: Template Optimization and Smart Merge

Concept: Intelligently merge template updates while preserving user customizations.

Smart Merge Algorithm: The three-way merge process works as follows. First, extract user customizations from the backup. Second, get the latest template defaults from the current templates. Third, merge with appropriate priority where template_structure uses the latest defaults, user_config preserves user settings, and custom_content retains user modifications.

For complete workflow and examples, see the Template Optimizer module documentation.


Pattern 4: Backup Discovery and Restoration

Concept: Automatic backup management with intelligent restoration.

Restoration Process: The process follows four steps. First, load backup metadata using the backup identifier. Second, validate backup integrity and raise an error if the backup is corrupted. Third, extract customizations from the validated backup. Fourth, apply the extracted customizations to the current project.

For complete implementation, see the Template Optimizer module section on Restoration Process.


Pattern 5: Template Version Management

Concept: Track template versions and maintain update history.

Version Tracking: The template_optimization configuration section stores last_optimized timestamp, backup_version identifier, template_version number, and customizations_preserved list containing items like language, team_settings, and domains.

For complete implementation, see the Template Optimizer module section on Version Tracking.


Module Reference

Core Modules

  • Code Templates in modules/code-templates.md: Boilerplate library, scaffold patterns, and framework templates
  • Feedback Templates in modules/feedback-templates.md: 6 GitHub issue types, usage examples, and best practices
  • Template Optimizer in modules/template-optimizer.md: Smart merge algorithm, backup restoration, and version management

Module Contents

Code Templates include FastAPI REST API template, React component template, Docker and CI/CD templates, and template variables with scaffolding patterns.

Feedback Templates include Bug Report template, Feature Request template, Improvement template, Refactor template, Documentation template, Question template, and integration with /moai:9-feedback command.

Template Optimizer includes 6-phase optimization workflow, smart merge algorithm, backup discovery and restoration, and version tracking with history.

Advanced Documentation

For detailed patterns and implementation strategies, refer to the Code Templates Guide for complete template library, Feedback Templates for issue template reference, and Template Optimizer for optimization and merge strategies.

Best Practices

Core Requirements

  • Use templates for consistent project structure
  • Preserve user customizations during updates
  • Create backups before major template changes
  • Follow template structure conventions
  • Document custom modifications
  • Use smart merge for template updates
  • Track template versions in config
  • Test templates before production use

Quality Standards

[HARD] Document all template default modifications before applying changes. WHY: Template defaults serve as the baseline for all projects and undocumented changes create confusion and inconsistency across teams. IMPACT: Without documentation, teams cannot understand why defaults deviate from standards, leading to maintenance issues and conflicting implementations.

[HARD] Create backups before executing template optimization workflows. WHY: Template optimization involves structural changes that may be difficult to reverse without a clean restoration point. IMPACT: Missing backups can result in permanent loss of user customizations, requiring manual reconstruction of project-specific configurations.

[HARD] Resolve all merge conflicts during template update workflows. WHY: Unresolved conflicts create broken configurations that prevent proper template functionality. IMPACT: Ignored conflicts lead to runtime errors, inconsistent behavior, and project instability requiring emergency fixes.

[SOFT] Maintain consistent template pattern usage throughout the project. WHY: Mixing different template patterns creates cognitive overhead and makes the codebase harder to understand and maintain. IMPACT: Inconsistent patterns reduce code predictability and increase onboarding time for new team members.

[HARD] Preserve complete customization history across all template updates. WHY: Customization history provides an audit trail of project-specific decisions and enables rollback to previous states. IMPACT: Lost history makes it impossible to understand why changes were made, preventing informed decisions about future modifications.

[HARD] Validate template functionality through testing before production deployment. WHY: Untested templates may contain errors that only surface in production environments, causing system failures. IMPACT: Production failures from untested templates result in downtime, data issues, and emergency rollbacks affecting users.

[SOFT] Design templates within reasonable complexity limits for maintainability. WHY: Excessive template complexity makes them difficult to understand, modify, and debug when issues arise. IMPACT: Overly complex templates slow down development velocity and increase the likelihood of errors during customization.

[HARD] Track template versions using the built-in version management system. WHY: Version tracking enables understanding of template evolution, compatibility checking, and coordinated updates. IMPACT: Without version tracking, teams cannot determine which template features are available or coordinate updates across projects safely.

Works Well With

Agents:

  • workflow-project: Project initialization
  • core-planner: Template planning
  • workflow-spec: SPEC template generation

Skills:

  • moai-project-config-manager: Configuration management and validation
  • moai-cc-configuration: Claude Code settings integration
  • moai-foundation-specs: SPEC template generation
  • moai-docs-generation: Documentation template scaffolding
  • moai-core-workflow: Template-driven workflows

Commands:

  • /moai:0-project: Project initialization with templates
  • /moai:9-feedback: Feedback template selection and issue creation

Workflow Integration

Project Initialization Workflow: Select code template using Pattern 1, scaffold project structure, apply customizations, and initialize version tracking using Pattern 5.

Feedback Submission Workflow: Execute /moai:9-feedback command, select issue type using Pattern 2, fill template fields, and auto-generate GitHub issue.

Template Update Workflow: Detect template version change, create backup using Pattern 4, run smart merge using Pattern 3, and update version history using Pattern 5.

Success Metrics

  • Scaffold Time: 2 minutes for new projects compared to 30 minutes manual
  • Template Adoption: 95% of projects use templates
  • Customization Preservation: 100% user content retained during updates
  • Feedback Completeness: 95% GitHub issues with complete information
  • Merge Success Rate: 99% conflicts resolved automatically

Changelog

  • v3.1.0 (2026-01-11): Converted to CLAUDE.md documentation standards, removed code blocks and tables
  • v3.0.0 (2026-01-08): Major version with modular architecture
  • v2.0.0 (2025-11-24): Unified moai-core-code-templates, moai-core-feedback-templates, and moai-project-template-optimizer into single skill with 5 core patterns
  • v1.0.0 (2025-11-22): Original individual skills

Status: Production Ready (Enterprise) Modular Architecture: SKILL.md + 3 core modules Integration: Plan-Run-Sync workflow optimized Generated with: MoAI-ADK Skill Factory

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

25.02%
按下载量换算16

windsurf

24.84%
按下载量换算16

trae

18.65%
按下载量换算12

OpenCode

12.34%
按下载量换算8

Codex

6.88%
按下载量换算4

Antigravity

3.24%
按下载量换算2

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills