Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

canvas-page-definition画布页面定义

Agent Skill

canvas-page-definition 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

737

周安装

31

GitHub Stars

1

下载量

258
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/drupal-canvas/skills --skill canvas-page-definition

简介

canvas-page-definition 定义 Canvas 页面的标准格式,确保本地 JSON 规范与 Drupal Canvas 平台一致。

  • 用于页面预览与推送/拉取同步流程,要求页面文件位于指定目录且满足标题、结构等基本约束。
  • 适用于 Workbench 工作流中的页面开发,需配合 canvas.config.json 配置 pagesDir 路径。
  • 修改页面定义前应备份原文件,避免因格式错误导致同步失败或内容丢失。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Canonical definition

A Canvas page is a JSON page spec stored in the repository's configured pagesDir.

Workbench uses these files for local page previews, and the Canvas CLI push/pull workflow uses them to sync pages between the local project and Drupal Canvas.

Page specs should fully mirror what authors can build in Drupal Canvas.

Minimum contract (MUST)

Every Canvas page MUST satisfy all checks below:

  • The page file exists in the configured pages directory (pagesDir in canvas.config.json; default ./pages)
  • The page file is a JSON object
  • The page includes a non-empty title
  • The page includes a path that starts with / and is unique within the project
  • The page includes an elements object with at least one element
  • Every element in elements includes a discovered component type
  • Any slots entries reference element IDs defined in the same file

If any item is missing, the page is incomplete for Canvas usage.

Location and naming

Author the canonical local page specs in the configured pages directory (pagesDir in canvas.config.json). If pagesDir is not set, Workbench defaults to the top-level pages/ directory.

  • Place each page in <pages-dir>/<page-name>.json
  • Keep page files flat in the configured pages directory; nested files are ignored
  • Use a stable, descriptive filename that mirrors the page title in a filename-safe way
  • Use a human-readable title inside the JSON file for the actual page title

Examples:

  • <pages-dir>/homepage.json
  • <pages-dir>/about-us.json

Treat files in the configured pagesDir as the source of truth for local page definitions that can be previewed in Workbench and synced with Canvas via the CLI.

Authored page work is incomplete unless the page is previewable from the configured pagesDir and ready for validation.

Page file format

Each page file must be a JSON object with:

  • title: the actual page title
  • path: the page's URL path (e.g., /about). Must start with / and be unique within the project. Other pages link to this page using this value.
  • elements: an object of authored page elements

The page file may also include:

  • description: a short plain-text summary of the page. Surfaced as page metadata (e.g., for listings or SEO). Leave as an empty string if not set.

Each entry in elements must include:

  • type: a discovered component type

Each entry may also include:

  • props: root props for that element
  • slots: a map of slot names to arrays of element IDs from the same file

Workbench preserves elements insertion order when building the page. Put top-level sections in the order you want them rendered.

Use the discovered machine-readable component type for each element, such as card, heading, or js.hero, depending on what Workbench finds in the local project.

Linking between pages

To link to another page in the project, reference the target page's path.

Example

{
  "title": "About",
  "path": "/about",
  "description": "",
  "elements": {
    "hero": {
      "type": "js.hero",
      "props": {
        "heading": "About us",
        "text": "Learn how our team plans, builds, and ships Canvas experiences.",
        "layout": "left_aligned"
      }
    },
    "spacer-lg": {
      "type": "js.spacer",
      "props": {
        "height": "large"
      }
    },
    "body-section": {
      "type": "js.section",
      "props": {
        "width": "normal"
      },
      "slots": {
        "content": ["body-copy"]
      }
    },
    "body-copy": {
      "type": "js.text",
      "props": {
        "content": "<p>Canvas pages should use real component composition rather than custom page wrappers.</p>"
      }
    }
  }
}

Use stable, descriptive element IDs unless you are intentionally preserving IDs from another source such as an exported Canvas page.

Image props in pages

When a component prop is defined as an image in component.yml, page JSON must pass that prop as a single image object. Match the component prop name exactly and use the Canvas image shape inside props.

{
  "type": "js.card",
  "props": {
    "image": {
      "src": "https://placehold.co/400x300/png",
      "alt": "Card placeholder image",
      "width": "400",
      "height": "300"
    },
    "heading": "Featured card"
  }
}

Supported authored page image sources:

  • External http:// or https:// URLs
  • data:image/... URLs

Do not use local file paths in page JSON. CLI media upload from local files is not supported.

If page media reconciliation or page sync adds resolved image data such as width, height, or _provenance, preserve that data unless you are intentionally changing the image source.

Format constraints

The page-spec format only supports discovered component elements plus their props and slots.

That means page specs cannot directly represent:

  • Hand-written React wrappers such as PageLayout
  • Raw HTML layout elements such as <div> or <section>
  • className-driven spacing or custom wrapper styling
  • Inline code duplication of an existing component's markup

If you need a layout primitive, look for an existing component first. If none exists, create it as a component before using it in a page spec.

Validation

Validate every authored page before finishing.

npx canvas validate

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.16%
按下载量换算91

Claude

29.28%
按下载量换算76

Cursor

17.34%
按下载量换算45

Gemini CLI

8.65%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills