Token导航 LogoToken导航TokenDH.com
前端设计操作浏览器github未标认证来源可访问clear审计异常

create-ppt-with-nano-banana用纳米香蕉创建 ppt

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

396

周安装

17

GitHub Stars

公开资料未说明

下载量

139
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:create-ppt-with-nano-banana(用纳米香蕉创建 ppt)
来源仓库:https://github.com/fluxa-agent-payment/skills
仓库路径:skills/create-ppt-with-nano-banana
安装命令:
npx skills add https://github.com/fluxa-agent-payment/skills --skill create-ppt-with-nano-banana
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/fluxa-agent-payment/skills --skill create-ppt-with-nano-banana

简介

将样式化 HTML 幻灯片转换为 PPTX 格式,支持 AI 生成图片和 x402 微支付。

  • 适用于创建视觉精美的 PowerPoint 演示文稿,支持暗色主题和现代配色。
  • 通过 Playwright 和 PptxGenJS 转换 HTML 幻灯片,可选 Nano Banana API 生成图片。
  • 安装需确认 GitHub 仓库权限,使用 npx 命令添加技能并验证 API 密钥配置。
  • 涉及外部图片生成时需注意版权授权,确保内容合规后再用于商业发布。

SKILL.md

Create PowerPoint Presentation with Nano Banana (x402)

Create visually appealing PowerPoint presentations by converting styled HTML slides to PPTX format using Playwright and PptxGenJS, with AI-generated images via the Nano Banana API using x402 payments.

Overview

This skill converts HTML slides to PowerPoint with:

  • Precise positioning and styling
  • Dark theme with modern color palette
  • Support for shapes, text, images, and diagrams
  • Automatic validation of slide dimensions and content placement
  • AI-generated images (optional) using Nano Banana API with x402 micropayments (0.1 USDC per image)

Behavior

When this skill is triggered:

  1. Get presentation topic from the user if not specified
  2. Ask if they want AI-generated images using AskUserQuestion:

- "Do you want to generate AI images with Nano Banana? (0.1 USDC per image via x402)" - Options: "Yes, generate images" / "No, use solid colors only"

  1. If AI images requested:

- Make x402 payment: see ./fluxa-wallet/x402-payment.md - Call Nano Banana API with X-Payment header - Download and save images to slides directory

  1. Create HTML slides using templates
  2. Build PPTX using html2pptx.js
  3. Open the presentation for the user

Agent Config

The FluxA Wallet agent JWT is stored at:

~/.fluxa-ai-wallet-mcp/.agent-config.json

This config contains the agent_id, token, and JWT needed for x402 payment authorization.

AI Image Generation via x402

When you need to generate images for slides, use the Nano Banana API with x402 payment.

API Details

  • Endpoint: https://proxy-monetize.fluxapay.xyz/nano-banana/gen-image
  • Method: POST
  • Price: 0.1 USDC per image (Base network)
  • Payment: x402 protocol with FluxA Wallet

Request Format

{
  "contents": [{
    "parts": [{"text": "Your image generation prompt here"}]
  }]
}

Response Format

The API returns a Gemini-style response with the image either as:

  1. Inline base64: response.candidates[0].content.parts[1].inlineData.data
  2. URL reference: response.candidates[0].content.parts[1].inlineData.url

Example Flow

  1. Get payment signature from FluxA Wallet API
  2. Call Nano Banana API with X-Payment header
  3. Extract image from response (base64 or URL)
  4. Save image to slides directory
  5. Reference image in HTML slide

Image Prompt Templates

Slide Background:

Create an abstract futuristic background image for a presentation slide.
Theme: [TOPIC]
Style: Dark theme with #0f0f1a background color.
Elements: Abstract flowing digital elements, subtle geometric patterns, particles of light.
Color accents: Use hints of #667eea, #00d4ff, and #764ba2.
Mood: Professional, modern technology, clean and elegant.
The image should be subtle enough to work as a background with text overlaid on top.
Dimensions: Wide format suitable for a 16:9 presentation slide.
No text, logos, or words in the image.

Icon/Illustration:

Create a minimalist icon representing: [CONCEPT].
Style: Clean, professional, suitable for a business presentation.
Background: Transparent or dark (#0f0f1a).
Colors: Use blues (#667eea, #00d4ff) and purples (#764ba2) on dark background.
Size: Square format, simple and recognizable.
No text in the image.

HTML Slide Requirements

Dimensions (16:9 format)

body {
    margin: 0;
    padding: 0;
    width: 720pt;
    height: 405pt;
}

Critical Rules

  1. Text must be wrapped - All text MUST be in <p>, <h1>-<h6>, <ul>, or <ol> tags
  2. Borders on divs only - Backgrounds, borders, shadows only work on <div> elements
  3. No CSS gradients - Use solid colors or pre-rendered PNG images
  4. Bottom margin - Keep text at least 36pt (0.5") from bottom edge
  5. Safe fonts only - Arial, Helvetica, Times New Roman, Georgia, Courier New, Verdana, Tahoma

Using Generated Images in Slides

<body>
    <!-- Background image with opacity -->
    <img class="background-image" src="background.png"
         style="position:absolute; top:0; left:0; width:720pt; height:405pt; opacity:0.6;" />

    <!-- Content on top -->
    <div class="content">
        <h1 class="title">Your Title</h1>
    </div>
</body>

Color Palette

/* Dark Theme */
--bg-primary: #0f0f1a;
--bg-card: rgba(255, 255, 255, 0.05);

/* Accents */
--accent-blue: #667eea;
--accent-cyan: #00d4ff;
--accent-purple: #764ba2;

/* Text */
--text-white: #ffffff;
--text-light: #d0d0d0;
--text-muted: #a0a0b0;

Available Templates

  • title.html - Title slide with tagline, title, subtitle, and description
  • bullets.html - Bullet point list (5 items)
  • two-columns.html - Side-by-side comparison with headers
  • cards-2x2.html - 2x2 card grid layout
  • cards-3x2.html - 3x2 card grid layout (6 cards)
  • stats.html - Large metrics display (3 stats)
  • section.html - Section divider with number
  • architecture.html - Layered architecture diagram (4 layers)
  • features.html - Feature list with accent bars (6 features)
  • flow.html - Step-by-step process flow (4 steps with arrows)

Usage

# Install dependencies
npm install pptxgenjs playwright sharp

# Create slides directory with HTML files
mkdir slides

# Generate presentation
node scripts/create-pptx.js

# Open result (macOS)
open output.pptx

Files

  • scripts/html2pptx.js - Core HTML-to-PPTX converter
  • scripts/create-pptx.js - Build script
  • templates/*.html - Slide templates
  • SKILL.md - This documentation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Cursor

38.02%
按下载量换算53

Claude Code

28.8%
按下载量换算40

clawdbot

19.72%
按下载量换算27

qwen-code

8.32%
按下载量换算12

安全审计

Gen Agent Trust Hub

未通过

Socket

未通过

Snyk

未通过

权限和风险

操作浏览器

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills