clawd-desktop 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +58 -0
  3. package/assets/LICENSE-clawd +22 -0
  4. package/assets/gif/clawd-building.gif +0 -0
  5. package/assets/gif/clawd-carrying.gif +0 -0
  6. package/assets/gif/clawd-conducting.gif +0 -0
  7. package/assets/gif/clawd-debugger.gif +0 -0
  8. package/assets/gif/clawd-error.gif +0 -0
  9. package/assets/gif/clawd-happy.gif +0 -0
  10. package/assets/gif/clawd-idle-reading.gif +0 -0
  11. package/assets/gif/clawd-idle.gif +0 -0
  12. package/assets/gif/clawd-juggling.gif +0 -0
  13. package/assets/gif/clawd-notification.gif +0 -0
  14. package/assets/gif/clawd-react-annoyed.gif +0 -0
  15. package/assets/gif/clawd-react-double-jump.gif +0 -0
  16. package/assets/gif/clawd-sleeping.gif +0 -0
  17. package/assets/gif/clawd-sweeping.gif +0 -0
  18. package/assets/gif/clawd-thinking.gif +0 -0
  19. package/assets/gif/clawd-typing.gif +0 -0
  20. package/assets/svg/clawd-about-hero.svg +202 -0
  21. package/assets/svg/clawd-collapse-sleep.svg +247 -0
  22. package/assets/svg/clawd-error.svg +94 -0
  23. package/assets/svg/clawd-happy.svg +161 -0
  24. package/assets/svg/clawd-idle-collapse.svg +101 -0
  25. package/assets/svg/clawd-idle-doze.svg +72 -0
  26. package/assets/svg/clawd-idle-follow.svg +64 -0
  27. package/assets/svg/clawd-idle-living.svg +196 -0
  28. package/assets/svg/clawd-idle-look.svg +115 -0
  29. package/assets/svg/clawd-idle-reading.svg +201 -0
  30. package/assets/svg/clawd-idle-yawn.svg +158 -0
  31. package/assets/svg/clawd-mini-alert.svg +129 -0
  32. package/assets/svg/clawd-mini-crabwalk.svg +76 -0
  33. package/assets/svg/clawd-mini-enter-sleep.svg +65 -0
  34. package/assets/svg/clawd-mini-enter.svg +115 -0
  35. package/assets/svg/clawd-mini-happy.svg +124 -0
  36. package/assets/svg/clawd-mini-idle.svg +83 -0
  37. package/assets/svg/clawd-mini-peek.svg +82 -0
  38. package/assets/svg/clawd-mini-sleep.svg +112 -0
  39. package/assets/svg/clawd-mini-typing.svg +153 -0
  40. package/assets/svg/clawd-notification.svg +149 -0
  41. package/assets/svg/clawd-react-annoyed.svg +167 -0
  42. package/assets/svg/clawd-react-double-jump.svg +229 -0
  43. package/assets/svg/clawd-react-double.svg +108 -0
  44. package/assets/svg/clawd-react-drag.svg +102 -0
  45. package/assets/svg/clawd-react-left.svg +102 -0
  46. package/assets/svg/clawd-react-right.svg +102 -0
  47. package/assets/svg/clawd-sleeping.svg +118 -0
  48. package/assets/svg/clawd-static-base.svg +21 -0
  49. package/assets/svg/clawd-wake.svg +277 -0
  50. package/assets/svg/clawd-working-building.svg +329 -0
  51. package/assets/svg/clawd-working-carrying.svg +178 -0
  52. package/assets/svg/clawd-working-conducting.svg +220 -0
  53. package/assets/svg/clawd-working-debugger.svg +245 -0
  54. package/assets/svg/clawd-working-juggling.svg +183 -0
  55. package/assets/svg/clawd-working-sweeping.svg +248 -0
  56. package/assets/svg/clawd-working-thinking.svg +196 -0
  57. package/assets/svg/clawd-working-typing.svg +273 -0
  58. package/assets/svg/clawd-working-ultrathink.svg +166 -0
  59. package/assets/svg/clawd-working-wizard.svg +98 -0
  60. package/assets/tray-icon.ico +0 -0
  61. package/bin/claude-pet.js +6 -0
  62. package/main.js +86 -0
  63. package/package.json +38 -0
  64. package/preload.js +6 -0
  65. package/renderer/avatar.js +55 -0
  66. package/renderer/index.html +14 -0
  67. package/renderer/motion.js +24 -0
  68. package/renderer/style.css +104 -0
@@ -0,0 +1,229 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="-15 -25 45 45" width="500" height="500">
2
+ <defs>
3
+ <style>
4
+ /* ===== 3.5s one-shot: startled jump, pat chest, settle =====
5
+ Phase 1 (0-15%): Jump — body flies high, legs fly less, arms out, exclamation pops
6
+ Phase 2 (15-40%): Land — squash cushion, micro bounce, exclamation fades
7
+ Phase 3 (40-70%): Pat chest — right arm strokes chest, calming
8
+ Phase 4 (70-100%): Settle — arm down, blink, still
9
+ */
10
+
11
+ /* Body vertical jump (flies high) */
12
+ .body-jump {
13
+ animation: body-jump 3.5s 1 ease-in-out forwards;
14
+ }
15
+
16
+ /* Legs vertical jump (flies less = gap with body) */
17
+ .legs-jump {
18
+ animation: legs-jump 3.5s 1 ease-in-out forwards;
19
+ }
20
+
21
+ /* Upper body squash/stretch */
22
+ .body-react {
23
+ transform-origin: 7.5px 13px;
24
+ animation: body-squash 3.5s 1 ease-in-out forwards;
25
+ }
26
+
27
+ .arm-l-react {
28
+ transform-origin: 2px 10px;
29
+ animation: arm-l-react 3.5s 1 ease-in-out forwards;
30
+ }
31
+ .arm-r-react {
32
+ transform-origin: 13px 10px;
33
+ animation: arm-r-react 3.5s 1 ease-in-out forwards;
34
+ }
35
+ /* Eyes: gaze wrapper, rect eyes (blink+vis), xmark eyes (vis) */
36
+ .eyes-gaze {
37
+ animation: eyes-gaze 3.5s 1 ease-in-out forwards;
38
+ }
39
+ .eyes-rect {
40
+ transform-origin: 7.5px 9px;
41
+ animation: eyes-blink 3.5s 1 ease-in-out forwards, rect-vis 3.5s 1 step-end forwards;
42
+ }
43
+ .eyes-xmark {
44
+ visibility: hidden;
45
+ animation: xmark-vis 3.5s 1 step-end forwards;
46
+ }
47
+ .shadow-react {
48
+ transform-origin: 7.5px 15.5px;
49
+ animation: shadow-react 3.5s 1 ease-in-out forwards;
50
+ }
51
+ .excl-pop {
52
+ animation: excl-pop 3.5s 1 ease-in-out forwards;
53
+ opacity: 0;
54
+ }
55
+
56
+ /* ==================== Keyframes ==================== */
57
+
58
+ /* Body jumps HIGH */
59
+ @keyframes body-jump {
60
+ 0% { transform: translateY(0); }
61
+ 10% { transform: translateY(-5px); }
62
+ 15% { transform: translateY(-4.5px); }
63
+ /* fast drop */
64
+ 23% { transform: translateY(1px); }
65
+ 29% { transform: translateY(-0.5px); }
66
+ 35% { transform: translateY(0); }
67
+ 100% { transform: translateY(0); }
68
+ }
69
+
70
+ /* Legs jump LESS = visible gap from body */
71
+ @keyframes legs-jump {
72
+ 0% { transform: translateY(0); }
73
+ 10% { transform: translateY(-2px); }
74
+ 15% { transform: translateY(-1.5px); }
75
+ 23% { transform: translateY(0.5px); }
76
+ 29% { transform: translateY(-0.3px); }
77
+ 35% { transform: translateY(0); }
78
+ 100% { transform: translateY(0); }
79
+ }
80
+
81
+ /* Body squash on landing + sigh during chest pat */
82
+ @keyframes body-squash {
83
+ 0% { transform: scale(1, 1); }
84
+ 10% { transform: scale(0.88, 0.88); }
85
+ 15% { transform: scale(0.9, 0.9); }
86
+ 23% { transform: scale(1.1, 0.9); }
87
+ 29% { transform: scale(0.97, 1.03); }
88
+ 35% { transform: scale(1, 1); }
89
+ /* sigh: exhale compression while hand rests on chest */
90
+ 45% { transform: scale(1.03, 0.97); }
91
+ 55% { transform: scale(1, 1); }
92
+ 100% { transform: scale(1, 1); }
93
+ }
94
+
95
+ /* Left arm: fly out, return, rest */
96
+ @keyframes arm-l-react {
97
+ 0% { transform: translate(0, 0) rotate(0deg); }
98
+ 10% { transform: translate(-2px, -2px) rotate(70deg); }
99
+ 15% { transform: translate(-1.5px, -1.5px) rotate(55deg); }
100
+ 30% { transform: translate(0, 0) rotate(0deg); }
101
+ 100% { transform: translate(0, 0) rotate(0deg); }
102
+ }
103
+
104
+ /* Right arm: fly out, return, rest on chest (relief), slow pat, lower */
105
+ @keyframes arm-r-react {
106
+ 0% { transform: translate(0, 0) rotate(0deg); }
107
+ /* Phase 1: fly out */
108
+ 10% { transform: translate(2px, -2px) rotate(-70deg); }
109
+ 15% { transform: translate(1.5px, -1.5px) rotate(-55deg); }
110
+ /* Phase 2: return */
111
+ 32% { transform: translate(0, 0) rotate(0deg); }
112
+ /* Phase 3: hand to chest — HOLD first (the relief moment) */
113
+ 40% { transform: rotate(-50deg); }
114
+ 50% { transform: rotate(-50deg); }
115
+ /* slow pat: one gentle press */
116
+ 56% { transform: rotate(-42deg); }
117
+ 62% { transform: rotate(-48deg); }
118
+ /* Phase 4: lower */
119
+ 78% { transform: rotate(-15deg); }
120
+ 90% { transform: rotate(0deg); }
121
+ 100% { transform: rotate(0deg); }
122
+ }
123
+
124
+ /* Gaze direction (shared by both eye types) */
125
+ @keyframes eyes-gaze {
126
+ 0%, 35% { transform: translate(0, 0); }
127
+ 42%, 63% { transform: translate(0, 0.5px); }
128
+ 70%, 100% { transform: translate(0, 0); }
129
+ }
130
+
131
+ /* Rect eyes: widen, blink on land, blink-shut to gate xmark switch, blink-open on return */
132
+ @keyframes eyes-blink {
133
+ 0% { transform: scaleY(1); }
134
+ 8% { transform: scaleY(1.3); }
135
+ 15% { transform: scaleY(1.2); }
136
+ /* blink on impact */
137
+ 23% { transform: scaleY(0.1); }
138
+ 30% { transform: scaleY(1); }
139
+ /* blink shut — gates switch to xmark at 38% */
140
+ 36% { transform: scaleY(0.1); }
141
+ /* hidden from 38%, value irrelevant */
142
+ 50% { transform: scaleY(0.1); }
143
+ /* reappear at 82% still shut — gates switch from xmark */
144
+ 82% { transform: scaleY(0.1); }
145
+ 88% { transform: scaleY(1); }
146
+ 100% { transform: scaleY(1); }
147
+ }
148
+
149
+ /* Rect eyes visibility: hide during xmark phase */
150
+ @keyframes rect-vis {
151
+ 0% { visibility: visible; }
152
+ 38% { visibility: hidden; }
153
+ 82% { visibility: visible; }
154
+ }
155
+
156
+ /* xmark eyes visibility: show during chest pat phase */
157
+ @keyframes xmark-vis {
158
+ 0% { visibility: hidden; }
159
+ 38% { visibility: visible; }
160
+ 82% { visibility: hidden; }
161
+ }
162
+
163
+ /* Shadow: shrink on jump, expand on land */
164
+ @keyframes shadow-react {
165
+ 0% { transform: scaleX(1); opacity: 0.5; }
166
+ 10% { transform: scaleX(0.55); opacity: 0.2; }
167
+ 15% { transform: scaleX(0.6); opacity: 0.23; }
168
+ 23% { transform: scaleX(1.12); opacity: 0.55; }
169
+ 29% { transform: scaleX(0.95); opacity: 0.48; }
170
+ 35% { transform: scaleX(1); opacity: 0.5; }
171
+ 100% { transform: scaleX(1); opacity: 0.5; }
172
+ }
173
+
174
+ /* Exclamation: emerge from below (head level), pop up high, fade */
175
+ @keyframes excl-pop {
176
+ 0%, 4% { opacity: 0; transform: translate(0, 10px) scale(0.3); }
177
+ 10% { opacity: 1; transform: translate(0, 0) scale(1.3); }
178
+ 15%, 30% { opacity: 1; transform: translate(0, 0) scale(1); }
179
+ 42% { opacity: 0; transform: translate(0, -2px) scale(0.8); }
180
+ 100% { opacity: 0; }
181
+ }
182
+ </style>
183
+ </defs>
184
+
185
+ <!-- Ground Shadow (stays on ground) -->
186
+ <rect class="shadow-react" x="3" y="15" width="9" height="1" fill="#000" opacity="0.5"/>
187
+
188
+ <!-- Legs (jump less than body = visible separation) -->
189
+ <g class="legs-jump" fill="#DE886D">
190
+ <rect x="3" y="13" width="1" height="2"/>
191
+ <rect x="5" y="13" width="1" height="2"/>
192
+ <rect x="9" y="13" width="1" height="2"/>
193
+ <rect x="11" y="13" width="1" height="2"/>
194
+ </g>
195
+
196
+ <!-- Body (jumps higher) -->
197
+ <g class="body-jump">
198
+ <g class="body-react">
199
+ <!-- Torso -->
200
+ <g fill="#DE886D">
201
+ <rect x="2" y="6" width="11" height="7"/>
202
+ </g>
203
+ <!-- Arms -->
204
+ <g fill="#DE886D">
205
+ <g class="arm-l-react"><rect x="0" y="9" width="2" height="2"/></g>
206
+ <g class="arm-r-react"><rect x="13" y="9" width="2" height="2"/></g>
207
+ </g>
208
+ <!-- Eyes -->
209
+ <g class="eyes-gaze">
210
+ <!-- Normal rect eyes (phases 1,2,4) -->
211
+ <g class="eyes-rect" fill="#000">
212
+ <rect x="4" y="8" width="1" height="2"/>
213
+ <rect x="10" y="8" width="1" height="2"/>
214
+ </g>
215
+ <!-- Small square eyes (phase 3: chest pat — relieved squint) -->
216
+ <g class="eyes-xmark" fill="#000">
217
+ <rect x="4" y="9" width="1" height="1"/>
218
+ <rect x="10" y="9" width="1" height="1"/>
219
+ </g>
220
+ </g>
221
+ </g>
222
+
223
+ <!-- Exclamation mark (moves with body, base position high above head) -->
224
+ <g class="excl-pop" fill="#FF3D00">
225
+ <rect x="7" y="-5" width="1.5" height="3"/>
226
+ <rect x="7" y="-1" width="1.5" height="1.5"/>
227
+ </g>
228
+ </g>
229
+ </svg>
@@ -0,0 +1,108 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="-15 -25 45 45" width="500" height="500">
2
+ <defs>
3
+ <style>
4
+ .body-react {
5
+ animation: body-panic 3.5s 1 ease-in-out forwards;
6
+ }
7
+ .eyes-react {
8
+ animation: eyes-panic 3.5s 1 ease-in-out forwards;
9
+ }
10
+ .eyes-blink {
11
+ transform-origin: 7.5px 9px;
12
+ animation: blink 3s infinite linear;
13
+ }
14
+ .question-pop {
15
+ transform-origin: center;
16
+ animation: question-fade 3.5s 1 ease-in-out forwards;
17
+ opacity: 0;
18
+ }
19
+ .exclamation-pop {
20
+ transform-origin: center;
21
+ animation: excl-fade 3.5s 1 ease-in-out forwards;
22
+ opacity: 0;
23
+ }
24
+
25
+ /* Frantic left-right looking */
26
+ @keyframes body-panic {
27
+ 0%, 4% { transform: translate(0px, 0px); }
28
+ 10%, 18% { transform: translate(-1px, 0px); }
29
+ 24%, 32% { transform: translate(1px, 0px); }
30
+ 36% { transform: translate(-1px, 0px); }
31
+ 40% { transform: translate(1px, 0px); }
32
+ 46%, 72% { transform: translate(1px, -1px); }
33
+ 82%, 100%{ transform: translate(0px, 0px); }
34
+ }
35
+
36
+ @keyframes eyes-panic {
37
+ 0%, 4% { transform: translate(0px, 0px); }
38
+ 10%, 18% { transform: translate(-2px, 0px); }
39
+ 24%, 32% { transform: translate(2px, 0px); }
40
+ 36% { transform: translate(-2px, 0px); }
41
+ 40% { transform: translate(2px, 0px); }
42
+ 46%, 72% { transform: translate(3px, -2px); }
43
+ 82%, 100%{ transform: translate(0px, 0px); }
44
+ }
45
+
46
+ @keyframes blink {
47
+ 0%, 20%, 24%, 60%, 64%, 80%, 84%, 100% { transform: scaleY(1); }
48
+ 22%, 62%, 82% { transform: scaleY(0.1); }
49
+ }
50
+
51
+ /* Question mark appears early (while looking left) */
52
+ @keyframes question-fade {
53
+ 0%, 6% { opacity: 0; transform: translate(-4px, 4px) scale(0.5); }
54
+ 12%, 38% { opacity: 1; transform: translate(-4px, 0px) scale(1); }
55
+ 44%, 100%{ opacity: 0; transform: translate(-4px, -4px) scale(1.2); }
56
+ }
57
+
58
+ /* Exclamation appears later (while staring up-right) */
59
+ @keyframes excl-fade {
60
+ 0%, 42% { opacity: 0; transform: translate(6px, 0px) scale(0.5); }
61
+ 48%, 72% { opacity: 1; transform: translate(6px, -4px) scale(1); }
62
+ 80%, 100%{ opacity: 0; transform: translate(6px, -8px) scale(1.2); }
63
+ }
64
+ </style>
65
+ </defs>
66
+
67
+ <!-- Ground Shadow -->
68
+ <rect x="3" y="15" width="9" height="1" fill="#000000" opacity="0.5"/>
69
+
70
+ <!-- Static Legs (extended upward to prevent gap when body shifts up) -->
71
+ <g fill="#DE886D">
72
+ <rect x="3" y="11" width="1" height="4"/>
73
+ <rect x="5" y="11" width="1" height="4"/>
74
+ <rect x="9" y="11" width="1" height="4"/>
75
+ <rect x="11" y="11" width="1" height="4"/>
76
+ </g>
77
+
78
+ <!-- Animated Upper Body -->
79
+ <g class="body-react">
80
+ <g fill="#DE886D">
81
+ <rect x="2" y="6" width="11" height="7"/>
82
+ <rect x="0" y="9" width="2" height="2"/>
83
+ <rect x="13" y="9" width="2" height="2"/>
84
+ </g>
85
+ <g class="eyes-react">
86
+ <g class="eyes-blink" fill="#000000">
87
+ <rect x="4" y="8" width="1" height="2"/>
88
+ <rect x="10" y="8" width="1" height="2"/>
89
+ </g>
90
+ </g>
91
+ </g>
92
+
93
+ <!-- Question Mark (left side) -->
94
+ <g class="question-pop" fill="#FFFFFF">
95
+ <rect x="1" y="0" width="2" height="1"/>
96
+ <rect x="0" y="1" width="1" height="1"/>
97
+ <rect x="3" y="1" width="1" height="2"/>
98
+ <rect x="2" y="3" width="1" height="1"/>
99
+ <rect x="1" y="4" width="1" height="1"/>
100
+ <rect x="1" y="6" width="1" height="1"/>
101
+ </g>
102
+
103
+ <!-- Exclamation Mark (right side) -->
104
+ <g class="exclamation-pop" fill="#0082FC">
105
+ <rect x="1" y="0" width="1" height="4"/>
106
+ <rect x="1" y="5" width="1" height="1"/>
107
+ </g>
108
+ </svg>
@@ -0,0 +1,102 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="-15 -25 45 45" width="500" height="500">
2
+ <defs>
3
+ <style>
4
+ /* Body sways side to side (held from above) */
5
+ .body-sway {
6
+ transform-origin: 7.5px 6px;
7
+ animation: sway 1.2s infinite alternate ease-in-out;
8
+ }
9
+
10
+ /* Leg dangling (from debugger sneak) */
11
+ .leg-dangle-1 {
12
+ animation: dangle-1 0.5s infinite linear;
13
+ transform-origin: top center;
14
+ transform-box: fill-box;
15
+ }
16
+ .leg-dangle-2 {
17
+ animation: dangle-2 0.5s infinite linear;
18
+ transform-origin: top center;
19
+ transform-box: fill-box;
20
+ }
21
+
22
+ /* Arm flailing (from happy wave, slightly slower) */
23
+ .arm-flail-l {
24
+ transform-box: fill-box;
25
+ transform-origin: 100% 50%;
26
+ animation: flail-l 0.2s infinite alternate ease-in-out;
27
+ }
28
+ .arm-flail-r {
29
+ transform-box: fill-box;
30
+ transform-origin: 0% 50%;
31
+ animation: flail-r 0.2s infinite alternate ease-in-out;
32
+ }
33
+
34
+ /* Shadow shrinks when lifted */
35
+ .shadow-lift {
36
+ transform-origin: 7.5px 15.5px;
37
+ animation: shadow-pulse 1.2s infinite alternate ease-in-out;
38
+ }
39
+
40
+ @keyframes sway {
41
+ 0% { transform: rotate(-3deg) translate(-1px, 0); }
42
+ 100% { transform: rotate(3deg) translate(1px, 0); }
43
+ }
44
+
45
+ @keyframes dangle-1 {
46
+ 0%, 100% { transform: rotate(0deg) scaleY(1); }
47
+ 50% { transform: rotate(-25deg) scaleY(0.7); }
48
+ }
49
+ @keyframes dangle-2 {
50
+ 0%, 100% { transform: rotate(-25deg) scaleY(0.7); }
51
+ 50% { transform: rotate(0deg) scaleY(1); }
52
+ }
53
+
54
+ @keyframes flail-l {
55
+ 0% { transform: rotate(45deg); }
56
+ 100% { transform: rotate(85deg); }
57
+ }
58
+ @keyframes flail-r {
59
+ 0% { transform: rotate(-45deg); }
60
+ 100% { transform: rotate(-85deg); }
61
+ }
62
+
63
+ @keyframes shadow-pulse {
64
+ 0% { transform: scale(0.7); opacity: 0.2; }
65
+ 100% { transform: scale(0.8); opacity: 0.3; }
66
+ }
67
+ </style>
68
+ </defs>
69
+
70
+ <!-- Ground Shadow (small + faint = lifted off ground) -->
71
+ <rect class="shadow-lift" x="3" y="15" width="9" height="1" fill="#000000"/>
72
+
73
+ <!-- Swaying body -->
74
+ <g class="body-sway">
75
+ <!-- Dangling legs -->
76
+ <g fill="#DE886D">
77
+ <rect class="leg-dangle-1" x="3" y="13" width="1" height="2"/>
78
+ <rect class="leg-dangle-2" x="5" y="13" width="1" height="2"/>
79
+ <rect class="leg-dangle-1" x="9" y="13" width="1" height="2"/>
80
+ <rect class="leg-dangle-2" x="11" y="13" width="1" height="2"/>
81
+ </g>
82
+
83
+ <!-- Torso + flailing arms -->
84
+ <g fill="#DE886D">
85
+ <rect x="2" y="6" width="11" height="7"/>
86
+ <g class="arm-flail-l">
87
+ <rect x="0" y="9" width="2" height="2"/>
88
+ </g>
89
+ <g class="arm-flail-r">
90
+ <rect x="13" y="9" width="2" height="2"/>
91
+ </g>
92
+ </g>
93
+
94
+ <!-- >< Eyes (anime squint, drawn with thin lines) -->
95
+ <g fill="none" stroke="#000000" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round">
96
+ <!-- Left eye: > -->
97
+ <polyline points="4,8 5.5,9 4,10"/>
98
+ <!-- Right eye: < -->
99
+ <polyline points="11,8 9.5,9 11,10"/>
100
+ </g>
101
+ </g>
102
+ </svg>
@@ -0,0 +1,102 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="-15 -25 45 45" width="500" height="500">
2
+ <defs>
3
+ <style>
4
+ .body-react {
5
+ transform-origin: 7.5px 15px;
6
+ animation: body-look-l 2.5s 1 ease-in-out forwards;
7
+ }
8
+ .eyes-react {
9
+ animation: eyes-look-l 2.5s 1 ease-in-out forwards;
10
+ }
11
+ .eyes-blink {
12
+ transform-origin: 7.5px 9px;
13
+ animation: blink 3s infinite linear;
14
+ }
15
+ .question-pop {
16
+ transform-origin: center;
17
+ animation: question-l 2.5s 1 ease-in-out forwards;
18
+ opacity: 0;
19
+ }
20
+ .arm-l-react {
21
+ animation: arm-l-return 2.5s 1 ease-in-out forwards;
22
+ }
23
+
24
+ /* Left arm: starts at idle-follow position (0,9), raises up then returns */
25
+ @keyframes arm-l-return {
26
+ 0%, 8% { transform: none; }
27
+ 16%, 56% { transform: translate(-1px, -2px) rotate(15deg); }
28
+ 84%, 100%{ transform: none; }
29
+ }
30
+
31
+ /* Body turns left then returns */
32
+ @keyframes body-look-l {
33
+ 0%, 8% { transform: translate(0px, 0px); }
34
+ 16%, 56% { transform: translate(-2px, 0px) rotate(-2deg); }
35
+ 84%, 100%{ transform: translate(0px, 0px); }
36
+ }
37
+
38
+ /* Eyes lead the body (larger offset) */
39
+ @keyframes eyes-look-l {
40
+ 0%, 8% { transform: translate(0px, 0px); }
41
+ 16%, 56% { transform: translate(-3px, 0px); }
42
+ 84%, 100%{ transform: translate(0px, 0px); }
43
+ }
44
+
45
+ /* Blinking (looping, keeps character alive) */
46
+ @keyframes blink {
47
+ 0%, 13%, 17%, 80%, 84%, 100% { transform: scaleY(1); }
48
+ 15%, 82% { transform: scaleY(0.1); }
49
+ }
50
+
51
+ /* Question mark: pop up, hold, float away */
52
+ @keyframes question-l {
53
+ 0%, 12% { opacity: 0; transform: translate(-6px, 6px) scale(0.5); }
54
+ 22%, 48% { opacity: 1; transform: translate(-8px, -2px) scale(1); }
55
+ 64%, 100%{ opacity: 0; transform: translate(-8px, -8px) scale(1.2); }
56
+ }
57
+ </style>
58
+
59
+ <g id="pixel-question">
60
+ <rect x="1" y="0" width="2" height="1"/>
61
+ <rect x="0" y="1" width="1" height="1"/>
62
+ <rect x="3" y="1" width="1" height="2"/>
63
+ <rect x="2" y="3" width="1" height="1"/>
64
+ <rect x="1" y="4" width="1" height="1"/>
65
+ <rect x="1" y="6" width="1" height="1"/>
66
+ </g>
67
+ </defs>
68
+
69
+ <!-- Ground Shadow -->
70
+ <rect x="3" y="15" width="9" height="1" fill="#000000" opacity="0.5"/>
71
+
72
+ <!-- Static Legs -->
73
+ <g fill="#DE886D">
74
+ <rect x="3" y="13" width="1" height="2"/>
75
+ <rect x="5" y="13" width="1" height="2"/>
76
+ <rect x="9" y="13" width="1" height="2"/>
77
+ <rect x="11" y="13" width="1" height="2"/>
78
+ </g>
79
+
80
+ <!-- Animated Upper Body -->
81
+ <g class="body-react">
82
+ <g fill="#DE886D">
83
+ <rect x="2" y="6" width="11" height="7"/>
84
+ <!-- Left arm: base position matches idle-follow (0,9), CSS animates raise+return -->
85
+ <g class="arm-l-react">
86
+ <rect x="0" y="9" width="2" height="2"/>
87
+ </g>
88
+ <rect x="13" y="9" width="2" height="2"/>
89
+ </g>
90
+ <g class="eyes-react">
91
+ <g class="eyes-blink" fill="#000000">
92
+ <rect x="4" y="8" width="1" height="2"/>
93
+ <rect x="10" y="8" width="1" height="2"/>
94
+ </g>
95
+ </g>
96
+ </g>
97
+
98
+ <!-- Left Question Mark -->
99
+ <g class="question-pop" fill="#40C4FF">
100
+ <use href="#pixel-question" />
101
+ </g>
102
+ </svg>
@@ -0,0 +1,102 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="-15 -25 45 45" width="500" height="500">
2
+ <defs>
3
+ <style>
4
+ .body-react {
5
+ transform-origin: 7.5px 15px;
6
+ animation: body-look-r 2.5s 1 ease-in-out forwards;
7
+ }
8
+ .eyes-react {
9
+ animation: eyes-look-r 2.5s 1 ease-in-out forwards;
10
+ }
11
+ .eyes-blink {
12
+ transform-origin: 7.5px 9px;
13
+ animation: blink 3s infinite linear;
14
+ }
15
+ .question-pop {
16
+ transform-origin: center;
17
+ animation: question-r 2.5s 1 ease-in-out forwards;
18
+ opacity: 0;
19
+ }
20
+ .arm-r-react {
21
+ animation: arm-r-return 2.5s 1 ease-in-out forwards;
22
+ }
23
+
24
+ /* Right arm: starts at idle-follow position (13,9), raises up then returns */
25
+ @keyframes arm-r-return {
26
+ 0%, 8% { transform: none; }
27
+ 16%, 56% { transform: translate(1px, -2px) rotate(-15deg); }
28
+ 84%, 100%{ transform: none; }
29
+ }
30
+
31
+ /* Body turns right then returns */
32
+ @keyframes body-look-r {
33
+ 0%, 8% { transform: translate(0px, 0px); }
34
+ 16%, 56% { transform: translate(2px, 0px) rotate(2deg); }
35
+ 84%, 100%{ transform: translate(0px, 0px); }
36
+ }
37
+
38
+ /* Eyes lead the body (larger offset) */
39
+ @keyframes eyes-look-r {
40
+ 0%, 8% { transform: translate(0px, 0px); }
41
+ 16%, 56% { transform: translate(3px, 0px); }
42
+ 84%, 100%{ transform: translate(0px, 0px); }
43
+ }
44
+
45
+ /* Blinking (looping, keeps character alive) */
46
+ @keyframes blink {
47
+ 0%, 13%, 17%, 80%, 84%, 100% { transform: scaleY(1); }
48
+ 15%, 82% { transform: scaleY(0.1); }
49
+ }
50
+
51
+ /* Question mark: pop up, hold, float away */
52
+ @keyframes question-r {
53
+ 0%, 12% { opacity: 0; transform: translate(6px, 6px) scale(0.5); }
54
+ 22%, 48% { opacity: 1; transform: translate(8px, -2px) scale(1); }
55
+ 64%, 100%{ opacity: 0; transform: translate(8px, -8px) scale(1.2); }
56
+ }
57
+ </style>
58
+
59
+ <g id="pixel-question">
60
+ <rect x="1" y="0" width="2" height="1"/>
61
+ <rect x="0" y="1" width="1" height="1"/>
62
+ <rect x="3" y="1" width="1" height="2"/>
63
+ <rect x="2" y="3" width="1" height="1"/>
64
+ <rect x="1" y="4" width="1" height="1"/>
65
+ <rect x="1" y="6" width="1" height="1"/>
66
+ </g>
67
+ </defs>
68
+
69
+ <!-- Ground Shadow -->
70
+ <rect x="3" y="15" width="9" height="1" fill="#000000" opacity="0.5"/>
71
+
72
+ <!-- Static Legs -->
73
+ <g fill="#DE886D">
74
+ <rect x="3" y="13" width="1" height="2"/>
75
+ <rect x="5" y="13" width="1" height="2"/>
76
+ <rect x="9" y="13" width="1" height="2"/>
77
+ <rect x="11" y="13" width="1" height="2"/>
78
+ </g>
79
+
80
+ <!-- Animated Upper Body -->
81
+ <g class="body-react">
82
+ <g fill="#DE886D">
83
+ <rect x="2" y="6" width="11" height="7"/>
84
+ <rect x="0" y="9" width="2" height="2"/>
85
+ <!-- Right arm: base position matches idle-follow (13,9), CSS animates raise+return -->
86
+ <g class="arm-r-react">
87
+ <rect x="13" y="9" width="2" height="2"/>
88
+ </g>
89
+ </g>
90
+ <g class="eyes-react">
91
+ <g class="eyes-blink" fill="#000000">
92
+ <rect x="4" y="8" width="1" height="2"/>
93
+ <rect x="10" y="8" width="1" height="2"/>
94
+ </g>
95
+ </g>
96
+ </g>
97
+
98
+ <!-- Right Question Mark -->
99
+ <g class="question-pop" fill="#FFC107" transform="translate(10, 0)">
100
+ <use href="#pixel-question" />
101
+ </g>
102
+ </svg>