tokentracker-cli 0.5.10 → 0.5.13

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 (50) hide show
  1. package/dashboard/dist/assets/DashboardPage-BS38-6Xx.js +12 -0
  2. package/dashboard/dist/assets/{LeaderboardPage-BaHIGvSw.js → LeaderboardPage-BhqpZtev.js} +1 -1
  3. package/dashboard/dist/assets/{LeaderboardProfilePage-BCvKUQ4z.js → LeaderboardProfilePage-CfQdUOe3.js} +1 -1
  4. package/dashboard/dist/assets/{ThemeToggle-BVMjkcsk.js → ThemeToggle-DVKbB4qC.js} +1 -1
  5. package/dashboard/dist/assets/{leaderboard-columns-BvsbuvV1.js → leaderboard-columns-2mvo_uNL.js} +1 -1
  6. package/dashboard/dist/assets/{main-Cs8rK2ak.js → main-7kFIj2vL.js} +4 -4
  7. package/dashboard/dist/clawd/happy.svg +161 -0
  8. package/dashboard/dist/clawd/idle/collapse.svg +101 -0
  9. package/dashboard/dist/clawd/idle/doze.svg +72 -0
  10. package/dashboard/dist/clawd/idle/follow.svg +64 -0
  11. package/dashboard/dist/clawd/idle/living.svg +196 -0
  12. package/dashboard/dist/clawd/idle/look.svg +115 -0
  13. package/dashboard/dist/clawd/idle/yawn.svg +158 -0
  14. package/dashboard/dist/clawd/mini/alert.svg +129 -0
  15. package/dashboard/dist/clawd/mini/crabwalk.svg +76 -0
  16. package/dashboard/dist/clawd/mini/enter-sleep.svg +65 -0
  17. package/dashboard/dist/clawd/mini/enter.svg +115 -0
  18. package/dashboard/dist/clawd/mini/happy.svg +124 -0
  19. package/dashboard/dist/clawd/mini/idle.svg +83 -0
  20. package/dashboard/dist/clawd/mini/peek.svg +82 -0
  21. package/dashboard/dist/clawd/mini/sleep.svg +112 -0
  22. package/dashboard/dist/clawd/react/double.svg +108 -0
  23. package/dashboard/dist/clawd/react/drag.svg +102 -0
  24. package/dashboard/dist/clawd/react/left.svg +102 -0
  25. package/dashboard/dist/clawd/react/right.svg +102 -0
  26. package/dashboard/dist/clawd/sleep/collapse-sleep.svg +247 -0
  27. package/dashboard/dist/clawd/sleep/sleeping.svg +118 -0
  28. package/dashboard/dist/clawd/sleep/wake.svg +277 -0
  29. package/dashboard/dist/clawd/static-base.svg +21 -0
  30. package/dashboard/dist/clawd/status/disconnected.svg +136 -0
  31. package/dashboard/dist/clawd/status/error.svg +94 -0
  32. package/dashboard/dist/clawd/status/notification.svg +134 -0
  33. package/dashboard/dist/clawd/working/building.svg +231 -0
  34. package/dashboard/dist/clawd/working/carrying.svg +107 -0
  35. package/dashboard/dist/clawd/working/conducting.svg +118 -0
  36. package/dashboard/dist/clawd/working/confused.svg +113 -0
  37. package/dashboard/dist/clawd/working/debugger.svg +91 -0
  38. package/dashboard/dist/clawd/working/juggling.svg +82 -0
  39. package/dashboard/dist/clawd/working/overheated.svg +75 -0
  40. package/dashboard/dist/clawd/working/pushing.svg +125 -0
  41. package/dashboard/dist/clawd/working/sweeping.svg +79 -0
  42. package/dashboard/dist/clawd/working/thinking.svg +119 -0
  43. package/dashboard/dist/clawd/working/typing.svg +153 -0
  44. package/dashboard/dist/clawd/working/ultrathink.svg +166 -0
  45. package/dashboard/dist/clawd/working/wizard.svg +98 -0
  46. package/dashboard/dist/index.html +1 -1
  47. package/dashboard/dist/llms.txt +9 -12
  48. package/dashboard/dist/share.html +1 -1
  49. package/package.json +1 -1
  50. package/dashboard/dist/assets/DashboardPage-DEZCzCqB.js +0 -12
@@ -0,0 +1,115 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="-15 -25 45 45" width="500" height="500">
2
+ <defs>
3
+ <style>
4
+ /* 10-Second Idle Loop — Looking Around + Scratching (no yawn) */
5
+ .action-body {
6
+ transform-origin: 7.5px 13px;
7
+ animation: action-body 10s infinite ease-in-out;
8
+ }
9
+
10
+ .breathe-anim {
11
+ transform-origin: 7.5px 13px;
12
+ animation: breathe 3.2s infinite ease-in-out;
13
+ }
14
+
15
+ .shadow-anim {
16
+ transform-origin: 7.5px 15.5px;
17
+ animation: shadow-action 10s infinite ease-in-out;
18
+ }
19
+
20
+ .arm-l {
21
+ transform-origin: 1px 10px;
22
+ animation: arm-l-idle 10s infinite ease-in-out;
23
+ }
24
+
25
+ .eyes-look {
26
+ animation: eye-track 10s infinite ease-in-out;
27
+ }
28
+
29
+ .eyes-blink {
30
+ transform-origin: 7.5px 9px;
31
+ animation: eye-blink 10s infinite linear;
32
+ }
33
+
34
+ /* --- Keyframes --- */
35
+
36
+ @keyframes breathe {
37
+ 0%, 100% { transform: scale(1, 1) translate(0, 0); }
38
+ 50% { transform: scale(1.02, 0.98) translate(0, 0.5px); }
39
+ }
40
+
41
+ @keyframes action-body {
42
+ 0%, 8%, 25%, 30%, 40%, 45%, 60%, 100% { transform: scale(1,1) translate(0,0); }
43
+ /* Look Right */
44
+ 12%, 22% { transform: scale(1,1) translate(1px, 0); }
45
+ /* Look Left */
46
+ 48%, 57% { transform: scale(1,1) translate(-1px, 0); }
47
+ /* Scratch Lean */
48
+ 33%, 38% { transform: scale(1,1) translate(0.5px, 0); }
49
+ }
50
+
51
+ @keyframes shadow-action {
52
+ 0%, 8%, 25%, 30%, 40%, 45%, 60%, 100% { transform: scaleX(1) translate(0,0); opacity: 0.5; }
53
+ 12%, 22% { transform: scaleX(1) translate(1px, 0); opacity: 0.5; }
54
+ 48%, 57% { transform: scaleX(1) translate(-1px, 0); opacity: 0.5; }
55
+ 33%, 38% { transform: scaleX(1) translate(0.5px, 0); opacity: 0.5; }
56
+ }
57
+
58
+ @keyframes eye-track {
59
+ 0%, 10%, 25%, 43%, 60%, 100% { transform: translate(0, 0); }
60
+ 12%, 22% { transform: translate(3px, 0); } /* Look Right */
61
+ 48%, 57% { transform: translate(-3px, 0); } /* Look Left */
62
+ }
63
+
64
+ @keyframes eye-blink {
65
+ 0%, 3%, 7%, 18%, 22%, 47%, 51%, 78%, 82%, 100% { transform: scaleY(1); }
66
+ 5%, 20%, 49%, 80% { transform: scaleY(0.1); }
67
+ }
68
+
69
+ @keyframes arm-l-idle {
70
+ 0%, 30% { transform: translate(0,0) rotate(0deg); }
71
+ /* Scratching Sequence */
72
+ 33% { transform: translate(1px, -3px) rotate(15deg); }
73
+ 34% { transform: translate(1.5px, -4px) rotate(35deg); }
74
+ 35% { transform: translate(0.5px, -2.5px) rotate(0deg); }
75
+ 36% { transform: translate(1.5px, -4px) rotate(35deg); }
76
+ 37% { transform: translate(0.5px, -2.5px) rotate(0deg); }
77
+ 38% { transform: translate(1.5px, -4px) rotate(35deg); }
78
+ 39% { transform: translate(0.5px, -2.5px) rotate(0deg); }
79
+ 42%, 100% { transform: translate(0,0) rotate(0deg); }
80
+ }
81
+ </style>
82
+ </defs>
83
+
84
+ <!-- Ground Shadow -->
85
+ <rect id="ground-shadow" class="shadow-anim" x="3" y="15" width="9" height="1" fill="#000000" opacity="0.5"/>
86
+
87
+ <!-- Static Legs -->
88
+ <g id="legs" fill="#DE886D">
89
+ <rect x="3" y="12" width="1" height="3"/>
90
+ <rect x="5" y="12" width="1" height="3"/>
91
+ <rect x="9" y="12" width="1" height="3"/>
92
+ <rect x="11" y="12" width="1" height="3"/>
93
+ </g>
94
+
95
+ <!-- Animated Upper Body -->
96
+ <g class="action-body">
97
+ <g class="breathe-anim">
98
+ <!-- Torso -->
99
+ <rect id="torso" x="2" y="6" width="11" height="7" fill="#DE886D"/>
100
+ <!-- Left Arm (scratches) -->
101
+ <g class="arm-l">
102
+ <rect x="0" y="9" width="2" height="2" fill="#DE886D"/>
103
+ </g>
104
+ <!-- Right Arm (static) -->
105
+ <rect x="13" y="9" width="2" height="2" fill="#DE886D"/>
106
+ <!-- Eyes -->
107
+ <g class="eyes-look" fill="#000000">
108
+ <g class="eyes-blink">
109
+ <rect x="4" y="8" width="1" height="2"/>
110
+ <rect x="10" y="8" width="1" height="2"/>
111
+ </g>
112
+ </g>
113
+ </g>
114
+ </g>
115
+ </svg>
@@ -0,0 +1,158 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="-15 -25 45 45" width="500" height="500">
2
+ <defs>
3
+ <style>
4
+ /* 5-Second Yawn — One-shot, ends in squashed/eyes-closed pose */
5
+ .action-body {
6
+ transform-origin: 7.5px 13px;
7
+ animation: action-body-yawn 3.8s ease-in-out forwards;
8
+ }
9
+
10
+ .breathe-anim {
11
+ transform-origin: 7.5px 13px;
12
+ animation: breathe 3.2s infinite ease-in-out;
13
+ }
14
+
15
+ .shadow-anim {
16
+ transform-origin: 7.5px 15.5px;
17
+ animation: shadow-yawn 3.8s ease-in-out forwards;
18
+ }
19
+
20
+ .arm-l {
21
+ transform-origin: 1px 10px;
22
+ animation: arm-l-yawn 3.8s ease-in-out forwards;
23
+ }
24
+
25
+ .arm-r {
26
+ transform-origin: 14px 10px;
27
+ animation: arm-r-yawn 3.8s ease-in-out forwards;
28
+ }
29
+
30
+ .eyes-look {
31
+ animation: eye-track-yawn 3.8s ease-in-out forwards;
32
+ }
33
+
34
+ .eyes-blink {
35
+ transform-origin: 7.5px 9px;
36
+ animation: eye-blink-yawn 3.8s linear forwards;
37
+ }
38
+
39
+ .yawn-mouth {
40
+ transform-origin: 7.5px 11px;
41
+ animation: yawn-mouth-anim 3.8s ease-in-out forwards;
42
+ opacity: 0;
43
+ }
44
+
45
+ .yawn-tear {
46
+ animation: tear-fall 3.8s ease-in-out forwards;
47
+ opacity: 0;
48
+ }
49
+
50
+ /* --- Keyframes --- */
51
+
52
+ @keyframes breathe {
53
+ 0%, 100% { transform: scale(1, 1) translate(0, 0); }
54
+ 50% { transform: scale(1.02, 0.98) translate(0, 0.5px); }
55
+ }
56
+
57
+ /* Body: neutral → stretch up → peak → squash down (hold from 78%) */
58
+ @keyframes action-body-yawn {
59
+ 0%, 12% { transform: scale(1, 1) translate(0, 0); }
60
+ 32% { transform: scale(0.95, 1.05) translate(0, -1px); }
61
+ 50% { transform: scale(0.9, 1.1) translate(0, -2px); }
62
+ 78%, 100% { transform: scale(1.05, 0.95) translate(0, 1px); }
63
+ }
64
+
65
+ @keyframes shadow-yawn {
66
+ 0%, 12% { transform: scaleX(1); opacity: 0.5; }
67
+ 32% { transform: scaleX(0.95); opacity: 0.45; }
68
+ 50% { transform: scaleX(0.9); opacity: 0.4; }
69
+ 78%, 100% { transform: scaleX(1.05); opacity: 0.55; }
70
+ }
71
+
72
+ /* Eyes look slightly up during stretch, then neutral */
73
+ @keyframes eye-track-yawn {
74
+ 0%, 18% { transform: translate(0, 0); }
75
+ 32%, 68% { transform: translate(0, -1px); }
76
+ 82%, 100% { transform: translate(0, 0); }
77
+ }
78
+
79
+ /* Blink once, then eyes shut for the yawn and stay shut */
80
+ @keyframes eye-blink-yawn {
81
+ 0%, 18% { transform: scaleY(1); }
82
+ 24% { transform: scaleY(0.1); }
83
+ 30% { transform: scaleY(1); }
84
+ 42%, 100% { transform: scaleY(0.1); }
85
+ }
86
+
87
+ /* Both arms stretch outward during yawn, then relax down */
88
+ @keyframes arm-l-yawn {
89
+ 0%, 12% { transform: translate(0, 0) rotate(0deg); }
90
+ 38% { transform: translate(-1px, -2px) rotate(45deg); }
91
+ 50% { transform: translate(-2px, -3px) rotate(80deg); }
92
+ 78%, 100% { transform: translate(0, 1px) rotate(-15deg); }
93
+ }
94
+
95
+ @keyframes arm-r-yawn {
96
+ 0%, 12% { transform: translate(0, 0) rotate(0deg); }
97
+ 38% { transform: translate(1px, -2px) rotate(-45deg); }
98
+ 50% { transform: translate(2px, -3px) rotate(-80deg); }
99
+ 78%, 100% { transform: translate(0, 1px) rotate(15deg); }
100
+ }
101
+
102
+ /* Mouth opens wide then closes */
103
+ @keyframes yawn-mouth-anim {
104
+ 0%, 18% { opacity: 0; transform: scale(0.1); }
105
+ 32% { opacity: 1; transform: scale(0.5, 0.2); }
106
+ 50% { opacity: 1; transform: scale(1.1, 1.4); }
107
+ 68% { opacity: 1; transform: scale(0.6, 0.4); }
108
+ 80%, 100% { opacity: 0; transform: scale(0.1); }
109
+ }
110
+
111
+ /* Tiny tear slides down during peak yawn */
112
+ @keyframes tear-fall {
113
+ 0%, 45% { opacity: 0; transform: translateY(0); }
114
+ 50% { opacity: 1; transform: translateY(0); }
115
+ 68% { opacity: 1; transform: translateY(2.5px); }
116
+ 80%, 100% { opacity: 0; transform: translateY(3px); }
117
+ }
118
+ </style>
119
+ </defs>
120
+
121
+ <!-- Ground Shadow -->
122
+ <rect id="ground-shadow" class="shadow-anim" x="3" y="15" width="9" height="1" fill="#000000" opacity="0.5"/>
123
+
124
+ <!-- Static Legs -->
125
+ <g id="legs" fill="#DE886D">
126
+ <rect x="3" y="12" width="1" height="3"/>
127
+ <rect x="5" y="12" width="1" height="3"/>
128
+ <rect x="9" y="12" width="1" height="3"/>
129
+ <rect x="11" y="12" width="1" height="3"/>
130
+ </g>
131
+
132
+ <!-- Animated Upper Body -->
133
+ <g class="action-body">
134
+ <g class="breathe-anim">
135
+ <!-- Torso -->
136
+ <rect id="torso" x="2" y="6" width="11" height="7" fill="#DE886D"/>
137
+ <!-- Left Arm -->
138
+ <g class="arm-l">
139
+ <rect x="0" y="9" width="2" height="2" fill="#DE886D"/>
140
+ </g>
141
+ <!-- Right Arm -->
142
+ <g class="arm-r">
143
+ <rect x="13" y="9" width="2" height="2" fill="#DE886D"/>
144
+ </g>
145
+ <!-- Yawning Mouth (hidden initially) -->
146
+ <rect class="yawn-mouth" x="6" y="10" width="3" height="2" fill="#000000"/>
147
+ <!-- Eyes -->
148
+ <g class="eyes-look" fill="#000000">
149
+ <g class="eyes-blink">
150
+ <rect x="4" y="8" width="1" height="2"/>
151
+ <rect x="10" y="8" width="1" height="2"/>
152
+ </g>
153
+ </g>
154
+ <!-- Tear -->
155
+ <rect class="yawn-tear" x="3.5" y="10" width="1" height="1" fill="#40C4FF"/>
156
+ </g>
157
+ </g>
158
+ </svg>
@@ -0,0 +1,129 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="-15 -25 45 45" width="500" height="500">
2
+ <defs>
3
+ <style>
4
+ .breathe-anim {
5
+ transform-origin: 7.5px 13px;
6
+ animation: breathe 3.2s infinite ease-in-out;
7
+ }
8
+
9
+ .arm-alert {
10
+ transform-origin: 2px 9px;
11
+ animation: alert-arm 4s infinite ease-in-out;
12
+ }
13
+
14
+ /* Normal rect eyes: visible first, hidden after blink */
15
+ .eyes-rect {
16
+ transform-origin: 7.5px 9px; /* eye vertical center for blink */
17
+ animation: rect-vis 4s infinite step-end, rect-move 4s infinite ease-in-out;
18
+ }
19
+
20
+ /* xmark squint eyes: hidden first, visible after switch */
21
+ .eyes-xmark {
22
+ visibility: hidden;
23
+ animation: xmark-vis 4s infinite step-end;
24
+ }
25
+
26
+ .alert-pop {
27
+ animation: alert-flash 4s infinite ease-in-out;
28
+ opacity: 0;
29
+ }
30
+
31
+ @keyframes breathe {
32
+ 0%, 100% { transform: scale(1, 1) translate(0, 0); }
33
+ 50% { transform: scale(1.02, 0.98) translate(0, 0.5px); }
34
+ }
35
+
36
+ @keyframes alert-arm {
37
+ 0%, 49% { transform: rotate(0deg); }
38
+ 51% { transform: rotate(20deg); }
39
+ 60% { transform: rotate(-8deg); }
40
+ 64% { transform: rotate(20deg); }
41
+ 68% { transform: rotate(-8deg); }
42
+ 72% { transform: rotate(20deg); }
43
+ 76% { transform: rotate(-8deg); }
44
+ 80% { transform: rotate(20deg); }
45
+ 84% { transform: rotate(-8deg); }
46
+ 88% { transform: rotate(20deg); }
47
+ 92%, 100% { transform: rotate(0deg); }
48
+ }
49
+
50
+ /* Rect eyes: center, wait for exclamation, slowly look left, back, pause, blink, switch */
51
+ @keyframes rect-move {
52
+ 0%, 16% { transform: translate(0, 0) scaleY(1); }
53
+ 22%, 28% { transform: translate(-2px, 0) scaleY(1); }
54
+ 34% { transform: translate(0, 0) scaleY(1); }
55
+ 36% { transform: translate(0, 0) scaleY(0.1); }
56
+ 37%, 39% { transform: translate(0, 0) scaleY(1); }
57
+ 41% { transform: translate(0, 0) scaleY(0.1); }
58
+ 42%, 100% { transform: translate(0, 0) scaleY(1); }
59
+ }
60
+
61
+ /* Rect eyes visibility: visible → hidden at 22%, back at 91% */
62
+ @keyframes rect-vis {
63
+ 0% { visibility: visible; }
64
+ 42% { visibility: hidden; }
65
+ 91% { visibility: visible; }
66
+ }
67
+
68
+ /* xmark eyes visibility: hidden at start, visible at 42%, hidden at 89% */
69
+ @keyframes xmark-vis {
70
+ 0% { visibility: hidden; }
71
+ 42% { visibility: visible; }
72
+ 89% { visibility: hidden; }
73
+ }
74
+
75
+ @keyframes alert-flash {
76
+ 0%, 8% { opacity: 0; transform: scale(0.5); }
77
+ 12% { opacity: 1; transform: translate(0, -4px) scale(1.2); }
78
+ 20%, 70% { opacity: 1; transform: translate(0, -4px) scale(1); }
79
+ 85%, 100% { opacity: 0; transform: translate(0, -6px) scale(0.8); }
80
+ }
81
+ </style>
82
+ </defs>
83
+
84
+ <!-- Entire character leaning -->
85
+ <g transform="rotate(-12, 7.5, 15)">
86
+
87
+ <!-- Legs -->
88
+ <g fill="#DE886D">
89
+ <rect x="3" y="11" width="1" height="4"/>
90
+ <rect x="5" y="11" width="1" height="4"/>
91
+ <rect x="9" y="11" width="1" height="4"/>
92
+ <rect x="11" y="11" width="1" height="4"/>
93
+ </g>
94
+
95
+ <g id="body-js">
96
+ <g class="breathe-anim">
97
+ <!-- Torso -->
98
+ <rect x="2" y="6" width="11" height="7" fill="#DE886D"/>
99
+
100
+ <!-- Left Arm — still then shake -->
101
+ <g class="arm-alert">
102
+ <rect x="-1.5" y="9" width="4.5" height="2" fill="#DE886D"/>
103
+ </g>
104
+
105
+ <!-- Right Arm -->
106
+ <rect x="13" y="9" width="2" height="2" fill="#DE886D"/>
107
+
108
+ <!-- Phase 1: Normal rect eyes (look left at exclamation, then blink away) -->
109
+ <g class="eyes-rect" fill="#000000">
110
+ <rect x="4" y="8" width="1" height="2"/>
111
+ <rect x="10" y="8" width="1" height="2"/>
112
+ </g>
113
+
114
+ <!-- Phase 2: >< squint eyes (appear after blink) -->
115
+ <g class="eyes-xmark" fill="none" stroke="#000000" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round">
116
+ <polyline points="4,8 5.5,9 4,10"/>
117
+ <polyline points="11,8 9.5,9 11,10"/>
118
+ </g>
119
+ </g>
120
+ </g>
121
+
122
+ </g>
123
+
124
+ <!-- Exclamation mark (outside rotation = stays vertical) -->
125
+ <g class="alert-pop" fill="#FF3D00">
126
+ <rect x="-8" y="5" width="2" height="4"/>
127
+ <rect x="-8" y="10" width="2" height="2"/>
128
+ </g>
129
+ </svg>
@@ -0,0 +1,76 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="-15 -25 45 45" width="500" height="500">
2
+ <defs>
3
+ <style>
4
+ .body-hunch {
5
+ transform-origin: 7.5px 15px;
6
+ animation: hunch-walk 2s infinite alternate ease-in-out;
7
+ }
8
+ .leg-1 { animation: sneak-1 0.5s infinite linear; transform-origin: top center; transform-box: fill-box; }
9
+ .leg-2 { animation: sneak-2 0.5s infinite linear; transform-origin: top center; transform-box: fill-box; }
10
+ .shadow-sneak {
11
+ transform-origin: 7.5px 15.5px;
12
+ animation: shadow-shift 2s infinite alternate ease-in-out;
13
+ }
14
+
15
+ /* Sneaking forward and backward */
16
+ @keyframes hunch-walk {
17
+ 0% { transform: translate(-2px, 1px) rotate(2deg); }
18
+ 100% { transform: translate(3px, 1px) rotate(2deg); }
19
+ }
20
+ @keyframes shadow-shift {
21
+ 0% { transform: translateX(-2px) scale(0.9); opacity: 0.4; }
22
+ 100% { transform: translateX(3px) scale(0.9); opacity: 0.4; }
23
+ }
24
+
25
+ /* Fast tiptoe / sneak leg movement */
26
+ @keyframes sneak-1 {
27
+ 0%, 100% { transform: rotate(0deg) scaleY(1); }
28
+ 50% { transform: rotate(-25deg) scaleY(0.7); }
29
+ }
30
+ @keyframes sneak-2 {
31
+ 0%, 100% { transform: rotate(-25deg) scaleY(0.7); }
32
+ 50% { transform: rotate(0deg) scaleY(1); }
33
+ }
34
+
35
+ /* Eyes: look right (toward destination), occasionally glance back and blink */
36
+ .eyes-crabwalk {
37
+ transform-origin: 7.5px 9px;
38
+ animation: crab-eyes 5s infinite ease-in-out;
39
+ }
40
+ @keyframes crab-eyes {
41
+ 0%, 55% { transform: translateX(2px) scaleY(1); }
42
+ 62% { transform: translateX(0) scaleY(1); }
43
+ 66% { transform: translateX(0) scaleY(0.1); }
44
+ 70% { transform: translateX(0) scaleY(1); }
45
+ 75% { transform: translateX(0) scaleY(0.1); }
46
+ 80%, 85% { transform: translateX(0) scaleY(1); }
47
+ 92%, 100% { transform: translateX(2px) scaleY(1); }
48
+ }
49
+ </style>
50
+ </defs>
51
+
52
+ <rect id="ground-shadow" class="shadow-sneak" x="3" y="15" width="9" height="1" fill="#000000" opacity="0.5"/>
53
+
54
+ <g class="body-hunch">
55
+ <g id="legs" fill="#DE886D">
56
+ <rect id="outer-left-leg" class="leg-1" x="3" y="13" width="1" height="2"/>
57
+ <rect id="inner-left-leg" class="leg-2" x="5" y="13" width="1" height="2"/>
58
+ <rect id="inner-right-leg" class="leg-1" x="9" y="13" width="1" height="2"/>
59
+ <rect id="outer-right-leg" class="leg-2" x="11" y="13" width="1" height="2"/>
60
+ </g>
61
+
62
+ <g id="body-color-group" fill="#DE886D">
63
+ <rect id="torso" x="2" y="6" width="11" height="7"/>
64
+ <!-- Left arm (normal pose) -->
65
+ <rect id="left-arm" x="0" y="9" width="2" height="2"/>
66
+ <!-- Right arm (normal pose, no magnifying glass) -->
67
+ <rect id="right-arm" x="13" y="9" width="2" height="2"/>
68
+ </g>
69
+
70
+ <!-- Eyes: look right, occasionally glance back + blink -->
71
+ <g class="eyes-crabwalk" fill="#000000">
72
+ <rect x="4" y="8" width="1" height="2"/>
73
+ <rect x="10" y="8" width="1" height="2"/>
74
+ </g>
75
+ </g>
76
+ </svg>
@@ -0,0 +1,65 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" viewBox="-15 -25 45 45"
2
+ shape-rendering="crispEdges">
3
+ <style>
4
+ #body-js {
5
+ animation: bodyEnter 3.2s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
6
+ }
7
+
8
+ #left-arm {
9
+ transform-origin: 2px 9px;
10
+ animation: armEnterSleep 3.2s ease-in-out 1 forwards;
11
+ }
12
+
13
+ /* Eyes stay closed — wide dashes like sleeping pose */
14
+
15
+ @keyframes bodyEnter {
16
+ 0% {
17
+ transform: translate(25px, 0px);
18
+ }
19
+ 18% {
20
+ transform: translate(-3px, -0.8px);
21
+ }
22
+ 24% {
23
+ transform: translate(1.4px, 0.4px);
24
+ }
25
+ 30%,
26
+ 100% {
27
+ transform: translate(0px, 0px);
28
+ }
29
+ }
30
+
31
+ /* Arm extends out gently, no waving */
32
+ @keyframes armEnterSleep {
33
+ 0%,
34
+ 30% {
35
+ transform: scaleX(0.05) rotate(0deg);
36
+ }
37
+ 50% {
38
+ transform: scaleX(1) rotate(0deg);
39
+ }
40
+ 100% {
41
+ transform: scaleX(1) rotate(0deg);
42
+ }
43
+ }
44
+ </style>
45
+ <g id="body-js">
46
+ <g transform="rotate(-12, 7.5, 15)">
47
+ <rect id="left-arm" x="-1.5" y="9" width="4.5" height="2" fill="#DE886D"/>
48
+
49
+ <rect x="2" y="6" width="11" height="7" fill="#DE886D"/>
50
+ <rect x="13" y="9" width="2" height="2" fill="#DE886D"/>
51
+
52
+ <g id="eyes-js" fill="#000000">
53
+ <rect x="3.5" y="8.8" width="2" height="0.4"/>
54
+ <rect x="9.5" y="8.8" width="2" height="0.4"/>
55
+ </g>
56
+
57
+ <g fill="#DE886D">
58
+ <rect x="3" y="11" width="1" height="4"/>
59
+ <rect x="5" y="11" width="1" height="4"/>
60
+ <rect x="9" y="11" width="1" height="4"/>
61
+ <rect x="11" y="11" width="1" height="4"/>
62
+ </g>
63
+ </g>
64
+ </g>
65
+ </svg>
@@ -0,0 +1,115 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" viewBox="-15 -25 45 45"
2
+ shape-rendering="crispEdges">
3
+ <style>
4
+ #body-js {
5
+ animation: bodyEnter 3.2s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
6
+ }
7
+
8
+ #left-arm {
9
+ transform-origin: 2px 9px;
10
+ animation: armEnterWave 3.2s ease-in-out 1 forwards;
11
+ }
12
+
13
+ #eyes-js {
14
+ transform-origin: 7.5px 9px;
15
+ animation: eyesEnter 3.2s ease-in-out 1 forwards;
16
+ }
17
+
18
+ @keyframes bodyEnter {
19
+ 0% {
20
+ transform: translate(25px, 0px);
21
+ }
22
+ 18% {
23
+ transform: translate(-3px, -0.8px);
24
+ }
25
+ 24% {
26
+ transform: translate(1.4px, 0.4px);
27
+ }
28
+ 30% {
29
+ transform: translate(0px, 0px);
30
+ }
31
+ 65% {
32
+ transform: translate(0px, 0px);
33
+ }
34
+ 76% {
35
+ transform: translate(0.5px, 0.2px);
36
+ }
37
+ 88%,
38
+ 100% {
39
+ transform: translate(0px, 0px);
40
+ }
41
+ }
42
+
43
+ @keyframes armEnterWave {
44
+ 0%,
45
+ 30% {
46
+ transform: scaleX(0.05) rotate(0deg);
47
+ }
48
+ 38% {
49
+ transform: scaleX(1.18) rotate(-8deg);
50
+ }
51
+ 43% {
52
+ transform: scaleX(0.96) rotate(6deg);
53
+ }
54
+ 48% {
55
+ transform: scaleX(1) rotate(-14deg);
56
+ }
57
+ 53% {
58
+ transform: scaleX(1) rotate(16deg);
59
+ }
60
+ 58% {
61
+ transform: scaleX(1) rotate(-12deg);
62
+ }
63
+ 63% {
64
+ transform: scaleX(1) rotate(9deg);
65
+ }
66
+ 70%,
67
+ 100% {
68
+ transform: scaleX(1) rotate(0deg);
69
+ }
70
+ }
71
+
72
+ @keyframes eyesEnter {
73
+ 0%,
74
+ 65% {
75
+ transform: translateX(-1px) scaleY(1);
76
+ }
77
+ 74% {
78
+ transform: translateX(-0.6px) scaleY(1);
79
+ }
80
+ 80% {
81
+ transform: translateX(-0.1px) scaleY(1);
82
+ }
83
+ 84% {
84
+ transform: translateX(0px) scaleY(0.1);
85
+ }
86
+ 88% {
87
+ transform: translateX(0px) scaleY(1.08);
88
+ }
89
+ 92%,
90
+ 100% {
91
+ transform: translateX(0px) scaleY(1);
92
+ }
93
+ }
94
+ </style>
95
+ <g id="body-js">
96
+ <g transform="rotate(-12, 7.5, 15)">
97
+ <rect id="left-arm" x="-1.5" y="9" width="4.5" height="2" fill="#DE886D"/>
98
+
99
+ <rect x="2" y="6" width="11" height="7" fill="#DE886D"/>
100
+ <rect x="13" y="9" width="2" height="2" fill="#DE886D"/>
101
+
102
+ <g id="eyes-js" fill="#000000">
103
+ <rect x="4" y="8" width="1" height="2"/>
104
+ <rect x="10" y="8" width="1" height="2"/>
105
+ </g>
106
+
107
+ <g fill="#DE886D">
108
+ <rect x="3" y="11" width="1" height="4"/>
109
+ <rect x="5" y="11" width="1" height="4"/>
110
+ <rect x="9" y="11" width="1" height="4"/>
111
+ <rect x="11" y="11" width="1" height="4"/>
112
+ </g>
113
+ </g>
114
+ </g>
115
+ </svg>