Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

web-hosting网络托管

Agent Skill

web-hosting 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 OpenClaw 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

19,545

周安装

831

GitHub Stars

公开资料未说明

下载量

6,847
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:web-hosting(网络托管)
来源仓库:https://github.com/h4gen/web-hosting
安装命令:
openclaw skills install web-hosting
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install web-hosting

简介

通过使用 SSL 和 CI/CD 自动创建 GitHub 存储库、Vercel/Netlify 部署以及可选的自定义域设置,将本地 Web 项目部署到实时 URL。

SKILL.md

name
hosting
description
Meta-skill for zero-friction deployment of local web projects to production URLs by orchestrating github-api, vercel/netlify, domain-dns-ops, and api-gateway. Use when users want to make a local site live with SSL, CI/CD, and optional custom domain wiring.
homepage
https://clawhub.ai
user-invocable
true
disable-model-invocation
false
metadata
{"openclaw":{"emoji":"🚀","requires":{"bins":["git","node","npm","npx"],"env":["MATON_API_KEY"],"config":[]},"note":"Requires local installation of github-api, vercel or netlify, and optionally domain-dns-ops/api-gateway for custom infra or DNS operations."}}

Purpose

Take a local codebase or static site and publish it to a production URL with minimal DevOps friction.

Primary outcomes:

  1. repository created and synced,
  2. deployment triggered,
  3. live URL verified,
  4. custom-domain path documented when requested.

This is an orchestration skill. It does not guarantee uptime/SLA by itself.

Required Installed Skills

Core:

  • github-api (inspected latest: 1.0.3)
  • One deploy path:

- vercel (inspected latest: 1.0.1), or - netlify (inspected latest: 1.0.0)

Optional:

  • domain-dns-ops (inspected latest: 1.0.0, environment-specific)
  • api-gateway (inspected latest: 1.0.29)

Install/update:

npx -y clawhub@latest install github-api
npx -y clawhub@latest install vercel
npx -y clawhub@latest install netlify
npx -y clawhub@latest install domain-dns-ops
npx -y clawhub@latest install api-gateway
npx -y clawhub@latest update --all

Verify:

npx -y clawhub@latest list

Important name mapping:

  • If user says /netlifly, map it to /netlify.

Required Credentials

Mandatory:

  • MATON_API_KEY (required for github-api, and for api-gateway routes)

Provider/CLI auth (at least one deploy path):

  • Vercel path: logged in vercel login or VERCEL_TOKEN
  • Netlify path: logged in netlify login or NETLIFY_AUTH_TOKEN

Optional (custom infra through api-gateway):

  • active app-specific OAuth connection in Maton control plane (ctrl.maton.ai)

Preflight:

echo "$MATON_API_KEY" | wc -c
echo "$VERCEL_TOKEN$NETLIFY_AUTH_TOKEN" | wc -c

Mandatory behavior:

  • Never fail silently on missing keys/tokens.
  • Always return MissingAPIKeys (or missing auth) with blocked stages.
  • Continue with non-blocked stages and mark output as Partial when needed.

Inputs the LM Must Collect First

  • project_path
  • repo_name
  • repo_visibility (private or public)
  • deploy_target (vercel or netlify)
  • framework_hint (optional)
  • custom_domain (optional)
  • domain_provider (optional; Cloudflare/Namecheap/etc.)
  • infra_mode (frontend-static, fullstack-managed, vps-server)

Do not run deployment before deploy target and visibility are explicit.

Tool Responsibilities

github-api

Use for repository bootstrap and remote sync setup:

  • create repository (user/org),
  • configure visibility,
  • store remote URL metadata for subsequent push/deploy linkage.

Operational constraints from inspected skill:

  • requires MATON_API_KEY
  • uses Maton-managed OAuth connections
  • missing/invalid key leads to auth errors

vercel

Use for managed frontend/fullstack deploy path:

  • link project,
  • trigger deploy (vercel / vercel --prod),
  • inspect deployment and domain status,
  • manage domain attachments when needed.

netlify

Use as alternative managed deploy path:

  • site create/link/init,
  • CI/CD setup from GitHub,
  • manual or prod deploy,
  • environment variable and domain/dns capabilities.

domain-dns-ops

Use only when environment matches its assumptions.

Important limitation from inspected skill:

  • this skill is documented as environment-specific ("for Peter", source of truth in ~/Projects/manager).
  • if that source context does not exist, do not assume it is portable.

api-gateway

Use for optional infra/API-managed operations when connected apps exist.

Operational constraints from inspected skill:

  • requires MATON_API_KEY
  • requires active app-specific connection per target service
  • 400 indicates missing app connection
  • 401 indicates missing/invalid Maton key

Capability disclosure:

  • inspected list clearly includes Netlify and many SaaS apps.
  • DigitalOcean/AWS are not explicitly listed as native app names in the inspected api-gateway skill index.
  • treat VPS/server provisioning via gateway as conditional, not guaranteed.

Canonical Causal Signal Chain

  1. Code Audit
  • scan project root for framework markers:

- package.json, next.config.*, vite.config.*, index.html, dist/, build/

  • classify project type (Next.js, Vite, static HTML, other)
  • determine default build and publish path
  1. Git Inception
  • initialize git if needed,
  • create remote repository via github-api,
  • set origin, commit, and push branch.
  1. Infrastructure Gate
  • present hosting recommendation based on project type:

- Vercel/Netlify for frontend-managed deploy, - custom infra path only if supported connections exist.

Required gate format:

  • InfraGateStatus: available or blocked
  • Reason: missing auth / missing connection / unsupported provider
  • Action: exact next step

If user asks about provider signup/offers:

  • provide neutral official onboarding links only.
  1. Deployment Trigger
  • Vercel path: run vercel link (if needed), then deploy (vercel --prod).
  • Netlify path: create/link/init and deploy (netlify deploy --prod).
  1. Status Monitoring
  • poll deploy status/logs until final state:

- Ready/success -> proceed, - failure -> return build error summary + remediation actions.

  1. Domain Wiring
  • if custom domain requested:

- attach domain in provider (Vercel/Netlify), - output required DNS records, - verify DNS propagation and HTTPS readiness.

  1. Output
  • return live URL,
  • return domain instructions,
  • return CI/CD update path (future pushes redeploy automatically).

Output Contract

Always return:

  • ProjectDetection

- detected framework - build/publish assumptions

  • RepoStatus

- repository URL - default branch - push status

  • InfraGateStatus

- provider selected - gate status - blockers and actions

  • DeploymentStatus

- live URL - deploy ID/reference - final state (ready or failed)

  • CustomDomainPlan

- required DNS records - where to set them - verification checklist

  • NextActions

- exact command/portal steps if anything remains manual

Quality Gates

Before final output, verify:

  • framework detection based on actual files (not guesswork)
  • remote repo exists and push path is valid
  • deployment URL resolves and status is successful
  • custom domain records are explicit and provider-correct
  • all missing credentials/connections are disclosed

If any gate fails, return Needs Revision with concrete missing dependencies or errors.

Failure Handling

  • Missing MATON_API_KEY: return MissingAPIKeys, skip github-api/api-gateway stages.
  • Missing Vercel/Netlify auth: return missing auth state and provide exact login/token setup steps.
  • Git push rejected: keep deployment blocked, return upstream remote/auth error and retry commands.
  • Deploy build failed: return build log summary and required fixes.
  • Missing domain control: return live platform URL and park custom-domain steps as pending.
  • Unsupported VPS provider path in gateway: disclose limitation and provide managed-hosting fallback.

Guardrails

  • Never claim deployment success without a reachable URL.
  • Never claim custom domain is active before DNS + HTTPS checks pass.
  • Never hide provider limitations or auth blockers.
  • Keep recommendations bounded to inspected, available integrations.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

95.69%
按下载量换算6,552

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills