From e9c5cece4f771f1120f4e6aa8ea57b8bd6f9ec1c Mon Sep 17 00:00:00 2001 From: Simon <10131203+gaomeng1900@users.noreply.github.com> Date: Mon, 19 Jan 2026 19:39:13 +0800 Subject: [PATCH] docs: update CDN URLs in README files --- README-zh.md | 11 +++++------ README.md | 3 +-- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/README-zh.md b/README-zh.md index c1655b8..63c2f5f 100644 --- a/README-zh.md +++ b/README-zh.md @@ -44,10 +44,10 @@ > ⚠️ **仅用于技术评估。** Demo 模型有速率限制和使用限制,生产环境请使用 NPM 方式。 -| Mirrors | URL | -| ------- | ----------------------------------------------------------------------------------- | -| Global | https://cdn.jsdelivr.net/npm/@page-agent/cdn/dist/page-agent.demo.js | -| China | https://registry.npmmirror.com/@page-agent/cdn/latest/files/dist/page-agent.demo.js | +| 镜像 | URL | +| ------ | ----------------------------------------------------------------------------------- | +| Global | https://cdn.jsdelivr.net/npm/page-agent/dist/iife/page-agent.demo.js | +| China | https://registry.npmmirror.com/page-agent/latest/files/dist/iife/page-agent.demo.js | ### NPM 安装 @@ -76,12 +76,11 @@ PageAgent adopts a simplified monorepo structure: ``` packages/ -├── page-agent/ # AI agent with UI Panel(npm: page-agent) +├── page-agent/ # AI agent and demo(npm: page-agent) ├── core/ # Agent core logic without UI(npm: @page-agent/core) ├── llms/ # LLM 客户端 (npm: @page-agent/llms) ├── page-controller/ # DOM 操作 & 蒙层 & 模拟鼠标 (npm: @page-agent/page-controller) ├── ui/ # 面板 & i18n (npm: @page-agent/ui) -├── cdn/ # CDN IIFE builds (npm: @page-agent/cdn) └── website/ # 文档站点 ``` diff --git a/README.md b/README.md index a25540d..699f1e1 100644 --- a/README.md +++ b/README.md @@ -74,12 +74,11 @@ PageAgent adopts a simplified monorepo structure: ``` packages/ -├── page-agent/ # AI agent with UI Panel(npm: page-agent) +├── page-agent/ # AI agent and demo(npm: page-agent) ├── core/ # Agent core logic without UI(npm: @page-agent/core) ├── llms/ # LLM client (npm: @page-agent/llms) ├── page-controller/ # DOM operations & Visual Mask (npm: @page-agent/page-controller) ├── ui/ # Panel & i18n (npm: @page-agent/ui) -├── cdn/ # CDN IIFE builds (npm: @page-agent/cdn) └── website/ # Demo & Documentation site ```