Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计通过

ppt-with-nano-banana纳米香蕉 ppt

Agent Skill

ppt-with-nano-banana 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,007

周安装

243

GitHub Stars

1

下载量

1,886
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install ppt-with-nano-banana

简介

使用 Nano Banana Pro 图像和 PptxGenJS 生成带有中文内容的白板式 PPT,以获得专业的全幻灯片背景。

SKILL.md

ppt-with-nano-banana

Create whiteboard hand-drawn style presentations using Nano Banana Pro for image generation and PptxGenJS for PPT creation.

Overview

This skill combines:

  • Nano Banana Pro - Generate whiteboard hand-drawn style images for each slide
  • PptxGenJS - Create professional PPT with images as full-slide backgrounds

Design Principles

1. Whiteboard Hand-Drawn Style

  • Every slide uses a whiteboard-style background image
  • Hand-drawn marker lines with slight sketchy appearance
  • Clean white background, professional presentation style

2. Chinese Content First

  • All content in Chinese as primary language
  • English as notes in parentheses, e.g., "智能体(Agent)"
  • Clear, concise, presentation-ready text

3. Strategic Color Usage

Use colors purposefully to highlight key points, not for decoration:

ColorUsageExample
🔴 RedCritical issues, important concepts, warnings"上下文丢失", "存储层"
🟢 GreenNormal flow, correct practices, success"记忆管理层", working state
🔵 BlueTechnical components, architecture elements"应用层", API interfaces

4. Clean & Professional

  • Clear visual hierarchy
  • Minimalist design with plenty of white space
  • Suitable for professional presentations

Workflow

User Request
    ↓
Generate Images (nano-banana-pro)
    - Create whiteboard-style image for each slide
    - Use strategic colors (red/green/blue) for emphasis
    - Chinese content, clean professional style
    ↓
Create PPT (pptxgenjs)
    - Set up 16:9 layout
    - Add each image as full-slide background
    - Save final presentation
    ↓
Deliver PPT to User

Image Generation Prompt Template

Whiteboard hand-drawn style [content description] on clean white background.
[Specific elements with strategic color accents].
Hand-drawn black marker lines with slight sketchy appearance.
All text in Chinese with English notes in parentheses where appropriate.
Professional whiteboard presentation style, minimalist design, plenty of white space.

Example Prompts

Slide 1 - Title:

Whiteboard hand-drawn style title slide on clean white background.
Large hand-written Chinese title: '智能体(Agent)长期记忆技术架构'.
Subtitle: '让AI拥有持续学习和记忆的能力'.
Red circle accent highlighting the word '记忆' (memory), blue underline beneath '智能体'.
Clean black marker lines, professional whiteboard style.

Slide 2 - Problem Statement:

Whiteboard hand-drawn style diagram on clean white background, all content in Chinese.
Title: '为什么需要长期记忆?'.
Three hand-drawn boxes: Left box with red accent - '上下文丢失(Context Loss)' with broken chain icon and note '每次对话重新开始'.
Middle box with green accent - '知识孤岛(Knowledge Isolation)' with island icons and note '信息无法关联'.
Right box with blue accent - '缺乏个性化(No Personalization)' with person icon and note '无法定制服务'.
Hand-drawn arrows connecting the concepts. Professional whiteboard style.

PPT Creation Code Template

const PptxGenJS = require('pptxgenjs');
const path = require('path');

async function createWhiteboardPPT() {
    const pptx = new PptxGenJS();
    pptx.layout = 'LAYOUT_16x9';
    pptx.author = 'AI Assistant';
    pptx.title = 'Your Title Here';
    pptx.subject = 'Your Subject Here';

    const imgDir = '/path/to/your/images';

    // Slide 1
    const slide1 = pptx.addSlide();
    slide1.addImage({
        path: path.join(imgDir, 'slide1-image.png'),
        x: 0, y: 0, w: 10, h: 5.625
    });

    // Slide 2
    const slide2 = pptx.addSlide();
    slide2.addImage({
        path: path.join(imgDir, 'slide2-image.png'),
        x: 0, y: 0, w: 10, h: 5.625
    });

    // Add more slides as needed...

    // Save PPT
    const outputPath = '/path/to/output/Your-PPT-Name.pptx';
    await pptx.writeFile({ fileName: outputPath });
    console.log('✅ Whiteboard style PPT created successfully!');
    console.log('📁 File path: ' + outputPath);
}

createWhiteboardPPT().catch(err => {
    console.error('❌ Error creating PPT:', err);
    process.exit(1);
});

Dependencies

# Install required packages
npm install pptxgenjs

# For nano-banana-pro (if using locally)
# Ensure uv and nano-banana-pro skill are configured

Best Practices

  1. Image Quality: Use 2K resolution for crisp whiteboard images
  2. Color Strategy: Plan which elements need color emphasis before generating images
  3. Text Clarity: Ensure Chinese characters are clear and readable in generated images
  4. Consistency: Maintain consistent visual style across all slides
  5. File Organization: Keep generated images organized by project/date

Example Output Structure

project-folder/
├── ppt_images/
│   ├── slide1-title.png
│   ├── slide2-problem.png
│   ├── slide3-architecture.png
│   └── ...
├── create_ppt.js
└── output.pptx

Troubleshooting

Issue: Generated images don't match expected whiteboard style Solution: Refine prompt to emphasize "hand-drawn", "marker sketch", "whiteboard presentation style"

Issue: Chinese text not clear in generated images Solution: Specify "clear Chinese characters" and use higher resolution (2K or 4K)

Issue: Colors not prominent enough Solution: Specify color usage explicitly: "red accent circle", "green checkmark", "blue underline"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

97.47%
按下载量换算1,838

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills