← ClaudeAtlas

meoo-clilisted

从零到上线的全栈应用构建指南,基于秒悟(Meoo)平台。 触发条件: (1) 用户提到"秒悟"或"Meoo"; (2) 用户要从零构建应用,且需求可被以下架构覆盖:前端 SPA(React/Vue)+ Supabase(数据库/Auth/Storage)+ Deno 边缘函数 + AI 大模型服务。 覆盖完整生命周期:项目初始化、本地开发、云服务开通、数据库管理、边缘函数部署、CDN 发布、沙箱代码同步、账户与权益管理。
ali-meoo/meoo-cli · ★ 9 · AI & Automation · score 69
Install: claude install-skill ali-meoo/meoo-cli
# 秒悟(Meoo)CLI 完整指南 从零构建和部署全栈应用。覆盖项目初始化到生产部署的完整生命周期,包括云服务、代码规范、沙箱同步和部署。 ## Install ```bash npm install -g @aliyun-meoo/cli ``` Verify: `meoo --version` ## Project lifecycle ``` meoo login # 1. Authenticate (opens browser) meoo init react-design # 2. Initialize from template meoo projects create "My App" # 3. Create remote project (MUST do after init) pnpm install # 4. Install dependencies pnpm dev # 5. Local dev server (port 3015) meoo deploy # 6. Build and publish to CDN meoo sandbox push # Alt: push local code to cloud sandbox meoo sandbox pull # Alt: pull sandbox code to local meoo account # Check plan, credits, and benefits ``` **CRITICAL**: Step 2 (`init`) and Step 3 (`projects create`) MUST be done together. `init` only creates local files — you MUST also run `projects create` to create the remote project on the platform. Without this, cloud services and deployments will fail or attach to the wrong project. **Cloud services are OPTIONAL** — only enable when the project needs database, user auth, or file storage: ``` meoo cloud enable # Provision cloud services (PostgreSQL + Auth + Storage) meoo cloud pull-env # Pull Supabase keys to local .env ``` Do NOT run `meoo cloud enable` for purely frontend projects (static sites, CSS demos, calculators, etc.). Run `meoo info` or `meoo --json info` anytime t