AI Agent Hub
Back to skills
EdgeOne Pages Free One-Click Web Deploy icon

EdgeOne Pages Free One-Click Web Deploy

IT Ops & Security Updated 2026.08.30

Paste the following prompt into your AI chat to install this skill:

Install @user_3cce866c/edgeone-pages-deploy-free into your AI assistant by following https://skillhub.cn/install/skillhub.md.

About this skill

The Problem

When a local HTML prototype is ready, sharing it often means packaging files, uploading to object storage, configuring a static domain, or spinning up a temporary tunnel. That workflow can be heavier than needed for one-off previews or quick demos. This skill turns a local HTML file or HTML string into a public link, which is useful for publishing a page like hupu_clone.html for immediate feedback without logging into a console, filing ICP requirements, or configuring a CDN.

How It Works

The skill works in AI coding tools and from a local command line. You can ask it to deploy a page to EdgeOne Pages, and it calls the deployment script with either a local file path or an inline HTML string.

Under the hood it does not require the MCP protocol. It uses plain HTTP calls: first GET https://mcp.edgeone.site/get_base_url to discover the upload endpoint, then POST https://mcp.edgeone.site/kv/set to write the content. The response includes success and url, for example:

  • --file / -f: path to a local HTML file
  • --html: inline HTML string
  • --open / -o: open the returned link in a browser
  • --json: print JSON output

In tools such as CodeBuddy or Cursor, where a Python environment is already available, no extra dependencies are usually needed. Running the script locally requires Python 3.x and the script's dependencies.

Limits and Caveats

This skill is best for temporary preview, quick sharing, and prototype demos. The returned public link is suitable for sending to teammates or clients to review page behavior. It is not a replacement for production deployment: links are temporary, not guaranteed to persist, and should not be used for long-lived public services, sensitive data, or workloads that require stable SLAs.

Use Cases

  • After a frontend prototype is finished, publish a temporary public HTML page for teammates to review in a browser.
  • After an AI-generated single-page HTML file is ready, deploy it to EdgeOne Pages for a link you can screenshot and share.
  • When a client asks for a quick look at a page, deploy a local `index.html` file to a public link without packaging or domain setup.
  • During an offline demo, publish an HTML string as a temporary link so you can open it in a meeting and verify interactions.

Best For

  • Frontend prototype engineers: publish local HTML as a shareable link for client or teammate preview.
  • Developers using AI-generated pages: deploy temporary pages without manually configuring static hosting.
  • Product demonstrators: open a freshly generated HTML page in meetings to show interaction to clients.
  • Static page testers: quickly deploy single-file HTML for browser or mobile inspection.