agentsclimarketplace

51pptmoban browser playbook

Skill Hhhpraise/claude-ppt-pro/skills/51pptmoban-browser-playbook

Claude Code PPT skill — professionally designed presentations with free templates from 51pptmoban.com, Pexels stock photos, Swiss-design rules, and mandatory visual QA. Bilingual English/中文. 免费PPT模板 · AI自动生成幻灯片 · Claude PPT插件

Install
npx -y skills add Hhhpraise/claude-ppt-pro --skill 51pptmoban-browser-playbook

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

5.3 KB, as published. Nobody here has run it

51pptmoban.com Template Browser — Recorded Navigation Patterns

This skill contains the accumulated knowledge from real browser sessions on 51pptmoban.com. It tells Claude exactly how to search, filter, download, and use templates, charts, materials, and effects.

What 51pptmoban.com Has (All Free, No Registration)

SectionURLWhat It HasItem Count
PPT模板/ppt/Full slide decks by topic/industryThousands
PPT图片/pic/Background images, photos, texturesHundreds
PPT图表/tubiao/Timelines, flowcharts, org charts, fishbone, etc.631
PPT素材/sucai/Transparent PNGs, 3D figures, silhouettes, icons813
PPT特效/texiao/Animations, countdowns, fireworks, effects486

Search URL Pattern

https://www.51pptmoban.com/e/sch/index.php?keyboard=SEARCH_TERM&x=0&y=0

Replace SEARCH_TERM with URL-encoded Chinese or English keywords.

Common search terms: 旅游 (travel), 商务 (business), 教育 (education), 科技 (tech), 毕业 (graduation), 医疗 (medical), 自然 (nature), 中国风 (Chinese style), 简约 (minimal), 答辩 (defense), 时间轴 (timeline)

Smart Filtering (When Many Results Exist)

When 50+ results exist, read template NAMES and filter by sub-topic:

User wants...Pick these templatesSkip these
Mountains踏山河, 清凉风, 绿色旅游海岛, 城市, 海滩
Rivers踏山河, 清凉风, 水墨风格海岛, 卡通, 美食
Culture中式古典, 广西传统歌节现代几何, 卡通休闲
Business商务, 公司, 简约蓝卡通, 游戏风, 插画
Nature自然, 绿色, 环保科技, 城市, 商务

Download Flow (Exact Steps)

Step 1: Click Template → Opens in NEW TAB

Templates always open in a new browser tab. After clicking:

mcp__playwright__browser_tabs → action: "select", index: [new_tab_number]

The "Open tabs" section in the result shows which tab is which.

Step 2: Find Download Link on Detail Page

On the template's detail page, find the download link. Use browser_evaluate for speed:

() => { 
  const all = document.querySelectorAll('a'); 
  return Array.from(all)
    .filter(a => a.textContent.includes('下载') || a.href.includes('DownSys'))
    .map(a => ({ text: a.textContent.trim().substring(0, 100), href: a.href }));
}

The link text will be "点击进入下载页面" (Click to enter download page). URL pattern: https://www.51pptmoban.com/e/DownSys/DownSoft/?classid=N&id=N&pathid=0

Step 3: Navigate to Download Page

Navigate to the download page URL from Step 2.

Step 4: Find Direct Zip URL

On the download page, find the direct download links:

  • 下载地址1 and 下载地址2 — direct .zip download links
  • URL pattern: https://file.51pptmoban.com/d/file/YYYY/MM/DD/filename.zip?auth_key=...
  • Backup: 夸克网盘下载 (Quark cloud drive)

Click one of the download links. The .zip downloads to the browser's download location.

Step 5: Extract and Use

Templates come as .zip files containing .pptx:

unzip downloaded-template.zip -d template-folder/

Open the extracted .pptx with python-pptx:

from pptx import Presentation
prs = Presentation("template-folder/template.pptx")
# Extract layouts, colors, fonts
# Fill with content while PRESERVING template design

Cross-Section Intelligence

When building a deck, reason across sections:

If the deck needs...Search this section
A timeline (1999-2026)图表 → 时间轴
Process/workflow diagram图表 → 流程图
Team org chart图表 → 组织架构
SWOT or comparison图表 → 对比关系
Step-by-step progression图表 → 递进关系
Cycle/feedback loop图表 → 循环关系
Root cause analysis图表 → 鱼骨图
3D business characters素材 → 3D小人
Character silhouettes素材 → 剪影
Themed icons (edu/tech/med)素材 → 图标
Device mockups (phone/laptop)素材 → 样机
Trophy/achievement graphics素材 → 奖杯
Chinese traditional elements素材 → 中国风
Opening countdown/loading特效 → 加载 or 倒计时
Fireworks/celebration特效 → 烟花
Curtain/page-flip opening特效 → 拉幕 or 翻书
Particle/ambient motion特效 → 小动画

Common Errors & Recovery

ErrorFix
Template opened but still on search pageSwitch tabs with browser_tabs select [N]
Can't find download linkUse browser_evaluate to search for '下载' or 'DownSys'
0 results for keywordTry broader term, or browse /ppt/ directly by category
Only 1 result foundShow it to user — it's the only match
Results don't match sub-topicTell user and offer to search with a different keyword
Playwright session diedRe-navigate to last known URL, or start from Step 1

What to NEVER Do

  • NEVER say "I don't have access to 51pptmoban.com" — Playwright MCP CAN reach it
  • NEVER fall back to "build from scratch" when user chose 51pptmoban
  • NEVER search Pexels or research the topic before opening the browser
  • NEVER use bash/find/npm to look for templates — they're on the LIVE WEBSITE
  • NEVER discard the template's design and build from scratch — fill it, don't fight it

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.