name: zzz-official-resources description: Download, update-check, repair, and export official Zenless Zone Zero resources from miHoYo Wiki, including wallpaper collections and agent profiles (cinema images, character display animations, media materials, goodwill wallpaper videos). Use when users ask to download ZZZ official images/videos, check official resource updates, repair missing local files, or export manifests. metadata: short-description: Download and check ZZZ official resources
ZZZ Official Resources
Use this skill for official Zenless Zone Zero resources from miHoYo Wiki:
- Calendar wallpapers
- Wallpaper collection pages under
壁纸合集 - Agent profiles under
代理档案:意象影画mindscape/cinema images角色展示character display animations (GIF) and stills媒体物料media materials (character cards, unreleased images)好感壁纸goodwill wallpaper videos (MP4)
Required Interaction
Before running a command that writes user files, ask the user to choose:
- Resource type:
wallpapers,cinema,goodwill, orall - Operation:
download,check-remote,check-local,repair, orexport-manifest - Destination directory when the operation needs one
Do not assume a destination directory. Do not write manifests or CSV files into the user's destination unless the user explicitly asks to export them.
CLI
Use the bundled script:
python scripts/zzz_resources.py list-resources --dest "C:\path\to\resources"
python scripts/zzz_resources.py check-remote --type all --dest "C:\path\to\resources"
python scripts/zzz_resources.py check-local --type all --dest "C:\path\to\resources"
python scripts/zzz_resources.py download --type all --dest "C:\path\to\resources"
python scripts/zzz_resources.py repair --type all --dest "C:\path\to\resources"
python scripts/zzz_resources.py export-manifest --type all --manifest-src "C:\path\to\resources" --dest "C:\path\for\csv"
Behavior
- Manifests and reports are stored in
<dest>/.manifests/:wallpapers_manifest.csvcinema_manifest.csvgoodwill_manifest.csvlast_check_report.csv
downloadrefreshes the manifest and writes resources to the confirmed destination.check-remotecompares the current official site against the existing manifest and writes the check report.check-localchecks the confirmed destination for missing or zero-byte files.repaironly downloads missing or zero-byte files.export-manifestcopies manifests from--manifest-srcto--dest(separate from the project manifests).- Never delete user files automatically. Report unknown extra files or removed remote resources instead.
Naming
- Calendar wallpapers:
壁纸合集/月历壁纸合集/<year>PC版壁纸收录/<month>月.extand壁纸合集/月历壁纸合集/<year>手机版壁纸收录/<month>月.ext. - Wallpaper collections:
壁纸合集/<collection>/<web group>/...; single-group collections are flattened. - Agent profiles:
代理档案/<agent>/意象影画/影画展示1.ext,影画展示2.ext,影画展示3.ext;代理档案/<agent>/角色展示/<tab_name>.ext;代理档案/<agent>/媒体物料/<tab_name>.ext;代理档案/<agent>/好感壁纸/<agent>好感壁纸.mp4.
Safety Notes
Writing outside the workspace or into OneDrive may require escalation. Ask for confirmation at action time when the tool requires it. CSV export is user-visible output and must only happen after the user requests it.
Known Pitfalls / Troubleshooting
- Do not parse the visible HTML page for resource data. The page is mostly a Nuxt shell; use the
entry_pageAPI for content. - Do not use
entry_page_v2as the default detail API. It may return HTTP 403 in this environment. - Always send
X-Rpc-Wiki_app: zzzwhen requestinghoyowiki/zzz/wapi/entry_page. - For channel pages,
home/mapmay only include the homepage preview list. Usehome/content/list?channel_id=<id>&page_num=1&page_size=100for complete channel item lists, especially the agent channel43. - For wallpaper collection grouping, do not rely on
module.name; it is often empty. Usetemplate_layout.tab[].module_group[].nameand map those group modules back topage.modules[].id. - Static images usually come from
map_desccomponent data:data.list[].imagewithdata.list[].tab_name. - Dynamic wallpaper MP4 files are embedded in rich text as
data-video-urlor<video src=...>, not inmap_desc.image. - Agent cinema files are image tabs matching
影画展示\dprefix from module 279. Most agents have three (影画展示1/2/3); special cases (e.g. 佩洛伊斯) may have fewer with suffixes like影画展示1-哲/影画展示1-铃. Preview/unreleased agents may have no cinema images; treat that as normal, not as a failure. - Agent character display (角色展示) images/GIFs come from module 12 — collect all
map_descitems unconditionally. - Agent media materials (媒体物料) come from module 949 — collect all
map_descitems unconditionally. - Agent goodwill wallpapers (好感壁纸) come from channel 99 independent entry pages — extract MP4 via
data-video-url. - Calendar wallpaper modules expose group names such as
2026PC版壁纸收录and2026手机版壁纸收录. Infer the year and PC/mobile suffix from those group names, and infer the month from tab names. - Manifests and check reports are stored in
<dest>/.manifests/. Only runexport-manifestafter the user explicitly asks to inspect or receive CSV files. - Never delete user files automatically. If remote resources disappear, local files are extra, or old empty folders remain, report them and ask before deletion.