aseprite-tags
Installation
SKILL.md
Aseprite Tag Extraction
Quick start
- Run
python scripts/extract_aseprite_tags.py <file-or-folder-or-glob> [...]. - Directories are scanned for
*.aseprite. - Output is Markdown by default; use
--jsonfor structured output.
Workflow
- Identify target
.asepritefiles. - Run the script with a file, folder, or glob.
- Use tag names and inclusive frame ranges (
from-to) as animation actions.
Notes
- Frame ranges are inclusive.
- Tag chunks may appear multiple times; the script de-duplicates identical tags.
- If no tags exist, it prints
(no tags found)for that file.
Examples
python scripts/extract_aseprite_tags.py d:\project\godot\blockking\assets
python scripts/extract_aseprite_tags.py "d:\project\godot\blockking\assets\*.aseprite"
python scripts/extract_aseprite_tags.py d:\project\godot\blockking\assets\Knight Templar.aseprite --json
scripts/
scripts/extract_aseprite_tags.py: Parse Aseprite binary format and output tag lists.
Related skills
More from chen19007/my_skills
godot-verify
|
22godot-tdd
Godot TDD(测试驱动开发)流程总控,协调 godot-design、godot-dev、godot-test、godot-verify 完成开发闭环。
2godot-tdd-full
Complete TDD workflow for Godot projects. Integrates interface design, GUT testing, code implementation, and verification tools.
2godot-web-e2e
End-to-end testing for any Godot Web export using Chrome DevTools and a local HTTP server. Use when verifying gameplay behavior in a Web build (not editor) and you need repeatable DevTools-driven input checks and console evidence.
2godot-test
|
2godot-dev
|
2