Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

ppt-generator-proppt 生成器专业版

Agent Skill

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

总安装

26,291

周安装

734

GitHub Stars

公开资料未说明

下载量

10,192
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:ppt-generator-pro(ppt 生成器专业版)
来源仓库:https://github.com/fluxa-agent-payment/skills
仓库路径:skills/ppt-generator-pro
安装命令:
npx skills add https://github.com/fluxa-agent-payment/skills --skill 'PPT Generator Pro'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/fluxa-agent-payment/skills --skill 'PPT Generator Pro'

简介

ppt-generator-pro 用于查找、检索和筛选相关信息,快速定位候选结果。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或场景进行信息整理时使用。
  • 通过 GitHub 安装,结合原始 README 可进一步核验具体用法。
  • 使用前建议确认权限范围、维护状态及是否会触发联网或文件操作。
  • 适用于需要高效信息聚合的任务,需结合实际需求验证搜索准确性。

SKILL.md

overview

Features

  • Intelligent Document Analysis - Automatically extracts key points and plans PPT content structure
  • Multiple Styles - Built-in gradient glassmorphism and vector illustration professional styles
  • High-Quality Images - Uses Nano Banana Pro to generate 16:9 HD PPT slides
  • AI Transition Videos - Kling AI generates smooth page transition animations
  • Interactive Player - Video + image hybrid playback with keyboard navigation

Steps

  1. Collect user input (document content, style selection, page count, video generation option)
  2. Analyze document and generate slides_plan.json
  3. Generate prompts for each page and call Nano Banana API to create images
  4. (Optional) Analyze image differences, generate transition prompts, and call Kling API to create videos
  5. Generate HTML player and return results

Output

Creates an output folder in the user's working directory:

output/ppt_TIMESTAMP/
├── images/
│   ├── slide-01.png
│   ├── slide-02.png
│   └── ...
├── videos/              # If video generation is enabled
│   ├── preview.mp4
│   ├── transition_01_to_02.mp4
│   └── ...
├── index.html           # Image player
├── video_index.html     # Video player (if video generation is enabled)
├── slides_plan.json     # Content plan
└── prompts.json         # Prompt records

Phase 1: Collect User Input

1.1 Get Document Content

Interact with the user to obtain specific content. The format is not restricted. The user may provide the complete content, or you may generate the content for the user.

1.2 Select Style

Scan the styles/ directory, list available styles and use AskUserQuestion to choose.

1.3 Select Page Count

Use AskUserQuestion to ask:

Question: How many PPT pages would you like to generate?
Options:
- 5 pages (5-minute presentation)
- 5-10 pages (10-15 minute presentation)
- 10-15 pages (20-30 minute presentation)
- 20-25 pages (45-60 minute presentation)

1.4 Generate Video (Optional)

Question: Would you like to generate transition videos?
Options:
- Images only (Fast)
- Images + Transition videos (Full experience)

Phase 2: Document Analysis and Content Planning

2.1 Content Planning Strategy

Intelligently plan content for each page based on page count:

5-Page Version:

  1. Cover: Title + Core theme
  2. Point 1: First key insight
  3. Point 2: Second key insight
  4. Point 3: Third key insight
  5. Summary: Core conclusions or action items

5-10 Page Version:

  1. Cover 2-3. Introduction/Background 4-7. Core content (3-4 key points) 8-9. Case studies or data support
  2. Summary and action items

10-15 Page Version:

  1. Cover 2-3. Introduction/Table of contents 4-6. Chapter 1 (3 pages) 7-9. Chapter 2 (3 pages) 10-12. Chapter 3/Case studies 13-14. Data visualization
  2. Summary and next steps

20-25 Page Version:

  1. Cover
  2. Table of contents 3-4. Introduction and background 5-8. Part 1 (4 pages) 9-12. Part 2 (4 pages) 13-16. Part 3 (4 pages) 17-19. Case studies 20-22. Data analysis and insights 23-24. Key findings and recommendations
  3. Summary and acknowledgments

2.2 Generate slides_plan.json

Create JSON file and save to output directory:

{
  "title": "Document Title",
  "total_slides": 5,
  "slides": [
    {
      "slide_number": 1,
      "page_type": "cover",
      "content": "Title: AI Product Design Guide\nSubtitle: Building User-Centered Intelligent Experiences"
    },
    {
      "slide_number": 2,
      "page_type": "cover",
      "content": "User Satisfaction\nBefore use: 65%\nAfter use: 92%\nImprovement: +27%"
    },
    ...
    {
      "slide_number": n,
      "page_type": "content",
      "content": "Summary\n- User-centered approach\n- Continuous optimization\n- Data-driven decisions"
    }
  ]
}

Phase 3: Generate PPT Images

3.1 Read Style Template

Read the styles/{selected_style}.md file, generate prompts for each page, and combine complete prompts based on page_type via slide.content.

3.2 Call Nano Banana API to Generate Images

For each page, execute the following steps:

  1. Send Generation Request via Image Generation Tool
  2. Save Image to output/ppt_TIMESTAMP/images/slide-{number:02d}.png
  3. Record each page's prompt to prompts.json

3.4 Generate HTML Player

Read the templates/viewer.html template and replace /* IMAGE_LIST_PLACEHOLDER */ with the actual image list:

const slides = [
    'images/slide-01.png',
    // ...
];

Save as output/ppt_TIMESTAMP/index.html

Phase 4: Generate Transition Prompts (Video Mode)

If user chooses to generate videos, create transition prompts for each pair of adjacent images.

4.1 Analyze Image Differences

Read the prompt template from prompts/transition_template.md.

For each pair of adjacent images (slide-01 and slide-02, slide-02 and slide-03...), analyze:

  • Visual layout differences
  • Element changes
  • Color transitions

4.2 Generate Transition Descriptions

Generate transition prompts based on the template, output format:

{
  "preview": {
    "slide_path": "images/slide-01.png",
    "prompt": "The frame maintains the static composition of the cover, with the central 3D glass ring slowly rotating..."
  },
  "transitions": [
    {
      "from_slide": 1,
      "to_slide": 2,
      "prompt": "The camera starts from the cover, the glass ring gradually deconstructs, splitting into transparent fragments..."
    }
  ]
}

Save to output/ppt_TIMESTAMP/transition_prompts.json

Phase 5: Generate Transition Videos (Video Mode)

5.1 Call Kling API to Generate Videos

For each transition, execute:

  1. Send Generation Request via Video Generation Tool (Kling)

Request body should include:

  • Start frame image (base64 or URL)
  • End frame image (base64 or URL)
  • Transition prompt
  • Video parameters (duration 5 seconds, resolution 1920x1080)
  1. Save Videos to output/ppt_TIMESTAMP/videos/

- preview.mp4 - Home page loop preview - transition_01_to_02.mp4 - Transition video

5.2 Generate Video Player

Generate interactive video player based on templates/video_viewer.html template.

Phase 6: Return Results

Introduce the outputs to the user and explain how to use them.

tools

  • Image Generation Tool (Nano Banana)

- name: pay-per-use-based nano banana text2image - access: agent-pay - usage: # API Discovery - First discover available endpoints curl https://proxy-monetize.fluxapay.xyz/api/nano-banana-t2i - note - Returned images are base64 encoded data, need to save to file before processing - Supports 16:9 aspect ratio, suitable for PPT scenarios

  • Video Generation Tool (Kling)

- name: pay-per-use-based kling video - access: agent-pay - usage: # API Discovery - First discover available endpoints curl https://proxy-monetize.fluxapay.xyz/api/kling-i2v - note - Supports first/last frame mode, suitable for transition video generation - Recommended video duration 5 seconds, resolution 1920x1080

  • Make X402 payment: see./fluxa-wallet/x402-payment.md

notes for tools use

  • If the invoked tool's access is agent-pay, it means the tool is accessed by the agent on a pay-per-use basis, with no user involvement required beyond authorizing the agent to access the user's FluxA Agent Wallet. Before using an agent-pay tool for the first time, inform the user and let them choose: To complete this task, I need to use a pay-per-use tool. Do you want to continue? I recommend this approach because: 1. Lowest cost: pay per use, no expensive subscriptions. 2. Best experience: I can access the tool autonomously. No need for you to register on the tool's website, log in, subscribe, and apply for an API key. If the user chooses 'finding alternative solutions', you cannot complete the task according to the skills guide and should switch to finding alternative solutions on your own.
  • If the invoked tool's access is apikey, inform the user that they need to manually configure the API key.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.76%
按下载量换算3,747

Claude

26.8%
按下载量换算2,731

Cursor

19.5%
按下载量换算1,987

Gemini CLI

9.25%
按下载量换算943

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills