moai-platform-deployment

moai-platform-deployment is a skill for Claude Code from modu-ai/moai-adk. It costs 42 tokens per session (3,101 once invoked), scanned A, original, Apache-2.0.

A deployment guide for hosting applications on Vercel, Railway, or Convex. It compares edge delivery, containers, serverless services, persistent connections, and real-time backends.

In plain words
What is it for?
Use it to deploy web apps, configure continuous deployment, host containerized services, run edge functions, or build collaborative real-time applications.
Why use it?
It helps you choose hosting that matches the application's runtime and data needs. It also provides direction for preview deployments, multi-service systems, and real-time synchronization.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is import { api } from "../convex/_generated/api".

Good fit Use it to deploy web apps, configure continuous deployment, host containerized services, run edge functions, or build collaborative real-time applications.

Compare 6 skills from other repositories ↓
About the project

MoAI-ADK is a Go-based harness that organizes and verifies Claude Code work across planning, implementation, synchronization, and review stages. Developers use it to structure agentic coding tasks, apply quality gates, and route work across language models, while the catalogue entries extend its workflow with skills, hooks, commands, MCP servers, instructions, and settings.

modu-ai/moai-adk · 1,204 stars · on GitHub · adk.mo.ai.kr

Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/modu-ai/moai-adk
agentmods
npx agentmods add skills/modu-ai/moai-adk/moai-platform-deployment

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for moai-platform-deployment

README.md
[![agentmods](https://agentmods.dev/badge/skills/modu-ai/moai-adk/moai-platform-deployment/github.svg)](https://agentmods.dev/skills/modu-ai/moai-adk/moai-platform-deployment)
Your own site
<a href="https://agentmods.dev/skills/modu-ai/moai-adk/moai-platform-deployment"><img src="https://agentmods.dev/badge/skills/modu-ai/moai-adk/moai-platform-deployment/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for moai-platform-deployment

Your own site · 80×15
<a href="https://agentmods.dev/skills/modu-ai/moai-adk/moai-platform-deployment"><img src="https://agentmods.dev/badge/skills/modu-ai/moai-adk/moai-platform-deployment.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,101 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 343
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00042 $0.03101
Opus 5 $0.00021 $0.01550
Sonnet 5 $0.00008 $0.00620
Haiku 4.5 $0.00004 $0.00310

Measured 5d ago against content hash a723eca9a921, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

moai-platform-deployment scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.moai/archive/skills/v2.16/moai-platform-deployment/SKILL.md · 456 lines

How it starts

The opening of the file, as written. The whole thing — 456 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Deployment Platform Specialist

Comprehensive deployment platform guide covering Vercel (edge-first), Railway (container-first), and Convex (real-time backend).


Quick Platform Selection

When to Use Each Platform

Vercel - Edge-First Deployment:

  • Next.js applications with SSR/SSG
  • Global CDN distribution required
  • Sub-50ms edge latency critical
  • Preview deployments for team collaboration
  • Managed storage needs (KV, Blob, Postgres)

Railway - Container-First Deployment:

  • Full-stack containerized applications
  • Custom runtime environments
  • Multi-service architectures
  • Persistent volume storage
  • WebSocket/gRPC long-lived connections

Convex - Real-Time Backend:

  • Collaborative real-time applications
  • Reactive data synchronization
  • TypeScript-first backend needs
  • Optimistic UI updates
  • Document-oriented data models

Decision Guide

By Application Type

Web Applications (Frontend + API):

  • Next.js → Vercel (optimal integration)
  • React/Vue with custom API → Railway (flexible)
  • Real-time collaborative → Convex + Vercel

Mobile Backends:

  • REST/GraphQL → Railway (stable connections)
  • Real-time sync → Convex (reactive queries)
  • Edge API → Vercel (global latency)

Full-Stack Monoliths:

  • Containerized → Railway (Docker support)
  • Serverless → Vercel (Next.js API routes)
  • Real-time → Convex (built-in reactivity)

By Infrastructure Needs

Compute Requirements:

  • Edge compute → Vercel (30+ edge locations)
  • Custom runtimes → Railway (Docker flexibility)
  • Serverless TypeScript → Convex (managed runtime)

Storage Requirements:

  • Redis/KV → Vercel KV or Railway
  • PostgreSQL → Vercel Postgres or Railway
  • File storage → Vercel Blob or Railway volumes
  • Document DB → Convex (built-in)

Networking Requirements:

  • CDN distribution → Vercel (built-in)
  • Private networking → Railway (service mesh)
  • Real-time WebSocket → Convex (built-in) or Railway

Common Deployment Patterns

Pattern 1: Next.js with Database

Read the full file on GitHub · 456 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 456 lines · 42 tokens per session scan A a723eca9a921

Subscribe to this mod's changes

moai-platform-deployment is a skill published in the GitHub repository modu-ai/moai-adk (1,204 stars, last pushed today), licensed Apache-2.0. It adds 42 tokens to every session and 3,101 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

multi-service-orchestration

PM2 process management, backend/frontend cascade execution, parallel worktree builds, and cross-service integration testing.

a5c-ai/babysitter · 27 tokens

api-documenter

Auto-generate API documentation from code and comments. Use when API endpoints change, or user mentions API docs. Creates OpenAPI/Swagger specs from code. Triggers on API file changes, documentation requests, endpoint additions.

alirezarezvani/claude-code-tresor · 48 tokens

cloudflare-workers-expert

Expert in Cloudflare Workers and the Edge Computing ecosystem. Covers Wrangler, KV, D1, Durable Objects, and R2 storage.

hybridlabor-api/bdb-dev-optimized-agent-skills · 33 tokens

insforge-cli

Use this skill whenever someone needs a backend, or a task touches InsForge backend or cloud infrastructure through the InsForge CLI: projects, SQL, migrations, RLS policies, functions, storage, deployments, compute, secrets, config, schedules, logs, diagnostics, import/export, AI/OpenRouter setup, Stripe/Razorpay…

AbdulDevHub/Agent-Skills-Factory · 100 tokens

claudehut-workflow

Use at the start of every session and whenever beginning a coding task in a Java/Spring backend - establishes the ClaudeHut 7-phase agentic workflow, the complexity-tier routing that lets small tasks skip deliberation phases, and the laws that govern which skills and rules must fire. Injected at session start; also…

taipt1504/claudehut · 86 tokens

windows-deployment

Deploy FastAPI + React/Vite apps to Windows Server with NSSM services, reverse proxy (IIS or nginx), and git-pull workflow. Use when deploying any web app to a Windows prod server, setting up NSSM services, configuring IIS or nginx reverse proxy, making code environment-aware for dev/prod, or troubleshooting prod…

saajunaid/caddis-plugin · 74 tokens