Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

moai-platform-deploymentmoai 平台部署

Agent Skill

用于辅助云资源、部署、容器、基础设施和运维自动化任务。它适合让 Agent 检查配置、整理部署步骤、分析资源状态、生成排障思路或辅助云服务接入。使用时需要明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作;涉及删除资源、重启服务、修改网络或权限配置时,应先确认影响范围。

总安装

903

周安装

38

GitHub Stars

964

下载量

316
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:moai-platform-deployment(moai 平台部署)
来源仓库:https://github.com/modu-ai/moai-adk
仓库路径:skills/moai-platform-deployment
安装命令:
npx skills add https://github.com/modu-ai/moai-adk --skill moai-platform-deployment
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/modu-ai/moai-adk --skill moai-platform-deployment

简介

用于辅助云资源、部署、容器和基础设施运维自动化任务。

  • 适合检查配置、整理部署步骤或分析资源状态。moai-platform-deployment 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 通过 npx skills add 命令从 moai-adk 仓库安装并使用。
  • 涉及删除资源或修改网络配置时应先确认影响范围。
  • 具体用法可结合来源仓库 README 进一步核验实际功能边界。

SKILL.md

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

Stack: Vercel + Vercel Postgres/KV

Setup:

  1. Deploy Next.js app to Vercel
  2. Provision Vercel Postgres for database
  3. Use Vercel KV for session/cache
  4. Configure environment variables
  5. Enable ISR for dynamic content

Best For: Web apps with standard database needs, e-commerce, content sites

Pattern 2: Containerized Multi-Service

Stack: Railway + Docker

Setup:

  1. Create multi-stage Dockerfile
  2. Configure railway.toml for services
  3. Set up private networking
  4. Configure persistent volumes
  5. Enable auto-scaling

Best For: Microservices, complex backends, custom tech stacks

Pattern 3: Real-Time Collaborative App

Stack: Convex + Vercel/Railway (frontend)

Setup:

  1. Initialize Convex backend
  2. Define schema and server functions
  3. Deploy frontend to Vercel/Railway
  4. Configure Convex provider
  5. Implement optimistic updates

Best For: Collaborative tools, live dashboards, chat applications

Pattern 4: Hybrid Edge + Container

Stack: Vercel (frontend/edge) + Railway (backend services)

Setup:

  1. Deploy Next.js frontend to Vercel
  2. Deploy backend services to Railway
  3. Configure CORS and API endpoints
  4. Set up edge middleware for routing
  5. Use private networking for Railway

Best For: High-performance apps, global distribution with complex backends

Pattern 5: Serverless Full-Stack

Stack: Vercel (frontend + API routes) + Convex (backend)

Setup:

  1. Build Next.js app with API routes
  2. Initialize Convex for data layer
  3. Configure authentication (Clerk/Auth0)
  4. Deploy frontend to Vercel
  5. Connect Convex client

Best For: Rapid prototyping, startups, real-time web apps


Essential Configuration

Vercel Quick Start

vercel.json:

{
  "$schema": "https://openapi.vercel.sh/vercel.json",
  "framework": "nextjs",
  "regions": ["iad1", "sfo1", "fra1"],
  "functions": {
    "app/api/**/*.ts": {
      "memory": 1024,
      "maxDuration": 10
    }
  }
}

Edge Function:

export const runtime = "edge"
export const preferredRegion = ["iad1", "sfo1"]

export async function GET(request: Request) {
  const country = request.geo?.country || "Unknown"
  return Response.json({ country })
}

Railway Quick Start

railway.toml:

[build]
builder = "DOCKERFILE"
dockerfilePath = "Dockerfile"

[deploy]
healthcheckPath = "/health"
healthcheckTimeout = 100
restartPolicyType = "ON_FAILURE"
numReplicas = 2

[deploy.resources]
memory = "2GB"
cpu = "2.0"

Multi-Stage Dockerfile:

# Builder stage
FROM node:20-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build

# Runner stage
FROM node:20-alpine
WORKDIR /app
ENV NODE_ENV=production
RUN addgroup -g 1001 -S nodejs && adduser -S appuser -u 1001
COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/dist ./dist
USER appuser
EXPOSE 3000
CMD ["node", "dist/main.js"]

Convex Quick Start

convex/schema.ts:

import { defineSchema, defineTable } from "convex/server"
import { v } from "convex/values"

export default defineSchema({
  messages: defineTable({
    text: v.string(),
    userId: v.id("users"),
    timestamp: v.number(),
  })
    .index("by_timestamp", ["timestamp"])
    .searchIndex("search_text", {
      searchField: "text",
      filterFields: ["userId"],
    }),
})

React Integration:

import { useQuery, useMutation } from "convex/react"
import { api } from "../convex/_generated/api"

export function Messages() {
  const messages = useQuery(api.messages.list)
  const sendMessage = useMutation(api.messages.send)

  if (!messages) return <div>Loading...</div>

  return (
    <div>
      {messages.map((msg) => (
        <div key={msg._id}>{msg.text}</div>
      ))}
    </div>
  )
}

CI/CD Integration

GitHub Actions - Vercel

name: Deploy to Vercel
on:
  push:
    branches: [main]

jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: amondnet/vercel-action@v25
        with:
          vercel-token: ${{ secrets.VERCEL_TOKEN }}
          vercel-org-id: ${{ secrets.ORG_ID }}
          vercel-project-id: ${{ secrets.PROJECT_ID }}

GitHub Actions - Railway

name: Deploy to Railway
on:
  push:
    branches: [main]

jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - run: npm install -g @railway/cli
      - run: railway up --detach
        env:
          RAILWAY_TOKEN: ${{ secrets.RAILWAY_TOKEN }}

GitHub Actions - Convex

name: Deploy to Convex
on:
  push:
    branches: [main]

jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-node@v3
      - run: npm ci
      - run: npx convex deploy
        env:
          CONVEX_DEPLOY_KEY: ${{ secrets.CONVEX_DEPLOY_KEY }}

Advanced Patterns

Blue-Green Deployment (Vercel)

Deploy new version, test on preview URL, then switch production alias using Vercel SDK for zero-downtime releases.

Multi-Region (Railway)

Configure deployment regions in railway.toml:

[deploy.regions]
name = "us-west"
replicas = 2

[[deploy.regions]]
name = "eu-central"
replicas = 1

Optimistic Updates (Convex)

const sendMessage = useMutation(api.messages.send)

const handleSend = (text: string) => {
  sendMessage({ text })
    .then(() => console.log("Sent"))
    .catch(() => console.log("Failed, rolled back"))
}

Platform-Specific Details

For detailed platform-specific patterns, configuration options, and advanced use cases, see:

  • reference/vercel.md - Edge Functions, ISR, Analytics, Storage
  • reference/railway.md - Docker, Multi-Service, Volumes, Scaling
  • reference/convex.md - Reactive Queries, Server Functions, File Storage
  • reference/comparison.md - Feature Matrix, Pricing, Migration Guides

Works Well With

  • moai-domain-backend for backend architecture patterns
  • moai-domain-frontend for frontend integration
  • moai-lang-typescript for TypeScript best practices
  • moai-lang-python for Python deployment (Railway)
  • moai-platform-auth for authentication integration
  • moai-platform-database for database patterns

Status: Production Ready Version: 2.0.0 Updated: 2026-02-09 Platforms: Vercel, Railway, Convex

Common Rationalizations

RationalizationReality
"I will configure the deployment platform after development is complete"Deployment configuration affects build output, environment variables, and runtime behavior. Configure early.
"Preview deployments are optional"Preview deployments catch deployment-specific bugs before production. They cost little and save a lot.
"Environment variables are the same across all environments"Production, staging, and development need different database URLs, API keys, and feature flags. One set of env vars is a security risk.
"Serverless cold starts are negligible"Cold starts add 200-2000ms latency on first request. For user-facing APIs, this matters. Measure and mitigate.
"I do not need a rollback strategy, I can just redeploy"Redeployment takes minutes. Rollback takes seconds. When production is down, seconds matter.

Red Flags

  • Production environment variables visible in build logs
  • No preview deployment configured for pull requests
  • Single environment used for both staging and production
  • No rollback mechanism documented or tested
  • Build artifacts include development dependencies or source maps

Verification

  • Environment variables separated by environment (dev, staging, production)
  • Preview deployments configured for pull requests (show platform config)
  • Rollback procedure documented and tested (show rollback command or process)
  • Production build excludes development dependencies and source maps
  • Deployment succeeds from a clean git checkout (no local state dependency)
  • Cold start time measured for serverless functions (show timing data)

Refactor Notes

R4 audit verdict (2026-04-23): REFACTOR — shrink triplet to Vercel-only primary; Railway/Convex as documentation-only SPEC: SPEC-V3R2-WF-001 §6.2 line 271 Refactor scope (deferred to future sub-SPEC):

  • Elevate Vercel as primary platform with full guidance; demote Railway and Convex to doc-only references
  • Move Railway and Convex deep-dives into Level-3 modules
  • Add CI/CD pipeline patterns section (GitHub Actions, Vercel CI integration)

This skill is retained in v3.0 but its body will be restructured in a follow-up SPEC.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.48%
按下载量换算115

Claude

31.26%
按下载量换算99

Cursor

16.88%
按下载量换算53

Gemini CLI

8.86%
按下载量换算28

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills