Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计异常

h5p-type-scaffoldh5p 型脚手架

Agent Skill

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

总安装

288

周安装

12

GitHub Stars

公开资料未说明

下载量

96
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/chandima/agent-skills --skill h5p-type-scaffold

简介

h5p-type-scaffold 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中进行协作事项整理。

  • 适用于围绕仓库状态、代码变更或协作事项进行信息组织与梳理的场景。
  • 通过 npx skills add 命令从 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

H5P Content Type Scaffolder

Create a modern H5P content type starting from established boilerplates, with a minimal build pipeline and editor semantics.

How It Works

  1. Choose package intent: library-install (default) or content-import (advanced).
  2. Collect metadata (title, machine name, version, author, license).
  3. Generate a boilerplate (default: SNORDIAN) that aligns with current H5P best practices.
  4. Provide starter library.json, semantics.json, and JS/CSS entrypoints.
  5. Outline build and packaging steps using h5p-cli.

Concepts

  • Content types are runnable libraries under H5P.* (runnable: 1).
  • Editor widgets are non-runnable libraries under H5PEditor.* (runnable: 0).
  • semantics.json defines the editor form schema and validation rules.
  • Non-runnable dependency libraries (often H5P.* or H5PApi.*) are used as shared building blocks.

See references/CONCEPTS.md for details and official links.

Packaging Intent (Required)

  • library-install (default): Upload libraries/content types to platform library installers.
  • content-import (advanced): Import an authored content instance (h5p.json + content/content.json) into content import flows.
  • This skill scaffolds libraries. It does not generate content/content.json.
  • Validate unpacked packages before upload:
bash /mnt/skills/user/h5p-type-scaffold/scripts/validate-package.sh --mode library-install --dir /path/to/unpacked
bash /mnt/skills/user/h5p-type-scaffold/scripts/validate-package.sh --mode content-import --dir /path/to/unpacked

Usage

bash /mnt/skills/user/h5p-type-scaffold/scripts/scaffold.sh \
  --title "My Content Type" \
  --machine "H5P.MyContentType" \
  --kind "content" \
  --version "1.0.0" \
  --description "Short description" \
  --author "Your Name" \
  --license "MIT" \
  --template "snordian" \
  --out /path/to/output

Editor widget example:

bash /mnt/skills/user/h5p-type-scaffold/scripts/scaffold.sh \
  --title "My Editor Widget" \
  --machine "H5PEditor.MyWidget" \
  --kind "editor" \
  --out /path/to/output

Output

  • library.json and semantics.json
  • src/entries, src/scripts, src/styles
  • README.md (templates)
  • DEV.md (templates, dev harness)
  • Build config and lint config (varies by template)
  • Templates live under assets/templates/

Build & Package (h5p-cli)

  • Install deps: npm install
  • Build assets: npm run build
  • Set up dev environment: h5p core then h5p setup <library>
  • Run local editor/server: h5p server
  • Pack library for install: h5p pack <library> [my-library.h5p] (see h5p help pack)
  • Install this package in the platform's library/content-type upload flow.
  • For library packages, keep library.json at the package root and avoid top-level h5p.json or content/.
  • Use h5p.json + content/ only for content-instance export/import flows.
  • Run package validation before upload with scripts/validate-package.sh.

Strict-validator packaging (Drupal 11.x H5P 2.0.0+)

Some platforms (notably Drupal 11.x with the H5P 2.0.0 beta module) reject zip directory entries such as dist/ or language/ because they lack an allowed file extension. Use scripts/pack.sh instead of h5p pack to produce a .h5p archive that omits directory entries:

bash /mnt/skills/user/h5p-type-scaffold/scripts/pack.sh \
  --dir /path/to/built-library \
  --out MyLibrary.h5p

Add --strict to abort if any packaged file lacks an allowed extension.

Dev Harness (h5p-cli)

  • Manual steps: references/DEV-HARNESS.md
  • Helper script: scripts/h5p-dev.sh

xAPI Integration

  • Guidance: references/XAPI.md (emit + listen + platform notes)

See references/H5P-CLI.md for a fuller command overview and references/CONTENT-TYPE-AUTHORING.md for authoring essentials.

Guidance (2024/2025 Best Practices)

  • Default to the SNORDIAN boilerplate for linting, i18n scaffolding, and CI-ready conventions.
  • Use the official h5p/h5p-boilerplate when you want the simplest baseline.
  • Prefer vanilla JS for community maintainability.
  • Use h5p-cli to pack and manage libraries.
  • Validate semantics and editor UX early with a minimal field set.

Related Community Patterns (Incorporated)

  • H5P content is often embedded via iframe in LMS or CMS platforms.
  • Common education-focused content types include Interactive Video, Course Presentation, Question Sets, Dialog Cards, and Timeline.
  • When embedding, wrap iframes in a responsive container and apply safe, minimal styling.

Templates

  • snordian (default): Linting + i18n scaffolding + modern webpack config.
  • vanilla: Official minimal boilerplate structure.
  • editor: H5P editor widget boilerplate (H5PEditor.*).

Additional Upstream Options (Not Bundled)

  • h5p/h5p-boilerplate branches like question-type and question-type-vue for specialized starting points.
  • otacke/h5p-editor-boilerplate for building custom H5P editor widgets.
  • NDLA-H5P/generator-h5p-content-type if you prefer a Yeoman-based generator workflow.
  • tarmoj/h5p-react-boilerplate for a React-based starter (note: appears stale).

Troubleshooting

  • If machine name is invalid, use H5P.YourContentType.
  • For editor widgets, use --kind editor and a H5PEditor.YourWidget machine name.
  • If versioning is unclear, start with 1.0.0 and update later.
  • If build fails, ensure node and npm are installed and run npm install.
  • If import errors mention content/ not allowed, missing preloadDependencies in h5p.json, or invalid license in h5p.json, you are importing a content package into a library upload flow.
  • If Drupal 11.x (H5P 2.0.0 beta) rejects the upload with "File 'dist/' not allowed" or "File 'language/' not allowed", the .h5p zip contains directory entries. Repack using scripts/pack.sh --dir <library-dir> which creates a zip without directory entries.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.31%
按下载量换算34

Claude

29.75%
按下载量换算29

Cursor

15.82%
按下载量换算15

Gemini CLI

9.33%
按下载量换算9

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills