Stats
Actions
Tags
From artifact-publisher
Quality checklist for generated artifacts. Covers HTML file structure validation, Chinese encoding integrity, code block annotation, external dependency checks, and Feishu document validation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/artifact-publisher:output-qualityThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
通用输出质量检查清单。
通用输出质量检查清单。
<html>、<head>、<body> 完整结构<meta charset="UTF-8"> 已声明?、□ 或乱码占位)class="language-xxx")http:// 或 https:// 的外部资源引用(脚本、字体、图片)swimlane_diagram,HTML 中必须存在泳道结构(多列 lane + 跨列箭头),不能用普通流程图替代.zoomable 并含 .fs-btn 全屏按钮index.html 存在<title>index.html 底部含文件清单https://*.feishu.cn/docx/...)# 文件存在 + 非空
[ -s "$FILE" ] || echo "FAIL: empty or missing"
# 检查外部依赖
grep -E 'src="https?://|href="https?://[^"]*\.(css|js)"' "$FILE" && echo "FAIL: external deps"
# 检查 charset
grep -q 'charset=UTF-8' "$FILE" || echo "FAIL: no charset"
# 检查中文是否乱码(统计 ? 数量)
[ "$(tr -dc '?' < "$FILE" | wc -c)" -lt 10 ] || echo "WARN: many ? chars"
任一检查失败:
npx claudepluginhub icarus-go/vibe-coding-plugins --plugin artifact-publisherCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.