Token导航 LogoToken导航TokenDH.com
前端设计只读github未标认证来源可访问许可证需确认审计通过

marp-deck-gen马尔普甲板生成

Agent Skill

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

总安装

675

周安装

29

GitHub Stars

公开资料未说明

下载量

237
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:marp-deck-gen(马尔普甲板生成)
来源仓库:https://github.com/raffaelecamanzo/skills
仓库路径:skills/marp-deck-gen
安装命令:
npx skills add https://github.com/raffaelecamanzo/skills --skill marp-deck-gen
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/raffaelecamanzo/skills --skill marp-deck-gen

简介

marp-deck-gen 用于处理 GitHub 仓库、Issue、Pull Request 等协作信息,辅助演示文稿生成。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕代码变更、协作事项进行整理时使用。
  • 通过 GitHub 安装,使用 npx skills add 命令添加,需结合原始 README 确认具体用法。
  • 安装前应核实权限范围、维护状态,以及是否涉及联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Marp Deck Generator

Purpose

Assemble the final MARP deck by applying:

  • planned structure
  • finalized layout decisions
  • materialized visuals (diagrams/images)

This skill performs no planning, no interpretation, no visual design.

It is a deterministic renderer.


Inputs and outputs

Inputs (all mandatory)

  • definition/deck-definition.md *Semantic intent and authoritative content scope*
  • planning/deck-plan.md *Slide sequence and content intent*
  • planning/deck-visual-design.md *Authoritative layout and visual execution*

If any input is missing → stop and report the error.

Outputs

  • slides/deck.md *(required)*
  • slides/deck-notes.md *(required)*
  • .marp/themes/deck-theme.css *(only if a new class is explicitly required)*

Required references (hard dependencies)

Read and follow exactly — both are mandatory:

  1. .marp/references/deck-template.md — the *how*: CSS classes, Markdown/HTML syntax, layout legality, density caps.
  2. .marp/references/brand-style-guide.md — the *what and why*: cover/section tone guidance, callout patterns, breadcrumb format, emoji rules, logo variant rules, brand color usage.

If either file cannot be found, stop immediately and report the missing file.

Do not guess or re-implement rules from either reference.

Also read: .marp/themes/deck-theme.css

Use it to make render-safe choices (title wrapping, density modifiers, image fit) while staying within the template's allowed classes and patterns.


Authority and precedence rules

When sources conflict, apply this strict order:

  1. deck-template.md → layout legality (classes that exist; Markdown/HTML rules)

- includes the effective behavior implied by .marp/themes/deck-theme.css

  1. brand-style-guide.md → brand compliance (tone choices, callout labels, emoji, breadcrumbs)

- cannot override what the template forbids, but constrains choices within the allowed set

  1. deck-visual-design.md → layout & visuals per slide
  2. deck-plan.md → content intent
  3. deck-definition.md → semantic boundaries

Never override a higher-priority artifact.


Workflow

1. Validate structural alignment

Before rendering:

  • Slide count must match between:

- planning/deck-plan.md - planning/deck-visual-design.md

  • Slide order must be identical
  • Titles and section boundaries must align

If not → stop and report mismatch.


2. Build deck skeleton

Create slides/deck.md with:

  • Required MARP metadata header
  • Frontpage slide (structure unchanged; cover variant may vary)
  • Closing slide (unchanged)

Insert all user slides between frontpage and closing.

Cover and section style preferences

Use the cover and section variant MARP class tokens exactly as listed in .marp/references/deck-template.md.

Selection rules (deterministic):

  • If definition/deck-definition.md includes an explicit preference (recommended), use it:

- Style preferences: cover=<name>, section=<name> - Example: Style preferences: cover=light, section=dark

  • Else, consult .marp/references/brand-style-guide.md §5 and apply the tone guidance there without overriding it.

- Only ask the user if the tone is still ambiguous after consulting the brand guide.

  • Apply the background selection policy in .marp/references/deck-template.md.

3. Render slides deterministically

For each slide (in order):

3.1 Section slides

If the slide is a section divider:

  • Use the class comment from the section variant table (e.g. <!-- _class: section dark -->)
  • Render only the section title as # Section Title
  • Ignore visuals and content

3.2 Standard slides

For each standard slide:

  1. Layout
  • Read ## Layout from deck-visual-design.md
  • Map it to the closest valid pattern in deck-template.md
  • If no valid mapping exists → stop and report
  1. Content
  • Render content strictly from planning/deck-plan.md
  • Use semantic Markdown or minimal HTML
  • Respect density and structure constraints
  1. Visuals
  • If ## Image references an asset, insert it according to the layout context.

Slide class tokens (from visual design)

If planning/deck-visual-design.md includes explicit slide class tokens inside ## Layout (e.g. Slide class: content visual-split image-wide no-top-accent), render them verbatim as the slide class comment, as long as they are allowed by .marp/references/deck-template.md.

If a class is requested but not supported by the template, stop and report the mismatch.

Branded rendering patterns (brand-style-guide compliance)

Apply the following patterns exactly as defined in .marp/references/brand-style-guide.md:

  • Breadcrumbs → §9
  • Callout labels → §10 (class tokens from .marp/references/deck-template.md)
  • STEP labels → §9
  • Emoji → §11
  • Closing / tagline lines → §7

Render-safety modifiers (allowed, deterministic)

To prevent common theme-related rendering failures (overflow, cropped visuals), it is allowed to apply these additional modifiers even if they are not explicitly listed in deck-visual-design.md, as long as they are defined in .marp/references/deck-template.md and .marp/themes/deck-theme.css:

  • compact:

- Use when slide density is too high to fit at default typography. - Never use it to hide content; if it still doesn’t fit, stop and report the slide as unrenderable.

  • image-wide / image-tall:

- Compute the image aspect ratio from the PNG header; apply image-wide or image-tall per the threshold rules in .marp/references/deck-template.md. - Only apply when the slide class includes visual-split (or another image-centric pattern where it helps fit).

Slide title length rule (mandatory): Apply the slide title length rule from .marp/references/deck-template.md.

Respect the content budget hard caps defined in .marp/references/deck-template.md.

When the content budget is exceeded:

  1. First reduce content (fewer bullets, shorter phrasing) — always preferred.
  2. If all content is essential, add compact to the slide class token.
  3. If the slide still exceeds budget with compact, stop and report the slide as unrenderable.

Use the image placement patterns and Markdown/HTML image syntax rules from .marp/references/deck-template.md.


4. CSS extension (exception-only)

Extend .marp/themes/deck-theme.css only if:

  • deck-visual-design.md explicitly requires a layout
  • AND no existing template class can express it

Rules:

  • Minimal, reusable classes only
  • No slide-specific CSS
  • Follow CSS extension rules in the template

If extension is optional → do not add it.


5. Generate presenter notes

Create slides/deck-notes.md:

  • One note block per slide
  • Same order as slides/deck.md
  • Notes must:
  • Summarize slide intent
  • Provide speaking cues
  • Avoid adding new content or interpretation

Notes must remain aligned with the plan, not the visuals.


Quality gates (mandatory)

Before finalizing:

  • Frontpage and closing slide structures are unchanged
  • Slide order and count match all inputs
  • Every visual reference resolves to an existing asset
  • No content appears that is not in the plan
  • No layout appears that is not allowed by the template
  • Slide density is moderate and readable
  • CSS is extended only when unavoidable
  • Vertical balance: every content slide must have its title near the top with body content flowing immediately below. A large whitespace gap between title and content signals the wrong layout class or a structural error in the HTML — do not patch by adding filler content. Verify the class tokens match the template mapping.
  • Bottom clearance: no content element (card, tile, bullet, or table row) may be clipped at the slide bottom. If content overflows: reduce text first → then add compact → then report as unrenderable.
  • Process-flow constraint: process-flow slides must not contain any content below the .flow-cards container. The baseline rail CSS extends below the card row; additional elements will overlap it or fall outside the safe area.
  • Brand compliance gate: verify all brand rules by re-reading .marp/references/brand-style-guide.md — do not rely on any inline summary.

The output must be render-ready and deterministic.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.07%
按下载量换算81

Claude

32.72%
按下载量换算78

Cursor

18.16%
按下载量换算43

Gemini CLI

9.3%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills