Token导航 LogoToken导航TokenDH.com
前端设计操作浏览器github未标认证来源可访问许可证需确认审计提醒

page-import页面导入

Agent Skill

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

总安装

672

周安装

28

GitHub Stars

40

下载量

224
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:page-import(页面导入)
来源仓库:https://github.com/adobe/helix-website
仓库路径:skills/page-import
安装命令:
npx skills add https://github.com/adobe/helix-website --skill page-import
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/adobe/helix-website --skill page-import

简介

page-import 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 它适用于前端设计类任务,可结合来源仓库和原始 README 核验具体用法。
  • 安装方式:通过 npx skills add 命令从 GitHub 仓库安装。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Page Import Orchestrator

You are an orchestrator of a website page import/migration. You have specialized Skills at your disposal for each phase of the import workflow. Below is a high-level overview of what you're going to do.

When to Use This Skill

Use this skill when:

  • Importing or migrating individual pages from existing websites
  • Converting competitor pages for reference or analysis
  • Creating content files from design prototypes or staging sites

Do NOT use this skill for:

  • Building new blocks from scratch (use content-driven-development skill)
  • Modifying existing block code (use building-blocks skill)
  • Designing content models (use content-modeling skill)

Scope

This skill imports/migrates main content only:

  • ✅ Import: Hero sections, features, testimonials, CTAs, body content
  • ❌ Skip: Header, navigation, footer (handled by dedicated skills)

Philosophy

Follow David's Model (https://www.aem.live/docs/davidsmodel):

  • Prioritize authoring experience over developer convenience
  • Ask "How would an author in Word/Google Docs create this?"
  • Minimize blocks - prefer default content where possible
  • Use Block Collection content models

Available Sub-Skills

This orchestrator delegates work to:

  • scrape-webpage - Extract content, metadata, and images from source URL
  • identify-page-structure - Identify section boundaries and content sequences
  • authoring-analysis - Make authoring decisions (default content vs blocks)
  • generate-import-html - Create structured HTML file
  • preview-import - Verify in local dev server

These skills invoke additional skills as needed:

  • page-decomposition - (via identify-page-structure) Analyze content sequences per section
  • block-inventory - (via identify-page-structure) Survey available blocks
  • content-modeling - (via authoring-analysis) Validate unclear block selections
  • block-collection-and-party - (via authoring-analysis) Validate block existence

Import Workflow

Step 0: Create TodoList

Use the TodoWrite tool to create a todo list with the following tasks:

  1. Scrape the webpage (scrape-webpage skill)

- Success: metadata.json, screenshot.png, cleaned.html, images/ folder exist

  1. Identify page structure (identify-page-structure skill)

- Success: Section boundaries identified, content sequences documented, block inventory complete

  1. Analyze authoring approach (authoring-analysis skill)

- Success: Every content sequence has decision (default content OR block name), section styling validated

  1. Generate HTML file (generate-import-html skill)

- Success: HTML file exists, images folder copied, validation checklist passed

  1. Preview and verify (preview-import skill)

- Success: Page renders correctly in browser, matches original structure


Step 1: Scrape Webpage

Invoke: scrape-webpage skill

Provide:

  • Target URL
  • Output directory: ./import-work

Success criteria:

  • ✅ metadata.json exists with paths, metadata, image mapping
  • ✅ screenshot.png saved for visual reference
  • ✅ cleaned.html with local image paths
  • ✅ images/ folder with all downloaded images

Mark todo complete when: All files verified to exist


Step 2: Identify Page Structure

Invoke: identify-page-structure skill

Provide:

  • screenshot.png from Step 1
  • cleaned.html from Step 1
  • metadata.json from Step 1

Success criteria:

  • ✅ Section boundaries identified with styling notes
  • ✅ Content sequences documented for each section (neutral descriptions)
  • ✅ Block inventory completed (local + Block Collection)

Mark todo complete when: All outputs documented


Step 3: Analyze Authoring Approach

Invoke: authoring-analysis skill

Provide:

  • Section list with content sequences from Step 2
  • Block inventory from Step 2
  • screenshot.png from Step 1

Success criteria:

  • ✅ Every content sequence has decision: default content OR block name
  • ✅ Block structures fetched for all blocks to be used
  • ✅ Single-block sections validated for styling (Step 3e if applicable)

Mark todo complete when: All sequences have authoring decisions


Step 4: Generate HTML File

Invoke: generate-import-html skill

Provide:

  • Authoring analysis from Step 3
  • Section styling decisions from Step 3
  • metadata.json from Step 1
  • cleaned.html from Step 1

Success criteria:

  • ✅ HTML file saved at correct path (from metadata.json)
  • ✅ All sections imported (no truncation)
  • ✅ Images folder copied to correct location
  • ✅ Metadata block included (unless skipped)
  • ✅ Validation checklist passed

Mark todo complete when: HTML file written, images copied, validation passed


Step 5: Preview and Verify

Invoke: preview-import skill

Provide:

  • HTML file path from Step 4
  • screenshot.png from Step 1 (for comparison)
  • documentPath from metadata.json

Success criteria:

  • ✅ Page loads in browser
  • ✅ Blocks render correctly
  • ✅ Layout matches original (compare with screenshot)
  • ✅ No console errors
  • ✅ Images load or show placeholders

Mark todo complete when: Visual verification passed


High-Level Dos and Don'ts

DO:

  • ✅ Follow the workflow steps in order
  • ✅ Mark each todo complete after verification
  • ✅ Use TodoWrite to track progress
  • ✅ Import ALL content (partial import is failure)
  • ✅ Compare final preview with original screenshot

DON'T:

  • ❌ Skip steps or combine steps
  • ❌ Make authoring decisions without block inventory
  • ❌ Generate HTML before completing authoring analysis
  • ❌ Truncate or summarize content
  • ❌ Consider import complete without visual verification

Success Criteria

Import is complete when:

  • ✅ All 5 todos marked complete
  • ✅ HTML file renders in browser
  • ✅ Visual structure matches original page
  • ✅ All content imported (no truncation)
  • ✅ Images accessible

Limitations

This orchestrator manages single-page import with existing blocks. It does NOT:

  • Custom variant creation (blocks are used as-is)
  • Multi-page batch processing (import one page at a time)
  • Block code development (assumes blocks exist)
  • Advanced reuse detection across imports
  • Automatic block matching algorithms

For those features, consider more comprehensive import workflows in specialized tools.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.38%
按下载量换算88

Claude

27.75%
按下载量换算62

Cursor

17.1%
按下载量换算38

Gemini CLI

8.66%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills