← 返回 Skills 市场
comman-kaide

Felo Slides

作者 comman-kaide · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
336
总下载
2
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install comman-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...
使用说明 (SKILL.md)

Felo Slides Skill

When to Use

Trigger this skill for requests about creating presentation files:

  • Create/generate slides from a topic or outline
  • Turn notes into a PPT deck
  • Build a presentation with a page count requirement
  • Export presentation content into a shareable slide link

Trigger keywords:

  • Chinese prompts about making slides or presentations
  • English: slides, PPT, presentation deck, generate presentation
  • Explicit commands: /felo-slides, "use felo slides"

Do NOT use this skill for:

  • Real-time information lookup (use felo-search)
  • Questions about local codebase files
  • Pure text tasks that do not require slide generation

Setup

1. Get API key

  1. Visit felo.ai
  2. Open Settings -> API Keys
  3. Create and copy your API key

2. Configure environment variable

Linux/macOS:

export FELO_API_KEY="your-api-key-here"

Windows PowerShell:

$env:FELO_API_KEY="your-api-key-here"

How to Execute

Use Bash tool commands and follow this workflow exactly.

Step 1: Precheck API key

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.

Step 2: Run Node Script (create + poll)

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

Script behavior:

  • Creates task via POST https://openapi.felo.ai/v2/ppts
  • Polls via GET https://openapi.felo.ai/v2/tasks/{task_id}/historical
  • Treats COMPLETED/SUCCESS as success terminal (case-insensitive)
  • Treats FAILED/ERROR as failure terminal
  • Stops polling immediately on terminal status
  • Prints 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

Step 4: Return structured result

On success, return:

  • ppt_url immediately (script default output, fallback live_doc_url)
  • if --json is used, also include task_id, terminal status, and optional metadata

Output Format

Use this response structure:

## PPT Generation Result
- Task ID: \x3Ctask_id>
- Status: \x3Cstatus>
- PPT URL: \x3Cppt_url>
- Live Doc URL: \x3Clive_doc_url or N/A>

## Notes
- livedoc_short_id: \x3Cvalue or N/A>
- ppt_business_id: \x3Cvalue or N/A>

Error format:

## PPT Generation Failed
- Error Type: \x3Cerror code or category>
- Message: \x3Creadable message>
- Suggested Action: \x3Cnext step>

Error Handling

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:

  • If timeout reached, return last known status and instruct user to retry later
  • Include task_id so user can query again

Important Notes

  • Always execute this skill when user intent is slide generation.
  • Always return task_id so follow-up queries can continue from the same task.
  • Do not claim completion without a terminal status.
  • Keep API calls minimal: create once, then poll.

References

安全使用建议
This skill appears to implement exactly what it claims: create a PPT task on Felo and poll until completion. However, before installing or enabling it, verify two things: (1) the skill requires a FELO_API_KEY (the SKILL.md and script check FELO_API_KEY) but the metadata does NOT declare that requirement — ask the publisher to declare FELO_API_KEY as a required credential so the platform can handle it safely; (2) the skill runs a Node script, so the agent runtime must provide a Node binary (metadata currently lists no required binaries). Inspect the included script (it only calls openapi.felo.ai endpoints and prints results) and ensure you are comfortable providing your Felo API key to this skill. If you prefer caution, run the script in a sandboxed environment with a limited/test API key, or request the publisher to update the skill metadata to list FELO_API_KEY and node as required so the platform can surface correct consent prompts.
功能分析
Type: OpenClaw Skill Name: comman-felo-slides Version: 1.0.0 The skill is a legitimate tool for generating presentations via the Felo PPT API. The documentation in SKILL.md and the logic in scripts/run_ppt_task.mjs are consistent with the stated purpose, using standard environment variables for authentication and communicating only with the official API endpoint (openapi.felo.ai). No evidence of data exfiltration, malicious execution, or prompt injection was found.
能力评估
Purpose & Capability
The SKILL.md and included script implement creating and polling Felo PPT tasks (POST /v2/ppts and GET /v2/tasks/{id}/historical), which matches the stated purpose. However, the skill metadata declares no required environment variables and no required binaries, while the runtime requires FELO_API_KEY and execution via Node. This omission is a material mismatch between claimed requirements and what the skill actually needs.
Instruction Scope
Instructions are narrowly scoped to creating a PPT task, polling until a terminal state, and returning the URL/task_id. They instruct running the bundled Node script and checking FELO_API_KEY. The SKILL.md telling the agent to "always execute this skill when user intent is slide generation" is an instruction to prefer this skill for relevant intents but not a technical privilege. No instructions attempt to read unrelated local files or exfiltrate data outside the Felo endpoints.
Install Mechanism
There is no install spec (instruction-only + bundled script). The included script is plain, unobfuscated JavaScript that issues HTTP requests to openapi.felo.ai. No downloads from arbitrary URLs or archive extraction occur. This is low install risk.
Credentials
Runtime expects FELO_API_KEY (and optionally FELO_API_BASE) but the skill metadata lists no required environment variables or primary credential. Requiring an API key to call an external service is reasonable, but the omission from metadata is misleading and prevents the platform from prompting for appropriate credentials or warning users. There are no unrelated credentials requested by the skill.
Persistence & Privilege
always:false and model invocation is allowed (default). The skill does not request permanent platform presence, does not modify other skills or system-wide settings, and does not persist tokens or change agent config. No excessive privileges are requested.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install comman-felo-slides
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /comman-felo-slides 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release: Generate PPT/slides with Felo PPT Task API
元数据
Slug comman-felo-slides
版本 1.0.0
许可证
累计安装 0
当前安装数 0
历史版本数 1
常见问题

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... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 336 次。

如何安装 Felo Slides?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install comman-felo-slides」即可一键安装,无需额外配置。

Felo Slides 是免费的吗?

是的,Felo Slides 完全免费(开源免费),可自由下载、安装和使用。

Felo Slides 支持哪些平台?

Felo Slides 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Felo Slides?

由 comman-kaide(@comman-kaide)开发并维护,当前版本 v1.0.0。

💬 留言讨论