首页龙虾技能列表 › Quick Deploy — Quick工具

Quick Deploy — Quick工具

v1.0.0

[AI辅助] Deploy projects to Vercel, Netlify, or Fly.io with one command. Auto-detects framework (Next.js, React, Python, Node.js, static HTML). Shows deploy URL when...

0· 71·1 当前·1 累计
by @vanthienha199 (Ha Le)·MIT-0
下载技能包
License
MIT-0
最后更新
2026/3/28
安全扫描
VirusTotal
可疑
查看报告
OpenClaw
安全
high confidence
The skill's requests and runtime instructions are internally consistent with a one-command deploy helper; it asks the agent to detect project type and run the official CLIs (or install them) and does not request unrelated secrets or system-wide access.
评估建议
This skill appears coherent for deploying projects, but here are practical precautions before you use it: - Understand what will happen: the agent will read files in your project root and run deploy commands that upload your code to an external hosting provider. Only run it on repositories you intend to publish. - CLI installs: the instructions will install vercel/netlify CLIs via npm -g (global install) and run a fly.io install script via curl | sh. Those are official providers but installin...
详细分析 ▾
用途与能力
Name/description (quick deploy to Vercel/Netlify/Fly.io) matches the instructions: auto-detect files in the project root and run the relevant CLI commands. Nothing requested or referenced (no extra env vars, no unrelated binaries) is out of scope for a deploy helper.
指令范围
Instructions tell the agent to inspect project-root files (package.json, next.config.*, Dockerfile, etc.) and run deploy/status/rollback/log commands via vendor CLIs. That is expected for deployment, but the skill's runtime commands will upload project contents to remote hosting—so the agent will transmit project code to third-party services as part of normal operation. The SKILL.md does include a useful rule to ask before production deploys.
安装机制
There is no package/install spec in the skill bundle itself, but the instructions tell the agent to install CLIs if missing (npm -g vercel/netlify-cli, and curl | sh https://fly.io/install.sh). Installing global npm packages and piping a remote install script are common for CLI installs but carry moderate risk. The URLs used (npm registries and fly.io) are expected official sources.
凭证需求
The skill declares no required environment variables, no credentials, and no config paths. That matches the instructions which rely on the vendor CLIs for authentication rather than asking for tokens. This is proportionate for a deploy helper.
持久化与权限
Skill is instruction-only, has no install script or always:true, and does not request persistent presence or modify other skills. It may cause system changes by installing CLIs globally if run, which is expected behavior for the described functionality.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.02026/3/28

Initial release of Deploy Kit: deploy to Vercel, Netlify, or Fly.io in one command. - Auto-detects project framework and recommends best hosting platform - Supports Next.js, React, static HTML, Python, containers, Astro, SvelteKit, Nuxt, and more - Provides deploy, status, rollback, logs, and domain management commands - Shows deploy URL and detailed report after completion - Safeguards: always confirm before deploying to production and never expose API tokens

● 可疑

安装命令 点击复制

官方npx clawhub@latest install quick-deploy
镜像加速npx clawhub@latest install quick-deploy --registry https://cn.clawhub-mirror.com

技能文档

You deploy projects to Vercel, Netlify, or Fly.io. One command, auto-detection, done.

Core Behavior

When the user says "deploy" or "ship", detect what kind of project it is and deploy to the best platform. If the user specifies a platform, use that one.

Auto-Detection

Check the project root for these files to determine the framework:

FileFrameworkBest Platform
next.config.Next.jsVercel
package.json with react-scriptsCreate React AppVercel or Netlify
index.html (no package.json)Static siteNetlify
fly.tomlAlready configured for Fly.ioFly.io
DockerfileContainerFly.io
requirements.txt or pyproject.tomlPythonFly.io
ProcfileHeroku-styleFly.io
astro.config.AstroVercel or Netlify
svelte.config.SvelteKitVercel
nuxt.config.NuxtVercel

Deploy Commands

Vercel

# Check if vercel CLI is installed
which vercel || npm install -g vercel

# Deploy (auto-detects framework) vercel --yes

# Deploy to production vercel --prod --yes

Netlify

# Check if netlify CLI is installed
which netlify || npm install -g netlify-cli

# Deploy preview netlify deploy --dir=.

# Deploy to production netlify deploy --prod --dir=.

# For static sites, detect the build output directory: # Next.js: out/ or .next/ # React: build/ # Plain HTML: . (current directory)

Fly.io

# Check if fly CLI is installed
which fly || curl -L https://fly.io/install.sh | sh

# If no fly.toml, launch new app fly launch --yes --no-deploy

# Deploy fly deploy

Workflow

Step 1: Detect

Detected: Next.js project (found next.config.js)
Recommended platform: Vercel

Step 2: Check CLI

Vercel CLI: installed (v37.2.0)

Step 3: Deploy

Run the deploy command and show the output URL.

Step 4: 举报

Deployed to Vercel
URL: https://my-project-abc123.vercel.app
Production: https://my-project.vercel.app
Time: 34s
Framework: Next.js
Region: iad1 (US East)

其他 Commands

"Status" / " live?"

Check the current deployment status:
vercel ls --limit 1
# or
netlify status
# or
fly status

"Rollback"

vercel rollback
# or
netlify rollback
# or
fly releases --image

"Logs"

vercel logs [url]
# or
netlify logs
# or
fly logs

"添加 domain"

vercel domains add mydomain.com
# or
netlify domains:add mydomain.com

Rules

  • Always ask 之前 deploying 到 production: "Deploy 到 production? (y/n)"
  • Show URL immediately 之后 deploy completes
  • 如果 deploy fails, show 错误 和 suggest fix
  • Never store 或 expose API tokens — 使用 CLI's built-在...中 auth
  • 默认 到 预览/staging deploy, 不 production
  • 如果 否 platform preference, recommend based 在...上 auto-detection 表
数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务