Install
$ agentstack add skill-modu-ai-moai-adk-moai ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Pre-execution Context
!git status --porcelain 2>/dev/null || true !git branch --show-current 2>/dev/null || true
Essential Files
.moai/config/config.yaml
Authority References
Rules and constraints governing all workflows are always loaded from these sources. Do NOT duplicate their content here:
- Core identity, orchestration principles, agent catalog: CLAUDE.md
- Quality gates, security boundaries: .claude/rules/moai/core/moai-constitution.md
- SPEC workflow phases, token budgets: .claude/rules/moai/workflow/spec-workflow.md
- Development methodologies (DDD/TDD): .claude/rules/moai/workflow/spec-workflow.md (Run Phase section)
- Agent definitions: See CLAUDE.md Section 4. For agent creation, use builder-harness subagent (artifact_type=agent).
- @MX tag rules and protocol: .claude/rules/moai/workflow/mx-tag-protocol.md
Intent Router
Raw User Input
$ARGUMENTS
Routing Instructions
[HARD] Route the Raw User Input above using the strict priority order below. Extract the FIRST WORD of the input for subcommand matching. All text after the subcommand keyword is CONTEXT to be passed to the matched workflow — it is NOT a routing signal and MUST NOT influence which workflow is selected.
Execution Mode Flags (mutually exclusive)
--team: Force Agent Teams mode for parallel execution--solo: Force sub-agent mode (single agent per phase)- No flag: System auto-selects based on complexity thresholds (domains >= 3, files >= 10, or complexity score >= 7)
When no flag is provided, the system evaluates task complexity and automatically selects between team mode (for complex, multi-domain tasks) and sub-agent mode (for focused, single-domain tasks).
Priority 1: Explicit Subcommand Matching
[HARD] Extract the FIRST WORD from the Raw User Input section above. If it matches any subcommand below (or its alias), route to that workflow IMMEDIATELY. Do NOT analyze the remaining text for routing — it is context for the matched workflow:
- brain (aliases: ideate, idea): Pre-spec ideation workflow — 7-phase idea-to-proposal pipeline with Claude Design handoff package. Runs BEFORE project and plan.
- plan (aliases: spec): SPEC document creation workflow
- run (aliases: impl): DDD/TDD implementation workflow (per quality.yaml development_mode)
- sync (aliases: docs, pr): Documentation synchronization and PR creation
- design (aliases: brief, brand): Hybrid design workflow (Claude Design import path A or code-based skill path B)
- project (aliases: init): Project documentation generation
- feedback (aliases: fb, bug, issue): GitHub issue creation
- fix: Auto-fix errors in a single pass
- loop: Iterative auto-fix until completion conditions are satisfied
- mx: MX tag scan and annotation for codebase
- review (aliases: code-review): Code review with security and MX tag compliance
- clean (aliases: dead-code): Identify and safely remove dead code
- codemaps: Generate architecture documentation in
.moai/project/codemaps/ - coverage (aliases: cov): Analyze test coverage and generate missing tests
- e2e (aliases: e2e-test): Create and run E2E tests
- gate (aliases: check, pre-commit): Lightweight pre-commit quality gate (lint+format+type-check+test)
- security (aliases: audit, sec): Dedicated OWASP security audit with dependency scanning
- harness (aliases: hrn, learn): V3R4 self-evolving harness lifecycle (status / apply / rollback <date> / disable) — slash-command-only surface; CLI verb path retired per the harness foundation policy (BC-V3R4-HARNESS-001-CLI-RETIREMENT)
Priority 2: SPEC-ID Detection
Only if Priority 1 did not match: Check if the Raw User Input contains a pattern matching SPEC-XXX (such as SPEC-AUTH-001). If found, route to the run workflow automatically. The SPEC-ID becomes the target for DDD/TDD implementation.
Priority 3: Natural Language Classification
Only if BOTH Priority 1 AND Priority 2 did not match: Classify the intent of the ENTIRE Raw User Input as natural language. This priority is NEVER reached when the first word matches a known subcommand.
- Planning and design language (design, architect, plan, spec, requirements, feature request) routes to plan
- Quality gate language (lint, format, check, pre-commit, quality gate) routes to gate
- Security language (security, audit, owasp, vulnerability, injection, xss, csrf) routes to security
- Error and fix language (fix, error, bug, broken, failing, lint) routes to fix
- Iterative and repeat language (keep fixing, until done, repeat, iterate, all errors) routes to loop
- Documentation language (document, sync, docs, readme, changelog, PR) routes to sync or project
- Feedback and bug report language (report, feedback, suggestion, issue) routes to feedback
- MX tag language (mx tag, annotation, code context, legacy annotate) routes to mx
- Implementation language (implement, build, create, add, develop) with clear scope routes to moai (default autonomous)
Priority 4: Default Behavior
If the intent remains ambiguous after all priority checks, use AskUserQuestion to present the top 2-3 matching workflows and let the user choose.
If the intent is clearly a development task with no specific routing signal, default to the moai workflow (plan -> run -> sync pipeline) for full autonomous execution.
Workflow Quick Reference
brain - Pre-Spec Ideation (7-Phase)
Purpose: Convert vague ideas into validated product proposals with a Claude Design handoff package. Pre-spec ideation workflow — runs BEFORE /moai project and /moai plan. Produces IDEA-NNN artifacts under .moai/brain/ and a SPEC decomposition candidate list. Phases: Discovery (Socratic clarity) -> Diverge -> Research -> Converge (Lean Canvas) -> Critical Evaluation -> Proposal (SPEC decomposition) -> Claude Design Handoff Skills: moai-domain-ideation, moai-domain-research, moai-domain-design-handoff, moai-foundation-thinking (deep-questioning, diverge-converge, critical-evaluation, first-principles) Artifacts: .moai/brain/IDEA-NNN/{research.md, ideation.md, proposal.md} + 5-file Claude Design handoff package For detailed orchestration: Read ${CLAUDESKILLDIR}/workflows/brain.md
plan - SPEC Document Creation
Purpose: Create comprehensive specification documents using EARS format with Research-Plan-Annotate cycle. Phases: Deep Research (research.md) -> SPEC Planning -> Annotation Cycle (1-6 iterations) -> SPEC Creation Agents: manager-spec (primary), Explore (research), manager-git (conditional) Flags: --worktree, --branch, --resume SPEC-XXX, --team, --issue (opt-in; default skips GitHub Issue creation per the late-branch opt-in policy) For detailed orchestration: Read ${CLAUDESKILLDIR}/workflows/plan.md (team mode: ${CLAUDESKILLDIR}/team/plan.md)
run - DDD/TDD Implementation
Purpose: Implement SPEC requirements through configured development methodology. Agents: manager-develop (cycletype=ddd|tdd per quality.yaml, primary), manager-git Flags: --resume SPEC-XXX, --team For detailed orchestration: Read ${CLAUDESKILLDIR}/workflows/run.md (team mode: ${CLAUDESKILL_DIR}/team/run.md)
sync - Documentation Sync and PR
Purpose: Synchronize documentation with code changes and prepare pull requests. Agents: manager-docs (primary), sync-auditor (quality gate), manager-git Modes: auto, force, status, project. Flags: --merge, --skip-mx For detailed orchestration: Read ${CLAUDESKILLDIR}/workflows/sync.md (team mode: ${CLAUDESKILLDIR}/team/sync.md)
gate - Pre-Commit Quality Gate
Purpose: Lightweight pre-commit quality check running lint, format, type-check, and tests in parallel. Also integrated into run (Phase 2.75) and sync (Phase 0) workflows as automatic pre-checks. Agents: Direct execution (no agent delegation) Flags: --fix, --staged, --file PATH Integration: Automatically invoked by run workflow (Phase 2.75) and sync workflow (Phase 0.0.1) with --fix behavior. For detailed orchestration: Read ${CLAUDESKILLDIR}/workflows/gate.md
security - OWASP Security Audit
Purpose: Dedicated security audit with OWASP Top 10 analysis, dependency scanning, secrets detection, and data isolation checks. Agents: Agent(general-purpose) with security scope (per archived-agent-rejection §C) Flags: --full, --deps, --secrets, --file PATH, --branch BRANCH For detailed orchestration: Read ${CLAUDESKILLDIR}/workflows/security.md
fix - Auto-Fix Errors
Purpose: Autonomously detect and fix LSP errors, linting issues, and type errors. Agents: manager-develop (cycletype=autofix), Agent(general-purpose) with domain whitelist (fixes) Flags: --dry, --sequential, --level N, --resume, --team For detailed orchestration: Read ${CLAUDESKILL_DIR}/workflows/fix.md
loop - Iterative Auto-Fix
Purpose: Repeatedly fix issues until completion conditions are satisfied or max iterations reached. Agents: manager-develop (cycletype=autofix), Agent(general-purpose) with domain whitelist Flags: --max N, --auto-fix, --seq For detailed orchestration: Read ${CLAUDESKILL_DIR}/workflows/loop.md
mx - MX Tag Scan and Annotation
Purpose: Scan codebase and add @MX code-level annotations for AI agent context. Agents: Explore (scan), Agent(general-purpose) with backend scope (annotation) Flags: --all, --dry, --priority P1-P4, --force, --team For detailed orchestration: Read ${CLAUDESKILLDIR}/workflows/mx.md
review - Code Review
Purpose: Multi-perspective code review with security, performance, quality, and UX analysis. Agents: sync-auditor (review), Agent(general-purpose) with security scope Flags: --staged, --branch, --security, --team For detailed orchestration: Read ${CLAUDESKILLDIR}/workflows/review.md (team mode: ${CLAUDESKILLDIR}/team/review.md)
clean - Dead Code Removal
Purpose: Identify and safely remove unused code with test verification. Agents: manager-develop, Agent(general-purpose) with refactoring scope Flags: --dry, --safe-only, --file PATH For detailed orchestration: Read ${CLAUDESKILLDIR}/workflows/clean.md
codemaps - Architecture Documentation
Purpose: Scan codebase and generate architecture documentation. Agents: Explore, manager-docs Flags: --force, --area AREA For detailed orchestration: Read ${CLAUDESKILLDIR}/workflows/codemaps.md
coverage - Test Coverage Analysis
Purpose: Analyze test coverage gaps and generate missing tests. Agents: manager-develop (cycletype=tdd) Flags: --target N, --file PATH, --report For detailed orchestration: Read ${CLAUDESKILL_DIR}/workflows/coverage.md
e2e - End-to-End Testing
Purpose: Create and run E2E tests using Chrome, Playwright, or Agent Browser. Agents: manager-develop (cycletype=tdd), Agent(general-purpose) with frontend scope Flags: --record, --url URL, --journey NAME For detailed orchestration: Read ${CLAUDESKILL_DIR}/workflows/e2e.md
design - Hybrid Design Workflow
Purpose: Produce web/brand design artifacts via Claude Design import (path A) or code-based skill pipeline (path B). Integrates brand context from .moai/project/brand/ and design briefs from .moai/design/. Agents: manager-spec (BRIEF), Agent(general-purpose) with frontend scope (implementation), sync-auditor (GAN loop scoring) Skills: moai-domain-copywriting, moai-domain-brand-design, moai-workflow-design, moai-workflow-gan-loop Flags: --path A|B, --harness thorough|standard, --brief BRIEF-XXX For detailed orchestration: Read ${CLAUDESKILLDIR}/workflows/design.md
(default) - MoAI Autonomous Workflow
Purpose: Full autonomous research -> plan -> annotate -> run -> sync pipeline. Phases: Parallel Exploration (research.md) -> SPEC Generation -> Annotation Cycle -> Implementation -> Sync Agents: Explore, manager-spec, manager-develop, manager-docs, manager-git, sync-auditor (quality gate) Flags: --loop, --max N, --branch, --pr, --resume SPEC-XXX, --team, --solo, --issue (opt-in; default skips GitHub Issue creation per the late-branch opt-in policy) For detailed orchestration: Read ${CLAUDESKILLDIR}/workflows/moai.md
project - Project Documentation
Purpose: Generate project documentation by analyzing the existing codebase. Agents: Explore, manager-docs, Agent(general-purpose) with devops scope (optional) Output: product.md, structure.md, tech.md in .moai/project/ For detailed orchestration: Read ${CLAUDESKILLDIR}/workflows/project.md
feedback - GitHub Issue Creation
Purpose: Collect user feedback and create GitHub issues. Agents: orchestrator-direct (records feedback via gh CLI) For detailed orchestration: Read ${CLAUDESKILLDIR}/workflows/feedback.md
harness - Harness Lifecycle + Natural-Language Build (argument-branching)
This single harness subcommand dispatches to ONE of two workflows based on the FIRST token of $ARGUMENTS (argument-based routing — no second command is introduced). Apply the routing rule before any workflow-specific logic:
- Reserved verb (
status/apply/rollback/disable) → route to the existing harness learning lifecycle workflow (Branch A below). This path is unchanged. - Reserved verb (
list/edit/remove) → route to the harness-v4 lifecycle handler (Branch A.1 below). These enumerate / edit / atomically-remove harness-v4 entries via themoai harnessGo binary subcommand. - Anything else (a natural-language harness-creation request, e.g. "build a harness for CLI template development") → route to the harness build entry workflow (Branch B below).
Branch A — harness learning lifecycle (reserved verbs: status / apply / rollback / disable)
Purpose: Surface the harness learning subsystem (observer, 4-tier proposal ladder, 5-layer safety pipeline) to the user via the slash command path. Owns all lifecycle verbs (status / apply / rollback / disable) entirely within the workflow body using file-system operations — no Go binary subcommand invoked. Tier-4 application is gated by orchestrator-issued AskUserQuestion per REQ-HRN-FND-004. Skills: moai-harness-learner (Tier-4 surfacing companion), moai-meta-harness (project-specific harness generation, indirect) Verbs: status (tier distribution + telemetry) | apply (next Tier-4 proposal → AskUserQuestion → 5-layer pipeline → snapshot + write) | rollback <YYYY-MM-DD> (restore snapshot) | disable (set learning.enabled: false) Artifacts: .moai/harness/usage-log.jsonl, .moai/harness/proposals/, .moai/harness/learning-history/snapshots/, .moai/harness/learning-history/applied/, .moai/harness/learning-history/frozen-guard-violations.jsonl Authoritative SPEC: the harness foundation policy (supersedes V3R3-HARNESS-001, V3R3-HARNESS-LEARNING-001, V3R3-PROJECT-HARNESS-001) For detailed orchestration: Read ${CLAUDESKILLDIR}/workflows/harness.md
Branch A.1 — harness-v4 lifecycle (reserved verbs: list / edit / remove)
Purpose: Manage harness-v4 entries — enumerate built harnesses, locate their manifest + specialist files for editing, or atomically remove a harness with all its artifacts. The three verbs dispatch to the moai harness Go binary subcommand which performs the filesystem work (scan .claude/commands/harness/*.md joined with manifest.json; atomic remove with fail-closed orphan prevention). Verbs: list (enumerate all harnesses: name + domain + entry command) | edit <name> (show manifest + specialist + skill paths for editing — manifest is the SSOT) | remove <name> (atomic removal of command + workflow + specialists + skills + manifest; fail-closed if any artifact is missing) CLI: moai harness list [--json], moai harness edit [--json], moai harness remove (all support --project-root) Artifacts: .claude/commands/harness/.md (thin-wrapper command), .claude/commands/harness//manifest.json (SSOT), .claude/workflows/harness--run.js (Runner), .claude/agents/harness/harness-*-specialist.md (specialists), `.claude/skills/harne
…
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: modu-ai
- Source: modu-ai/moai-adk
- License: Apache-2.0
- Homepage: https://adk.mo.ai.kr
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.