Agent Skills
› calesthio/OpenMontage
› pose-library-design
pose-library-design
GitHub设计可复用的2D角色姿态库、动作循环和表情状态,用于数据驱动动画。涵盖姿态分类、表演模式及数据结构规范,确保动画可读性与复用性。
Trigger Scenarios
需要设计2D角色动画姿态
创建或管理动画资产库
定义角色表情与动作规范
Install
npx skills add calesthio/OpenMontage --skill pose-library-design -g -y
SKILL.md
Frontmatter
{
"name": "pose-library-design",
"license": "MIT",
"description": "Design reusable 2D character pose libraries, action cycles, and expression states for data-driven animation."
}
Pose Library Design
Use this skill when producing pose_library artifacts.
Pose Categories
- Neutral: idle, breathe, listening.
- Attention: look_up, look_down, look_left, look_right.
- Emotion: happy, sad, surprised, worried, determined.
- Action: reach, point, hold, jump, flap, walk_contact, walk_passing.
- Mouth: closed, small_o, wide_open, smile, frown, phoneme-ish shapes.
Acting Pattern
Use timed pose sequences:
anticipation -> action -> hold -> settle
Do not continuously animate every part. Holds make the acting readable.
Pose Data Pattern
{
"pose": "surprised",
"parts": {
"head": { "rotation": -6, "y": -4 },
"pupil_left": { "x": 4, "y": -6 },
"mouth": "small_o"
},
"hold_frames": 18,
"transition": "back.out"
}
Quality Checklist
- Required emotions have poses.
- Required actions have poses or cycles.
- Reused cycles have contact and passing poses.
- Poses name only changed parts; defaults come from the rig.
Sources
- GSAP timeline sequencing for readable multi-step poses: https://gsap.com/docs/v3/GSAP/Timeline/
- Remotion interpolation for frame-based transitions: https://www.remotion.dev/docs/interpolate
- Remotion spring for natural motion: https://www.remotion.dev/docs/spring
Version History
- 0af32ce Current 2026-07-24 22:22


