Douyin daily card
Skill hackdion/douyin-daily-card-skill-public/skills/douyin-daily-card
Use when an agent needs to turn existing Chinese text, a cover brief, or a background-template brief into fixed-size 3:4 Chinese image-card PNG deliverables, including modular cover/base templates and validated daily-report cards.From its SKILL.md
npx -y skills add hackdion/douyin-daily-card-skill-public --skill douyin-daily-cardAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 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.
What its file declares
Copied from the file, not written here
The file declares its own license as LicenseRef-All-Rights-Reserved. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
5.5 KB, ~1.3k tokens by cl100k_base, as published. Nobody here has run it
图文卡片 Skill / Daily Report Card
Overview
Use this skill to generate fixed-size Chinese image cards from already-written copy or from a cover/base template brief. It is a production workflow, not a website mockup: create HTML only as the rendering surface, then export validated PNG files.
This skill does not gather news, fact-check events, write the article, or publish to any channel. Prepare and approve the source content before using this skill.
中文原则:对用户说明时优先使用中文;必要英文术语后面补中文解释,例如 template registry(模板注册表)。
Required Workflow
- Read the input contract in
references/input-contract.md. - Use the fixed public-safe layout in
references/layout-spec.md. - Generate or update a report HTML with
scripts/render-report.mjs. - Export PNG pages through Playwright/Chromium.
- Validate the output with
scripts/validate-report.mjs. - Report the output paths and validation evidence. Do not claim completion without fresh validation output.
For modular cover/base work, also read these repository-level files before designing:
../../文档/03-模块化设计规范.md../../文档/04-模板配方规则.md../../文档/05-Agent使用流程.md../../数据/模块注册表.json../../数据/模板配方注册表.json../../文档/10-功能清单与公开化路线图.mdwhen checking whether a capability is public-ready or still private/local.
If the user asks to visually tune a cover/base template or adjust positions/font sizes by hand, use the public-safe editor ../../工具/交互式封面底图编辑器.html as the preview surface first. Export its JSON parameters, render them with scripts/render-template.mjs, validate with scripts/validate-template.mjs, and keep the JSON with the final process record.
Hard Rules
- Do not turn the deliverable into a scrollable website. HTML is only the render source for fixed-size cards.
- Do not add summary cards, keyword chips, or body excerpts onto the cover unless the user explicitly asks.
- Do not keep
DAILY NEWSas a content section label. Use Chinese section names from the article. - Do not split a heading onto one page and its content onto the next. Leave whitespace instead.
- Do not modify original templates in place. Write generated files to the requested output directory.
- Do not put daily generated PNG files inside this skill directory.
- Always record the toolchain, commands, output files, and validation results.
- Keep examples and references public-safe: no real private account IDs, no channel-bound wording, and no third-party brand-specific copy.
- Do not use private IP assets in public examples. Use public-demo silhouettes, geometric placeholders, or user-provided private assets only in the user's private workspace.
- Do not auto-select templates whose registry status is
draftorbeta; use them only when the user explicitly asks for an experimental template. - When collecting public assets, use
../../工具/素材候选预览页.htmland../../数据/公开素材候选表.csvas the review surface before downloading anything into the repository. - Treat
../../工具/交互式封面底图编辑器.htmlas beta: it is suitable for public-safe interactive exploration, but final PNG output must still be produced and checked by scripts. - For
render-template.mjs, only use allowed IDs:modeiscoverorbase;presetismorning/noon/night/mon/tue/wed/thu/fri/sat/sun;roleisrobot/star/sprite/boxbot. - Template text fields must be non-empty and no longer than 240 characters; layout
x/y/sizevalues must be finite numbers inside the script limits. validate-template.mjsmust passpng-path-inside-output,manifest-config-valid,render-console-errors,render-page-errors, andfield-bounds; do not publish if any one of them fails.
Standard Commands
From the repository root during local validation:
node skills/douyin-daily-card/scripts/render-report.mjs skills/douyin-daily-card/examples/2026-04-25-input.md
node skills/douyin-daily-card/scripts/validate-report.mjs output/generic-daily-report-2026-04-25
Use --output <dir> when testing or when the user gives a specific destination:
OUT_DIR="$(mktemp -d)"
node skills/douyin-daily-card/scripts/render-report.mjs input.md --output "$OUT_DIR"
Both scripts auto-bootstrap Playwright with npm exec --package=playwright@latest if Node cannot load Playwright directly.
For cover/base template JSON exported from the interactive editor:
node skills/douyin-daily-card/scripts/render-template.mjs skills/douyin-daily-card/examples/template-config-public-safe.json --output /tmp/daily-card-template-test
node skills/douyin-daily-card/scripts/validate-template.mjs /tmp/daily-card-template-test
Validate public helper tools after editing 工具/ pages:
node scripts/validate-public-tools.mjs
References
- Input schema:
references/input-contract.md - Visual constants:
references/layout-spec.md - Pagination rules:
references/pagination-rules.md - Toolchain and commands:
references/toolchain-and-commands.md - Acceptance checklist:
references/validation-checklist.md - Known failure modes:
references/common-failures.md
What ships with it: 13 files
76.4 KB alongside SKILL.md, 4 of them executable
assets/
examples/
references/
- common-failures.md1.1 KB
- input-contract.md1.8 KB
- layout-spec.md1.3 KB
- pagination-rules.md1.1 KB
- toolchain-and-commands.md1.6 KB
- validation-checklist.md1.5 KB
scripts/
- render-report.mjsruns29.8 KB
- render-template.mjsruns12.0 KB
- validate-report.mjsruns8.8 KB
- validate-template.mjsruns11.0 KB