How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-wps-excel:layout-beautifyThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
| 层级 | 字号 | 字重 | 颜色 | 用途 |
| 层级 | 字号 | 字重 | 颜色 | 用途 |
|---|---|---|---|---|
| 封面标题 | 40-48 | Bold | 白色/主色 | 封面页标题 |
| 页面标题 | 28-34 | Bold | 主色 | 每页顶部标题 |
| 副标题 | 20-24 | SemiBold | 深灰 | 分节标题 |
| 正文 | 14-18 | Regular | 中灰 0x444444 | 内容文字 |
| 辅助 | 11-13 | Regular | 浅灰 0x999999 | 页脚、图注 |
// 标题下方的主色色条(视觉锚点)
var accent = slide.Shapes.AddShape(1, 50, 70, 60, 5);
accent.Fill.ForeColor.RGB = PRIMARY_COLOR;
accent.Line.Visible = false;
// 顶部细色带(贯穿整页宽度)
var topBar = slide.Shapes.AddShape(1, 0, 0, pageW, 8);
topBar.Fill.ForeColor.RGB = PRIMARY_COLOR;
topBar.Line.Visible = false;
// 左侧竖向色条
var sideBar = slide.Shapes.AddShape(1, 0, 0, 8, pageH);
sideBar.Fill.ForeColor.RGB = PRIMARY_COLOR;
sideBar.Line.Visible = false;
// 标准卡片样式
function styleCard(shape, fillColor) {
shape.Fill.ForeColor.RGB = fillColor;
shape.Line.Visible = false;
try { shape.Adjustments.Item(1) = 0.06; } catch(e) {}
}
// 标准圆形图标底
function styleCircle(shape, fillColor) {
shape.Fill.ForeColor.RGB = fillColor;
shape.Line.Visible = false;
}
npx claudepluginhub claude-office-skills/claude-wps-ppt-pluginGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Resolves in-progress git merge or rebase conflicts by analyzing history, understanding intent, and preserving both changes where possible. Runs automated checks after resolution.