Ai Ppt Generator
Generate PPT with Baidu AI. Smart template selection based on content.
MIT-0 · Free to use, modify, and redistribute. No attribution required.
⭐ 50 · 22.8k · 170 current installs · 188 all-time installs
by@ide-rea
MIT-0
Security Scan
OpenClaw
Benign
high confidencePurpose & Capability
Name/description (AI PPT generation with Baidu) match the actual behavior: the scripts call Baidu PPT endpoints (qianfan.baidubce.com) and implement template selection and generation. Requested items (python3 and BAIDU_API_KEY) are appropriate for this purpose.
Instruction Scope
SKILL.md instructs the agent to ask the user for a topic, optionally list templates, and run the provided scripts. The scripts only access BAIDU_API_KEY and network endpoints required for PPT generation; they do not read unrelated files or other environment variables.
Install Mechanism
There is no install spec (instruction-only), which keeps on-disk changes minimal. However, runtime code imports the Python 'requests' library (not declared in metadata); the environment must provide this dependency or the scripts will fail.
Credentials
The only required credential is BAIDU_API_KEY (declared as primaryEnv) and is used as a Bearer token when calling Baidu's API — this is proportionate to the stated functionality. The code does not request other unrelated secrets.
Persistence & Privilege
The skill does not request persistent/global privileges (always:false). It does not attempt to modify other skills or system-wide config; it runs short-lived subprocesses to call its own scripts.
Assessment
This skill appears internally consistent: it needs a Baidu API key and will send that key to Baidu endpoints to generate PPTs. Before installing, confirm you trust the skill source (owner ID is provided but no homepage), and only supply a BAIDU_API_KEY with minimal scope. Ensure the runtime has python3 and the 'requests' package available. If you have network restrictions or must keep keys off third-party services, do not provide your real production API key — consider using a limited/test key or running the code in an isolated environment first.Like a lobster shell, security has layers — review code before you run it.
Current versionv1.1.4
Download ziplatest
License
MIT-0
Free to use, modify, and redistribute. No attribution required.
Runtime requirements
📑 Clawdis
Binspython3
EnvBAIDU_API_KEY
Primary envBAIDU_API_KEY
SKILL.md
AI PPT Generator
Generate PPT using Baidu AI with intelligent template selection.
Smart Workflow
- User provides PPT topic
- Agent asks: "Want to choose a template style?"
- If yes → Show styles from
ppt_theme_list.py→ User picks → Usegenerate_ppt.pywith chosentpl_idand realstyle_id - If no → Use
random_ppt_theme.py(auto-selects appropriate template based on topic content)
Intelligent Template Selection
random_ppt_theme.py analyzes the topic and suggests appropriate template:
- Business topics → 企业商务 style
- Technology topics → 未来科技 style
- Education topics → 卡通手绘 style
- Creative topics → 创意趣味 style
- Cultural topics → 中国风 or 文化艺术 style
- Year-end reports → 年终总结 style
- Minimalist design → 扁平简约 style
- Artistic content → 文艺清新 style
Scripts
scripts/ppt_theme_list.py- List all available templates with style_id and tpl_idscripts/random_ppt_theme.py- Smart template selection + generate PPTscripts/generate_ppt.py- Generate PPT with specific template (uses real style_id and tpl_id from API)
Key Features
- Smart categorization: Analyzes topic content to suggest appropriate style
- Fallback logic: If template not found, automatically uses random selection
- Complete parameters: Properly passes both style_id and tpl_id to API
Usage Examples
# List all templates with IDs
python3 scripts/ppt_theme_list.py
# Smart automatic selection (recommended for most users)
python3 scripts/random_ppt_theme.py --query "人工智能发展趋势报告"
# Specific template with proper style_id
python3 scripts/generate_ppt.py --query "儿童英语课件" --tpl_id 106
# Specific template with auto-suggested category
python3 scripts/random_ppt_theme.py --query "企业年度总结" --category "企业商务"
Agent Steps
- Get PPT topic from user
- Ask: "Want to choose a template style?"
- If user says YES:
- Run
ppt_theme_list.pyto show available templates - User selects a template (note the tpl_id)
- Run
generate_ppt.py --query "TOPIC" --tpl_id ID
- Run
- If user says NO:
- Run
random_ppt_theme.py --query "TOPIC" - Script will auto-select appropriate template based on topic
- Run
- Set timeout to 300 seconds (PPT generation takes 2-5 minutes)
- Monitor output, wait for
is_end: trueto get final PPT URL
Output Examples
During generation:
{"status": "PPT生成中", "run_time": 45}
Final result:
{
"status": "PPT导出结束",
"is_end": true,
"data": {"ppt_url": "https://image0.bj.bcebos.com/...ppt"}
}
Technical Notes
- API integration: Fetches real style_id from Baidu API for each template
- Error handling: If template not found, falls back to random selection
- Timeout: Generation takes 2-5 minutes, set sufficient timeout
- Streaming: Uses streaming API, wait for
is_end: truebefore considering complete
Files
5 totalSelect a file
Select a file to preview.
Comments
Loading comments…
