Stats
Actions
Tags
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-pluginScans a codebase for architectural friction, presents candidates as a visual HTML report with before/after diagrams, and guides you through deepening refactors.