Generate PPT/slides with Felo PPT Task API in Claude Code. Use when users ask to create/make/generate/export presentations or slide decks, or when explicit c...
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install felo-slides或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install felo-slides⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/felo-slides/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: felo-slides description: "Generate PPT/slides with Felo PPT Task API in Claude Code. Use when users ask to create/make/generate/export presentations or slide decks, or when explicit commands like /felo-slides are used. Handles API key check, task creation, polling, and final ppt_url output." ---
Trigger this skill for requests about creating presentation files:
Trigger keywords:
/felo-slides, "use felo slides"
Do NOT use this skill for:
felo-search)
Linux/macOS:
export FELO_API_KEY="your-api-key-here"
Windows PowerShell:
$env:FELO_API_KEY="your-api-key-here"
Use Bash tool commands and follow this workflow exactly.
if [ -z "$FELO_API_KEY" ]; then
echo "ERROR: FELO_API_KEY not set"
exit 1
fi
If key is missing, stop and return setup instructions.
Use the bundled script (no jq dependency):
node felo-slides/scripts/run_ppt_task.mjs \
--query "USER_PROMPT_HERE" \
--interval 10 \
--max-wait 1800 \
--timeout 60
To apply a specific theme, first list available themes with felo ppt-themes, then pass the theme ID:
node felo-slides/scripts/run_ppt_task.mjs \
--query "USER_PROMPT_HERE" \
--theme "THEME_ID_HERE" \
--interval 10 \
--max-wait 1800 \
--timeout 60
Script behavior:
POST https://openapi.felo.ai/v2/ppts
--theme to apply a PPT theme (sends ppt_config.ai_theme_id)
--task-id to resume polling an existing task (skips creation)
GET https://openapi.felo.ai/v2/tasks/{task_id}/historical
COMPLETED/SUCCESS as success terminal (case-insensitive)
FAILED/ERROR as failure terminal
ppt_url on success (fallback: live_doc_url)
Optional debug output:
node felo-slides/scripts/run_ppt_task.mjs \
--query "USER_PROMPT_HERE" \
--interval 10 \
--max-wait 1800 \
--json \
--verbose
This outputs structured JSON including:
task_id
task_status
ppt_url
live_doc_url
livedoc_short_id
ppt_business_id
error_message
On success, return:
ppt_url immediately (script default output, fallback live_doc_url)
--json is used, also include task_id, terminal status, and optional metadata
Use this response structure:
## PPT Generation Result
- Task ID: <task_id>
- Status: <status>
- PPT URL: <ppt_url>
- Live Doc URL: <live_doc_url or N/A>
## Notes
- livedoc_short_id: <value or N/A>
- ppt_business_id: <value or N/A>
Error format:
## PPT Generation Failed
- Error Type: <error code or category>
- Message: <readable message>
- Suggested Action: <next step>
Known API error codes:
INVALID_API_KEY (401): key invalid or revoked
PPT_TASK_CREATE_FAILED (502): create task downstream failed
PPT_TASK_QUERY_FAILED (502): query task downstream failed
Timeout handling:
task_id so user can query again
--task-id instead of --query to avoid creating a duplicate PPT:
node felo-slides/scripts/run_ppt_task.mjs \
--task-id "TASK_ID_HERE" \
--interval 10 \
--max-wait 1800
task_id so follow-up queries can continue from the same task.
安装 Felo Slides 后,可以对 AI 说这些话来触发它
Help me get started with Felo Slides
Explains what Felo Slides does, walks through the setup, and runs a quick demo based on your current project
Use Felo Slides to generate PPT/slides with Felo PPT Task API in Claude Code
Invokes Felo Slides with the right parameters and returns the result directly in the conversation
What can I do with Felo Slides in my documents & notes workflow?
Lists the top use cases for Felo Slides, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/felo-slides/ 目录(个人级,所有项目可用),或 .claude/skills/felo-slides/(项目级)。重启 AI 客户端后,用 /felo-slides 主动调用,或让 AI 根据上下文自动发现并使用。
Felo Slides 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Felo Slides 可免费安装使用。请查阅仓库了解许可证信息。
Generate PPT/slides with Felo PPT Task API in Claude Code. Use when users ask to create/make/generate/export presentations or slide decks, or when explicit c...
Felo Slides 属于「Documents & Notes」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my documents & notes tasks using Felo Slides
Identifies repetitive steps in your workflow and sets up Felo Slides to handle them automatically