foliko 1.0.83 → 1.0.85
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.
- package/.agent/.shared/ui-ux-pro-max/data/charts.csv +26 -0
- package/.agent/.shared/ui-ux-pro-max/data/colors.csv +97 -0
- package/.agent/.shared/ui-ux-pro-max/data/icons.csv +101 -0
- package/.agent/.shared/ui-ux-pro-max/data/landing.csv +31 -0
- package/.agent/.shared/ui-ux-pro-max/data/products.csv +97 -0
- package/.agent/.shared/ui-ux-pro-max/data/prompts.csv +24 -0
- package/.agent/.shared/ui-ux-pro-max/data/react-performance.csv +45 -0
- package/.agent/.shared/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
- package/.agent/.shared/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
- package/.agent/.shared/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
- package/.agent/.shared/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
- package/.agent/.shared/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
- package/.agent/.shared/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
- package/.agent/.shared/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
- package/.agent/.shared/ui-ux-pro-max/data/stacks/react.csv +54 -0
- package/.agent/.shared/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
- package/.agent/.shared/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
- package/.agent/.shared/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
- package/.agent/.shared/ui-ux-pro-max/data/stacks/vue.csv +50 -0
- package/.agent/.shared/ui-ux-pro-max/data/styles.csv +59 -0
- package/.agent/.shared/ui-ux-pro-max/data/typography.csv +58 -0
- package/.agent/.shared/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
- package/.agent/.shared/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
- package/.agent/.shared/ui-ux-pro-max/data/web-interface.csv +31 -0
- package/.agent/.shared/ui-ux-pro-max/scripts/__pycache__/core.cpython-313.pyc +0 -0
- package/.agent/.shared/ui-ux-pro-max/scripts/__pycache__/design_system.cpython-313.pyc +0 -0
- package/.agent/.shared/ui-ux-pro-max/scripts/core.py +258 -0
- package/.agent/.shared/ui-ux-pro-max/scripts/design_system.py +1067 -0
- package/.agent/.shared/ui-ux-pro-max/scripts/search.py +106 -0
- package/.agent/ARCHITECTURE.md +288 -0
- package/.agent/agents/ambient-agent.md +57 -0
- package/.agent/agents/debugger.md +55 -0
- package/.agent/agents/email-assistant.md +49 -0
- package/.agent/agents/file-manager.md +42 -0
- package/.agent/agents/python-developer.md +60 -0
- package/.agent/agents/scheduler.md +59 -0
- package/.agent/agents/web-developer.md +45 -0
- package/.agent/data/default.json +355 -6
- package/.agent/data/plugins-state.json +185 -146
- package/.agent/data/puppeteer-sessions/undefined.json +6 -0
- package/.agent/mcp_config.json +0 -1
- package/.agent/mcp_config_updated.json +12 -0
- package/.agent/plugins/puppeteer-plugin/README.md +147 -0
- package/.agent/plugins/puppeteer-plugin/index.js +1418 -0
- package/.agent/plugins/puppeteer-plugin/package.json +9 -0
- package/.agent/plugins.json +5 -14
- package/.agent/rules/GEMINI.md +273 -0
- package/.agent/rules/allow-rule.md +77 -0
- package/.agent/rules/log-rule.md +83 -0
- package/.agent/rules/security-rule.md +93 -0
- package/.agent/scripts/auto_preview.py +148 -0
- package/.agent/scripts/checklist.py +217 -0
- package/.agent/scripts/session_manager.py +120 -0
- package/.agent/scripts/verify_all.py +327 -0
- package/.agent/skills/api-patterns/SKILL.md +81 -0
- package/.agent/skills/api-patterns/api-style.md +42 -0
- package/.agent/skills/api-patterns/auth.md +24 -0
- package/.agent/skills/api-patterns/documentation.md +26 -0
- package/.agent/skills/api-patterns/graphql.md +41 -0
- package/.agent/skills/api-patterns/rate-limiting.md +31 -0
- package/.agent/skills/api-patterns/response.md +37 -0
- package/.agent/skills/api-patterns/rest.md +40 -0
- package/.agent/skills/api-patterns/scripts/api_validator.py +211 -0
- package/.agent/skills/api-patterns/security-testing.md +122 -0
- package/.agent/skills/api-patterns/trpc.md +41 -0
- package/.agent/skills/api-patterns/versioning.md +22 -0
- package/.agent/skills/app-builder/SKILL.md +75 -0
- package/.agent/skills/app-builder/agent-coordination.md +71 -0
- package/.agent/skills/app-builder/feature-building.md +53 -0
- package/.agent/skills/app-builder/project-detection.md +34 -0
- package/.agent/skills/app-builder/scaffolding.md +118 -0
- package/.agent/skills/app-builder/tech-stack.md +40 -0
- package/.agent/skills/app-builder/templates/SKILL.md +39 -0
- package/.agent/skills/app-builder/templates/astro-static/TEMPLATE.md +76 -0
- package/.agent/skills/app-builder/templates/chrome-extension/TEMPLATE.md +92 -0
- package/.agent/skills/app-builder/templates/cli-tool/TEMPLATE.md +88 -0
- package/.agent/skills/app-builder/templates/electron-desktop/TEMPLATE.md +88 -0
- package/.agent/skills/app-builder/templates/express-api/TEMPLATE.md +83 -0
- package/.agent/skills/app-builder/templates/flutter-app/TEMPLATE.md +90 -0
- package/.agent/skills/app-builder/templates/monorepo-turborepo/TEMPLATE.md +90 -0
- package/.agent/skills/app-builder/templates/nextjs-fullstack/TEMPLATE.md +122 -0
- package/.agent/skills/app-builder/templates/nextjs-saas/TEMPLATE.md +122 -0
- package/.agent/skills/app-builder/templates/nextjs-static/TEMPLATE.md +169 -0
- package/.agent/skills/app-builder/templates/nuxt-app/TEMPLATE.md +134 -0
- package/.agent/skills/app-builder/templates/python-fastapi/TEMPLATE.md +83 -0
- package/.agent/skills/app-builder/templates/react-native-app/TEMPLATE.md +119 -0
- package/.agent/skills/architecture/SKILL.md +55 -0
- package/.agent/skills/architecture/context-discovery.md +43 -0
- package/.agent/skills/architecture/examples.md +94 -0
- package/.agent/skills/architecture/pattern-selection.md +68 -0
- package/.agent/skills/architecture/patterns-reference.md +50 -0
- package/.agent/skills/architecture/trade-off-analysis.md +77 -0
- package/.agent/skills/clean-code/SKILL.md +201 -0
- package/.agent/skills/doc.md +177 -0
- package/.agent/skills/frontend-design/SKILL.md +418 -0
- package/.agent/skills/frontend-design/animation-guide.md +331 -0
- package/.agent/skills/frontend-design/color-system.md +311 -0
- package/.agent/skills/frontend-design/decision-trees.md +418 -0
- package/.agent/skills/frontend-design/motion-graphics.md +306 -0
- package/.agent/skills/frontend-design/scripts/accessibility_checker.py +183 -0
- package/.agent/skills/frontend-design/scripts/ux_audit.py +722 -0
- package/.agent/skills/frontend-design/typography-system.md +345 -0
- package/.agent/skills/frontend-design/ux-psychology.md +1116 -0
- package/.agent/skills/frontend-design/visual-effects.md +383 -0
- package/.agent/skills/i18n-localization/SKILL.md +154 -0
- package/.agent/skills/i18n-localization/scripts/i18n_checker.py +241 -0
- package/.agent/skills/mcp-builder/SKILL.md +176 -0
- package/.agent/skills/web-design-guidelines/SKILL.md +57 -0
- package/.agent/workflows/brainstorm.md +113 -0
- package/.agent/workflows/create.md +59 -0
- package/.agent/workflows/debug.md +103 -0
- package/.agent/workflows/deploy.md +176 -0
- package/.agent/workflows/enhance.md +63 -0
- package/.agent/workflows/orchestrate.md +237 -0
- package/.agent/workflows/plan.md +89 -0
- package/.agent/workflows/preview.md +81 -0
- package/.agent/workflows/simple-test.md +42 -0
- package/.agent/workflows/status.md +86 -0
- package/.agent/workflows/structured-orchestrate.md +180 -0
- package/.agent/workflows/test.md +144 -0
- package/.agent/workflows/ui-ux-pro-max.md +296 -0
- package/.claude/settings.local.json +178 -171
- package/.env.example +56 -56
- package/cli/src/commands/plugin.js +482 -0
- package/cli/src/index.js +7 -0
- package/cli/src/utils/plugin-config.js +50 -0
- package/package.json +1 -1
- package/plugins/audit-plugin.js +2 -0
- package/plugins/extension-executor-plugin.js +38 -0
- package/plugins/plugin-manager-plugin.js +402 -0
- package/plugins/session-plugin.js +3 -3
- package/skills/find-skills/AGENTS.md +162 -162
- package/skills/find-skills/SKILL.md +133 -133
- package/skills/foliko-dev/SKILL.md +563 -563
- package/skills/plugin-guide/SKILL.md +139 -0
- package/skills/python-plugin-dev/SKILL.md +238 -238
- package/src/core/agent-chat.js +103 -45
- package/src/core/framework.js +42 -1
- package/src/executors/mcp-executor.js +33 -0
- package/src/utils/index.js +153 -0
- package/xhs_auth.json +268 -0
- package/.agent/agents/code-assistant.json +0 -14
- package/.agent/agents/email-assistant.json +0 -14
- package/.agent/agents/file-assistant.json +0 -15
- package/.agent/agents/system-assistant.json +0 -15
- package/.agent/agents/web-assistant.json +0 -12
- package/.agent/data/ambient/goals.json +0 -50
- package/.agent/data/ambient/memories.json +0 -7
- package/.agent/data/scheduler/tasks.json +0 -1
- package/.agent/package.json +0 -8
- package/.agent/plugins/__pycache__/test_plugin.cpython-312.pyc +0 -0
- package/.agent/plugins/system-info/index.js +0 -387
- package/.agent/plugins/system-info/package.json +0 -4
- package/.agent/plugins/system-info/test.js +0 -40
- package/.agent/plugins/test_plugin.py +0 -304
- package/.agent/python-scripts/test_sample.py +0 -24
- package/.agent/skills/sysinfo/SKILL.md +0 -38
- package/.agent/skills/sysinfo/system-info.sh +0 -130
- package/.agent/skills/workflow/SKILL.md +0 -324
- package/.agent/workflows/email-digest.json +0 -50
- package/.agent/workflows/file-backup.json +0 -21
- package/.agent/workflows/get-ip-notify.json +0 -32
- package/.agent/workflows/news-aggregator.json +0 -93
- package/.agent/workflows/news-dashboard-v2.json +0 -94
- package/.agent/workflows/notification-batch.json +0 -32
- package/reports/system-health-report-20260401.md +0 -79
- package/test/tool-registry-validation.test.js +0 -218
- package/test_report.md +0 -70
package/xhs_auth.json
ADDED
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
{
|
|
2
|
+
"cookies": [
|
|
3
|
+
{
|
|
4
|
+
"name": "acw_tc",
|
|
5
|
+
"value": "0a00d14717751490065528394ed858662952fc5298b65cfc3a4e16081ac435",
|
|
6
|
+
"domain": "www.xiaohongshu.com",
|
|
7
|
+
"path": "/",
|
|
8
|
+
"expires": 1775150806.234156,
|
|
9
|
+
"size": 68,
|
|
10
|
+
"httpOnly": true,
|
|
11
|
+
"secure": false,
|
|
12
|
+
"session": false
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "abRequestId",
|
|
16
|
+
"value": "4dd9f636-4a60-5319-9493-234b8085c598",
|
|
17
|
+
"domain": ".xiaohongshu.com",
|
|
18
|
+
"path": "/",
|
|
19
|
+
"expires": 1806685006.234375,
|
|
20
|
+
"size": 47,
|
|
21
|
+
"httpOnly": false,
|
|
22
|
+
"secure": false,
|
|
23
|
+
"session": false
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "NID",
|
|
27
|
+
"value": "530=A07kPErhy24j44FiOcXLNeCGM4weHc3fDpkEPEvI9IBB9Z9UjMp3IFBoE7qppdeodDQqZO2i611eB78FM2XEgJU3Eo5pL0tvQbazeUTa7ouzTUVocRPQFThfcChDzrAtXCHuJh4RparJIPzOeAT4F8kUkI003wzf4KPRxwTsP_VfgOTeGVx8zq2AAoiF1nRecmTNNXJYpQKLziab",
|
|
28
|
+
"domain": ".google.com",
|
|
29
|
+
"path": "/",
|
|
30
|
+
"expires": 1790960208.014964,
|
|
31
|
+
"size": 215,
|
|
32
|
+
"httpOnly": true,
|
|
33
|
+
"secure": true,
|
|
34
|
+
"session": false,
|
|
35
|
+
"sameSite": "None"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "ets",
|
|
39
|
+
"value": "1775149009017",
|
|
40
|
+
"domain": ".xiaohongshu.com",
|
|
41
|
+
"path": "/",
|
|
42
|
+
"expires": 1777741009.01754,
|
|
43
|
+
"size": 16,
|
|
44
|
+
"httpOnly": false,
|
|
45
|
+
"secure": false,
|
|
46
|
+
"session": false
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"name": "webBuild",
|
|
50
|
+
"value": "6.3.0",
|
|
51
|
+
"domain": ".xiaohongshu.com",
|
|
52
|
+
"path": "/",
|
|
53
|
+
"expires": -1.0,
|
|
54
|
+
"size": 13,
|
|
55
|
+
"httpOnly": false,
|
|
56
|
+
"secure": false,
|
|
57
|
+
"session": true
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "xsecappid",
|
|
61
|
+
"value": "xhs-pc-web",
|
|
62
|
+
"domain": ".xiaohongshu.com",
|
|
63
|
+
"path": "/",
|
|
64
|
+
"expires": 1806685009.0,
|
|
65
|
+
"size": 19,
|
|
66
|
+
"httpOnly": false,
|
|
67
|
+
"secure": false,
|
|
68
|
+
"session": false
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "loadts",
|
|
72
|
+
"value": "1775149009099",
|
|
73
|
+
"domain": ".xiaohongshu.com",
|
|
74
|
+
"path": "/",
|
|
75
|
+
"expires": 1806685009.0,
|
|
76
|
+
"size": 19,
|
|
77
|
+
"httpOnly": false,
|
|
78
|
+
"secure": false,
|
|
79
|
+
"session": false
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "a1",
|
|
83
|
+
"value": "19d4f2048d5rmfj0n6v9pho3jfm2dteoxg4r35g9450000263580",
|
|
84
|
+
"domain": ".xiaohongshu.com",
|
|
85
|
+
"path": "/",
|
|
86
|
+
"expires": 1806685009.0,
|
|
87
|
+
"size": 54,
|
|
88
|
+
"httpOnly": false,
|
|
89
|
+
"secure": false,
|
|
90
|
+
"session": false
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"name": "webId",
|
|
94
|
+
"value": "ed2f717ce19a62874610b27d8b682834",
|
|
95
|
+
"domain": ".xiaohongshu.com",
|
|
96
|
+
"path": "/",
|
|
97
|
+
"expires": 1806685009.0,
|
|
98
|
+
"size": 37,
|
|
99
|
+
"httpOnly": false,
|
|
100
|
+
"secure": false,
|
|
101
|
+
"session": false
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "acw_tc",
|
|
105
|
+
"value": "0a8f07a117751490097244729ef14af085c62b14dbe97c99d7c3e02cf9ba86",
|
|
106
|
+
"domain": "edith.xiaohongshu.com",
|
|
107
|
+
"path": "/",
|
|
108
|
+
"expires": 1775150809.411417,
|
|
109
|
+
"size": 68,
|
|
110
|
+
"httpOnly": true,
|
|
111
|
+
"secure": false,
|
|
112
|
+
"session": false
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "acw_tc",
|
|
116
|
+
"value": "0ad6210217751490104103222efceafdb373b0276071819a10e986f477aa9b",
|
|
117
|
+
"domain": "so.xiaohongshu.com",
|
|
118
|
+
"path": "/",
|
|
119
|
+
"expires": 1775150810.088766,
|
|
120
|
+
"size": 68,
|
|
121
|
+
"httpOnly": true,
|
|
122
|
+
"secure": false,
|
|
123
|
+
"session": false
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"name": "websectiga",
|
|
127
|
+
"value": "6169c1e84f393779a5f7fe7303038f3b47a78e47be716e7bec57ccce17d45f99",
|
|
128
|
+
"domain": ".xiaohongshu.com",
|
|
129
|
+
"path": "/",
|
|
130
|
+
"expires": 1775408212.0,
|
|
131
|
+
"size": 74,
|
|
132
|
+
"httpOnly": false,
|
|
133
|
+
"secure": false,
|
|
134
|
+
"session": false
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"name": "sec_poison_id",
|
|
138
|
+
"value": "cdf303f8-9adc-40a5-90b5-38bab85b89dc",
|
|
139
|
+
"domain": ".xiaohongshu.com",
|
|
140
|
+
"path": "/",
|
|
141
|
+
"expires": 1775149617.0,
|
|
142
|
+
"size": 49,
|
|
143
|
+
"httpOnly": false,
|
|
144
|
+
"secure": false,
|
|
145
|
+
"session": false
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"name": "gid",
|
|
149
|
+
"value": "yjf4iJ8KKfCfyjf4iJ84Yk2kf2F6iV8IKhjU4j4xlqVi6F28Jf9dlq888JKq2Y88jid4jd22",
|
|
150
|
+
"domain": ".xiaohongshu.com",
|
|
151
|
+
"path": "/",
|
|
152
|
+
"expires": 1809709016.500839,
|
|
153
|
+
"size": 75,
|
|
154
|
+
"httpOnly": false,
|
|
155
|
+
"secure": false,
|
|
156
|
+
"session": false
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"name": "web_session",
|
|
160
|
+
"value": "0400698dd5958b0d0b026fe8fb3b4b4ec94d46",
|
|
161
|
+
"domain": ".xiaohongshu.com",
|
|
162
|
+
"path": "/",
|
|
163
|
+
"expires": 1806685062.423065,
|
|
164
|
+
"size": 49,
|
|
165
|
+
"httpOnly": true,
|
|
166
|
+
"secure": true,
|
|
167
|
+
"session": false
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"name": "id_token",
|
|
171
|
+
"value": "VjEAAGHK8JE9AXyfj4Tjlk++qREEPCv0R1ia++5EH4uesAsIKjwbIgN7YstpVxN8BEINFgQRxFab0L84pZJFR90xhqoOKAKikcsq49LWQLnVk9XvwMdqwsFjOmu2lHvnm5xBWKKb",
|
|
172
|
+
"domain": ".xiaohongshu.com",
|
|
173
|
+
"path": "/",
|
|
174
|
+
"expires": 1806685062.423295,
|
|
175
|
+
"size": 144,
|
|
176
|
+
"httpOnly": true,
|
|
177
|
+
"secure": true,
|
|
178
|
+
"session": false
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"name": "unread",
|
|
182
|
+
"value": "{%22ub%22:%2269cd871c0000000020038c9d%22%2C%22ue%22:%2269ca710d0000000022024918%22%2C%22uc%22:16}",
|
|
183
|
+
"domain": ".xiaohongshu.com",
|
|
184
|
+
"path": "/",
|
|
185
|
+
"expires": -1.0,
|
|
186
|
+
"size": 103,
|
|
187
|
+
"httpOnly": false,
|
|
188
|
+
"secure": false,
|
|
189
|
+
"session": true
|
|
190
|
+
}
|
|
191
|
+
],
|
|
192
|
+
"origins": [
|
|
193
|
+
{
|
|
194
|
+
"origin": "https://www.xiaohongshu.com",
|
|
195
|
+
"localStorage": [
|
|
196
|
+
{
|
|
197
|
+
"name": "MF_STATISTICS",
|
|
198
|
+
"value": "{\"timestamp\":1775149006681,\"visitTimes\":1,\"readFeedCount\":0}"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"name": "redmoji",
|
|
202
|
+
"value": "{\"version\":5,\"redmojiTabs\":[{\"emoji\":[{\"imageName\":\"[微笑R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/9366d16631e3e208689cbc95eefb7cfb0901001e.png\"},{\"imageName\":\"[害羞R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/219fe9d7e40b14dd7a6712203143bb1f9972bc5c.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/b862c8f94da375f55805a97c152efeeb5099c149.png\",\"imageName\":\"[失望R]\"},{\"imageName\":\"[汗颜R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/87e23e577662f3268362518f7f4e90e30b4ea284.png\"},{\"imageName\":\"[哇R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/e0771182c12362d41f70356f714d84dccc4d07bc.png\"},{\"imageName\":\"[喝奶茶R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/364ad5d3e0d5c3b1aa101c9243f488be97d9e8d7.png\"},{\"imageName\":\"[自拍R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d4fe00be555964ddf8301e256cd906b9032679a5.png\"},{\"imageName\":\"[偷笑R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d1a34cf8aeac526d36890d3e8f727192a6808ecf.png\"},{\"imageName\":\"[飞吻R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/81cedd016ad9d8bef38b2cd0c1e725454df53598.png\"},{\"imageName\":\"[石化R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/a61db6b1917b6c5c1e8f30bbeea9118a7bdbbe74.png\"},{\"imageName\":\"[笑哭R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/ca75b2fc85b0a3e171fe5df1cbf90efdcd3ba571.png\"},{\"imageName\":\"[赞R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/1b81c5ec3f7006f6b8baf7c006773f5f9d1ab6d7.png\"},{\"imageName\":\"[蹲后续H]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/a633dcf8d48c500ae11532d0583c529b89286c66.webp\"},{\"imageName\":\"[暗中观察R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/0a9cd643452c7b717b9735a23c550295baa69f02.png\"},{\"imageName\":\"[买爆R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/c402c10ac31e2e024393cfa7ca61d014579d9191.png\"},{\"imageName\":\"[大笑R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/aed28089f6578522cd490f636955efe6dd27da38.png\"},{\"imageName\":\"[色色R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/913a9e2c42916a338b9fa20cf780ae435f51acac.png\"},{\"imageName\":\"[生气R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/91515ae9718d8cce4f8de909683011b538d35327.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/14b005f7afd5f7c88620478b610bf1de90c4ceab.png\",\"imageName\":\"[哭惹R]\"},{\"imageName\":\"[萌萌哒R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/c255f0ae809f8045561a80737b6aec25139f7607.png\"},{\"imageName\":\"[斜眼R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/6062be312a922da7998f99fb773e06cea0a640df.png\"},{\"imageName\":\"[可怜R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/36338a7a39e27341b34e845e28561378e9ad1ede.png\"},{\"imageName\":\"[鄙视R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/0dbbe487e5157d9fb720df7e59fe45a7927af647.png\"},{\"imageName\":\"[皱眉R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/fd82d69014a4a50397e20fc6b23ae8dba1c74998.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/13619bff18deffe1d2dcc4be0a6ba7ee0394926b.png\",\"imageName\":\"[抓狂R]\"},{\"imageName\":\"[捂脸R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/83278234fdeb5c36682334f6eb756d243ee62201.png\"},{\"imageName\":\"[派对R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/7a6287c7f65fabdc15fa8f06b2696cccc21e86f2.png\"},{\"imageName\":\"[吧唧R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/238271771c806047fc928b6ba49a6d8e7a741e5e.png\"},{\"imageName\":\"[惊恐R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/114d21cd3f1b4a1591cc997ddd5976bb0cec8f4c.png\"},{\"imageName\":\"[抠鼻R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/5fd4922d00a004260912247dad6ca7149d8a1f75.png\"},{\"imageName\":\"[再见R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/c34602650951342f09ca6e00d6f4c4ac57208a07.png\"},{\"imageName\":\"[叹气R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/5ce63c6024defb2f6334aa153fd0fd238a683779.png\"},{\"imageName\":\"[睡觉R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d98472a962e744dd238f2b4f5dba2665dcb8360b.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/b02bf85f97acbd6be1749148e163b36920655f92.png\",\"imageName\":\"[得意R]\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/a38d15b09910f65756d521f1f46031c44694214a.png\",\"imageName\":\"[吃瓜R]\"},{\"imageName\":\"[扶墙R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/6eb56b590b5c70e4559cf5bd93056a6e74ffc474.png\"},{\"imageName\":\"[黑薯问号R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/e4835a534cddad71286ad4e8f0514fded208360d.png\"},{\"imageName\":\"[黄金薯R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/08b0e51ac813a53bebeb0b9391df5094d4777951.png\"},{\"imageName\":\"[吐舌头H]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/e4533cbaa5829c6ffd92992414290987e39ba6be.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d968308cfaf571fbc75cbcd7ec0cefe9150a390a.png\",\"imageName\":\"[扯脸H]\"},{\"imageName\":\"[doge]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/b7c0498189d449e8f22946be494d6bad48eda5ab.png\"}],\"name\":\"小红薯表情\"},{\"emoji\":[{\"imageName\":\"[天幕R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/7642341e830f97c45f3261b9adee8b5a7336499d.png\"},{\"imageName\":\"[卡式炉R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/783dc5c9039dab7920f60b69a0fe57e77302ddcd.png\"},{\"imageName\":\"[折叠椅R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/359bd197c452258888f4f3f224d40d140b1247c3.png\"},{\"imageName\":\"[营地车R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/8d3e5b8a06eda42229adf550d930bb8e4aaae9b7.png\"},{\"imageName\":\"[露营灯R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/093dd4338b46ca52074d060c1c75ce04697af6d4.png\"},{\"imageName\":\"[露营R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/bc046729a7265fa579fb9c26289f9e9fcaa83beb.png\"},{\"imageName\":\"[渔夫帽R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/8a513afd61b9dd09c9e138e882e92ff9cae14649.png\"},{\"imageName\":\"[登山鞋R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/fe65c446020944558c142d288e095e5484cba90f.png\"},{\"imageName\":\"[背包R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/d9f0f58518cc9a1d73caf97ff5b0ecb4fd5a741b.png\"},{\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/2fda1b2115dccf04ac5143210b8d83f352f73e2c.png\",\"imageName\":\"[马甲R]\"},{\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/ffc5912b221563c0a7f3fd751b87e27f7dd5318a.png\",\"imageName\":\"[骑行服R]\"},{\"imageName\":\"[手套R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/9572fe03b56aef9ec8a1e79dac64d4225a2e380a.png\"},{\"imageName\":\"[头盔R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/2a5fe9cfad77cfcf632c1cb6123e68250afcbff2.png\"},{\"imageName\":\"[风镜R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/0e7fb713c7fca2e381a40f590a46a262780df631.png\"},{\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/61708b29215d3fcb6790d25c061d47775823d379.png\",\"imageName\":\"[公路车R]\"},{\"imageName\":\"[折叠车R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/57f9b02650b95f08122c0462927cce3df847e246.png\"},{\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/6e92309ecab879d8bb1b0b83536f025bdc1e21e8.png\",\"imageName\":\"[飞盘R]\"},{\"imageName\":\"[冲浪板R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/012c014ef465c0bda4a3af39a713629aa3508da3.png\"},{\"imageName\":\"[双翘滑板R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/bf2be5bd7fe7b7aac5bc06c44ea2daf456750674.png\"},{\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/5a9b44f49a27f75224f6cbd3ef95ec65a579f907.png\",\"imageName\":\"[陆冲板R]\"},{\"imageName\":\"[长板R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/87d0aeb63f769b04eb119bd2f0fc9128a645747a.png\"},{\"imageName\":\"[种草R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/035c8044c53dbf7df2cf28d6ec35eb325567121b.png\"},{\"imageName\":\"[拔草R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/c9e8d66eabeaa823b91e4caeb62088a1521dbe63.png\"},{\"imageName\":\"[点赞R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/391438d25580a034707791b5f165c27f8899025a.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/ae143d3423b5af03ae6b63dc197872ec6a59a6ff.png\",\"imageName\":\"[向右R]\"},{\"imageName\":\"[合十R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/fbdbb2547a281e18ee9759e3d658d417871996c0.png\"},{\"imageName\":\"[okR]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/65bce6a5e07c5adecd8a9660f833266c4cffa0e6.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/ab059229949e73619961c5ee1f7ee10d2318c170.png\",\"imageName\":\"[加油R]\"},{\"imageName\":\"[握手R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d0d01ced40255c3855c80fc641b432758c041dea.png\"},{\"imageName\":\"[鼓掌R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/59bbbe6fc2879f6ef42e63b3264096a9f4d403c7.png\"},{\"imageName\":\"[弱R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/ab298d8a629530f3bb98b94718acb6f20b2cbc66.png\"},{\"imageName\":\"[耶R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/b7d3bb36a6422f92f2447f2b300d3aff0b7baa21.png\"},{\"imageName\":\"[抱拳R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/0ae972c2da43acd565596fb0234c558f84b0a390.png\"},{\"imageName\":\"[勾引R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/0b219f805826238b85eb114bb1781bf5d5808cbf.png\"},{\"imageName\":\"[拳头R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/20bb351c9538975e1a3b8ec4aa5821ad9d6f2215.png\"},{\"imageName\":\"[拥抱R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/efc3b7a9e6df5d2be0233e203adf0d1110623441.png\"},{\"imageName\":\"[举手R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/84320b00dda66dcb661b5fb5d75ded2de4754b0a.png\"},{\"imageName\":\"[猪头R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/e7eae4ef972a29818a56d6e00f85304152a58430.png\"},{\"imageName\":\"[老虎R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/f6d52ce0dd3bfa963a5a624e9da8417d02c9f752.png\"},{\"imageName\":\"[集美R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/124387198d229cb5aa2be5dd74db4af820e85dcd/xhs_theme_xy_emotion_redmoji_jimei.png\"},{\"imageName\":\"[仙女R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/3a0d4108b32e366f7438d448a8157e9e4247e5b3/xhs_theme_xy_emotion_redmoji_xiannv.png\"},{\"imageName\":\"[红书R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/182d040c46942e0ba1c8eeb66bf7047dad751e72.png\"},{\"imageName\":\"[开箱R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/200ada9354c5c974164bffa594ad4e33614404aa.png\"},{\"imageName\":\"[探店R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/b9dfa6d9e5cb81b2f0bdd77e14b1841608c03224.png\"},{\"imageName\":\"[ootdR]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/595650f7fb0ee6a475c6bdbe4d6a707524ed9c90.png\"},{\"imageName\":\"[同款R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/1a573c081b4aad6814c23a33d51c86a69670b90f.png\"},{\"imageName\":\"[打卡R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/89214fad0c95300ab58a96037fddafa0415d387e.png\"},{\"imageName\":\"[飞机R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/9ac94463031f15e8c73db4a457a35ac473822a00.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d87604b3ab8b56e98023ae582deea40230595fcc.png\",\"imageName\":\"[拍立得R]\"},{\"imageName\":\"[薯券R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/080302ac0fd8f847753853c50cd0cf00709c4419.png\"},{\"imageName\":\"[优惠券R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/68ef659532ab68296aa14f89e29829da4d9aed5a.png\"},{\"imageName\":\"[购物车R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/3598e9b2a43cd1ca6ec4b4dc7670541c7bdda2fa.png\"},{\"imageName\":\"[kissR]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/071e9c9d731ce31f5ece64babda5f3d4d9207496.png\"},{\"imageName\":\"[礼物R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/39e0ed44f24bd2d211161a5086705ab1d4439c41.png\"},{\"imageName\":\"[生日蛋糕R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/259be907840312a7013dae79ff6f99012dabe24b.png\"},{\"imageName\":\"[私信R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/2062069d03c2927cc823ad0f65c4db645e968058.png\"},{\"imageName\":\"[请文明R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d070fee56c6069ac246ffb0cba1eaf3609df9680.png\"},{\"imageName\":\"[请友好R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/5c4d2abd9058163b496e054d7448d91c212282d3.png\"},{\"imageName\":\"[氛围感R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/acad9319c8ad606833872094506ebbfffd321344.png\"},{\"imageName\":\"[清单R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/20eab20210e0958b0da33174b7f4606eca92b92b.png\"},{\"imageName\":\"[电影R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/3eec7a10e8cf68f44dbcb930ecb05f2927f8ae1e.png\"},{\"imageName\":\"[学生党R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/04984e414827730e5689900e1e45d3fd0c50a6d6.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/5862336b380dc7bd68f068e19b8ef613b7913c3d.png\",\"imageName\":\"[彩虹R]\"},{\"imageName\":\"[爆炸R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/58ed0344253015243334e5b1fd6b642ee3e0346c.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/403d2c9ede2e95cb8b82dd348da4b2aac0bf9d62.png\",\"imageName\":\"[炸弹R]\"},{\"imageName\":\"[火R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/51f1d8e7c5b4182c05510f3aeadecee19e968b42.png\"},{\"imageName\":\"[啤酒R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/9e71d86b28f1ba48b58291b53bf6156810fb9377.png\"},{\"imageName\":\"[咖啡R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/b3b5dbb3a564a68115a4343fe536a20e34d3c953.png\"},{\"imageName\":\"[钱袋R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/026f431acf58d6d2a19963a68dbf70c53359eada.png\"},{\"imageName\":\"[流汗R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/4fc14b31e947deec15d0a1b3f96ae57214ab2bb2.png\"},{\"imageName\":\"[发R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/8a61d522a0a19e51280b780af24d2cf972195d24.png\"},{\"imageName\":\"[红包R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d708e5bb8b0d5e1a0628a3e2324bfde507736f1c.png\"},{\"imageName\":\"[福R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/7d0da07b800a4b999e06ce66759336be05f3f3a0.png\"},{\"imageName\":\"[鞭炮R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/3415b947b0b66b01c4fabdec2b729c34a5f8a0b2.png\"},{\"imageName\":\"[庆祝R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/51eab29d66493ab028e9a446c6c10fa606e1e412.png\"},{\"imageName\":\"[烟花R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/64071df3b7c40545149a1d26fcfdf0e704c96c2c.png\"},{\"imageName\":\"[气球R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/a57b1e6f8e48ac2a4171afe620df545dd760fd08.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/f3c0659718c26f36ca3d57466c9cc0a9120e52f8.png\",\"imageName\":\"[看R]\"},{\"imageName\":\"[新月R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/a1493a29d6a4b63caa73a2a2af4706186dbccd6b.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/bf117e6b7458e3bec281b34d9ed767aed94cdc40.png\",\"imageName\":\"[满月R]\"},{\"imageName\":\"[大便R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/82e3b1495613b1c173c8a5d4efcd9cc32ecfb6b9.png\"},{\"imageName\":\"[太阳R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/fe0276430f14dad6b791528ba3acd0c541998a28.png\"},{\"imageName\":\"[晚安R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/937f70403d7a0b65d0b42fcd67e0efd8618c3d05.png\"},{\"imageName\":\"[星R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/b98fbe9d7371faf3ff43342f166297cf6446531d.png\"},{\"imageName\":\"[玫瑰R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/abc0a1cd8434c5348e89e887cf8a4f93f352558c.png\"},{\"imageName\":\"[凋谢R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/5f58213013b6d97a190fc42b1e2aed344e746ba3.png\"},{\"imageName\":\"[郁金香R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/ee78f61c5c20e159e97bee4612bc2089c358f33b.png\"},{\"imageName\":\"[樱花R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/ef50e51cb37c948b56dc856fed12e5643597c1dc.png\"},{\"imageName\":\"[海豚R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/b1a4ebde71f735db6c2f45dfce4e23126fc28c32.png\"},{\"imageName\":\"[放大镜R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/257c99be653d2ccc3f25b7426aa1e5a269e85421.png\"},{\"imageName\":\"[刀R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/a4d581be51146d70d81679d603d579da040e7183.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/9ad29f04bb78c2551f3e5d57425618a78455b20e.png\",\"imageName\":\"[辣椒R]\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/c15e57a392c37774bfa119af17cfc4f1c5b9ec70.png\",\"imageName\":\"[黄瓜R]\"},{\"imageName\":\"[葡萄R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/5978958778577a9baa16b93cc0979d9d70291919.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d29f5474efafbe34835214c37c42f6159fbba789.png\",\"imageName\":\"[草莓R]\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/4d64f9e067d75a9722f46d8f858d7afbb43908ed.png\",\"imageName\":\"[桃子R]\"},{\"imageName\":\"[红薯R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/bfb8a6309b8b42af2cf7c8ce20d1d4fb9a64b512.png\"},{\"imageName\":\"[栗子R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/3160dda81f09abd55fc26312a53f5945cd975834.png\"},{\"imageName\":\"[红色心形R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d6125900d5de3969a1bb075e23d361c4bd78b0eb.png\"},{\"imageName\":\"[黄色心形R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/5421d25d7566afe3fbd5a91c9e704ea2afa4a639.png\"},{\"imageName\":\"[绿色心形R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d384e2e381f4c96257b29ccc054d70d82af786f7.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/284e12f435d3c09056dd264384adbdbb82833c15.png\",\"imageName\":\"[蓝色心形R]\"},{\"imageName\":\"[紫色心形R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/ca6e9a1c66a32bd7f2c5c49f1b51507c8f16c902.png\"},{\"imageName\":\"[爱心R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/fc7cec55e0e1a0ffd8668d89ea2921c23c63539e.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/58b58fa86c33cf358b83aef0e5c9a89298cbc1e4.png\",\"imageName\":\"[两颗心R]\"},{\"imageName\":\"[浅肤色R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/691d1d3544521be6fa0ffbf58d6a9743d5303a16.png\"},{\"imageName\":\"[中浅肤色R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/573a26c25f11bacad6a6e266833fdf21fe893e17.png\"},{\"imageName\":\"[中等肤色R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/e24ca827231348b427b5b3e0b0c6675f9eced27b.png\"},{\"imageName\":\"[中深肤色R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/414cc459c8d22b93b79e97b76b0f4a906557c564.png\"},{\"imageName\":\"[有R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/6c4ed27842a186f3a89a65f74cc9b3984e12e5e6.png\"},{\"imageName\":\"[可R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/1901af71ad54c620e4c2d895fb6a2af28cd83ca5.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/682af0d49dcf04c340abff12b81558621850b900.png\",\"imageName\":\"[蹲R]\"},{\"imageName\":\"[零R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/51f0fc07ddd7d44751b41d53f102114fd7255881.png\"},{\"imageName\":\"[一R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/1f6bad36efca7e77f20e5c0339c44564cf0a6fa0.png\"},{\"imageName\":\"[二R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/bdb8a0f60e918177ee4de71aebced4a68658f545.png\"},{\"imageName\":\"[三R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/f41145ef41eaf9f8d42e208cace1f2a0f9ed602b.png\"},{\"imageName\":\"[四R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/9e3c5dc71bee8d45b9be5ffe63554abf86512fe1.png\"},{\"imageName\":\"[五R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d8c24a51ffbe618a13fc19748e0d4e7cf80dba78.png\"},{\"imageName\":\"[六R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/55962ff13b3cb8cc3388d5acd8627d8aa40b8fb8.png\"},{\"imageName\":\"[七R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/4d19093baf638f86987d9ccb9f530060b573d5a0.png\"},{\"imageName\":\"[八R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d245ba7b1bdc7f73928e282194acc654b10a3bbb.png\"},{\"imageName\":\"[九R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/bdd4d21ae715040c7afb737317797266ef14f727.png\"},{\"imageName\":\"[加一R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d5f1bbb77a939d7521ebe80439b39a77f05310ff.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/6775ba4a34325edc384a932c5aa9ff4b7be059d4.png\",\"imageName\":\"[满R]\"},{\"imageName\":\"[禁R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/f168e3aa080bff213e57b5b8367b4fb161e99ce8.png\"}],\"name\":\"Emoji 表情\"}],\"redmojiMap\":{\"[微笑R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/9366d16631e3e208689cbc95eefb7cfb0901001e.png\",\"[害羞R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/219fe9d7e40b14dd7a6712203143bb1f9972bc5c.png\",\"[失望R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/b862c8f94da375f55805a97c152efeeb5099c149.png\",\"[汗颜R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/87e23e577662f3268362518f7f4e90e30b4ea284.png\",\"[哇R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/e0771182c12362d41f70356f714d84dccc4d07bc.png\",\"[喝奶茶R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/364ad5d3e0d5c3b1aa101c9243f488be97d9e8d7.png\",\"[自拍R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d4fe00be555964ddf8301e256cd906b9032679a5.png\",\"[偷笑R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d1a34cf8aeac526d36890d3e8f727192a6808ecf.png\",\"[飞吻R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/81cedd016ad9d8bef38b2cd0c1e725454df53598.png\",\"[石化R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/a61db6b1917b6c5c1e8f30bbeea9118a7bdbbe74.png\",\"[笑哭R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/ca75b2fc85b0a3e171fe5df1cbf90efdcd3ba571.png\",\"[赞R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/1b81c5ec3f7006f6b8baf7c006773f5f9d1ab6d7.png\",\"[蹲后续H]\":\"https://picasso-static.xiaohongshu.com/fe-platform/a633dcf8d48c500ae11532d0583c529b89286c66.webp\",\"[暗中观察R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/0a9cd643452c7b717b9735a23c550295baa69f02.png\",\"[买爆R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/c402c10ac31e2e024393cfa7ca61d014579d9191.png\",\"[大笑R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/aed28089f6578522cd490f636955efe6dd27da38.png\",\"[色色R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/913a9e2c42916a338b9fa20cf780ae435f51acac.png\",\"[生气R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/91515ae9718d8cce4f8de909683011b538d35327.png\",\"[哭惹R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/14b005f7afd5f7c88620478b610bf1de90c4ceab.png\",\"[萌萌哒R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/c255f0ae809f8045561a80737b6aec25139f7607.png\",\"[斜眼R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/6062be312a922da7998f99fb773e06cea0a640df.png\",\"[可怜R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/36338a7a39e27341b34e845e28561378e9ad1ede.png\",\"[鄙视R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/0dbbe487e5157d9fb720df7e59fe45a7927af647.png\",\"[皱眉R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/fd82d69014a4a50397e20fc6b23ae8dba1c74998.png\",\"[抓狂R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/13619bff18deffe1d2dcc4be0a6ba7ee0394926b.png\",\"[捂脸R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/83278234fdeb5c36682334f6eb756d243ee62201.png\",\"[派对R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/7a6287c7f65fabdc15fa8f06b2696cccc21e86f2.png\",\"[吧唧R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/238271771c806047fc928b6ba49a6d8e7a741e5e.png\",\"[惊恐R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/114d21cd3f1b4a1591cc997ddd5976bb0cec8f4c.png\",\"[抠鼻R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/5fd4922d00a004260912247dad6ca7149d8a1f75.png\",\"[再见R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/c34602650951342f09ca6e00d6f4c4ac57208a07.png\",\"[叹气R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/5ce63c6024defb2f6334aa153fd0fd238a683779.png\",\"[睡觉R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d98472a962e744dd238f2b4f5dba2665dcb8360b.png\",\"[得意R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/b02bf85f97acbd6be1749148e163b36920655f92.png\",\"[吃瓜R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/a38d15b09910f65756d521f1f46031c44694214a.png\",\"[扶墙R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/6eb56b590b5c70e4559cf5bd93056a6e74ffc474.png\",\"[黑薯问号R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/e4835a534cddad71286ad4e8f0514fded208360d.png\",\"[黄金薯R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/08b0e51ac813a53bebeb0b9391df5094d4777951.png\",\"[吐舌头H]\":\"https://picasso-static.xiaohongshu.com/fe-platform/e4533cbaa5829c6ffd92992414290987e39ba6be.png\",\"[扯脸H]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d968308cfaf571fbc75cbcd7ec0cefe9150a390a.png\",\"[doge]\":\"https://picasso-static.xiaohongshu.com/fe-platform/b7c0498189d449e8f22946be494d6bad48eda5ab.png\",\"[天幕R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/7642341e830f97c45f3261b9adee8b5a7336499d.png\",\"[卡式炉R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/783dc5c9039dab7920f60b69a0fe57e77302ddcd.png\",\"[折叠椅R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/359bd197c452258888f4f3f224d40d140b1247c3.png\",\"[营地车R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/8d3e5b8a06eda42229adf550d930bb8e4aaae9b7.png\",\"[露营灯R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/093dd4338b46ca52074d060c1c75ce04697af6d4.png\",\"[露营R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/bc046729a7265fa579fb9c26289f9e9fcaa83beb.png\",\"[渔夫帽R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/8a513afd61b9dd09c9e138e882e92ff9cae14649.png\",\"[登山鞋R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/fe65c446020944558c142d288e095e5484cba90f.png\",\"[背包R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/d9f0f58518cc9a1d73caf97ff5b0ecb4fd5a741b.png\",\"[马甲R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/2fda1b2115dccf04ac5143210b8d83f352f73e2c.png\",\"[骑行服R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/ffc5912b221563c0a7f3fd751b87e27f7dd5318a.png\",\"[手套R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/9572fe03b56aef9ec8a1e79dac64d4225a2e380a.png\",\"[头盔R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/2a5fe9cfad77cfcf632c1cb6123e68250afcbff2.png\",\"[风镜R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/0e7fb713c7fca2e381a40f590a46a262780df631.png\",\"[公路车R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/61708b29215d3fcb6790d25c061d47775823d379.png\",\"[折叠车R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/57f9b02650b95f08122c0462927cce3df847e246.png\",\"[飞盘R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/6e92309ecab879d8bb1b0b83536f025bdc1e21e8.png\",\"[冲浪板R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/012c014ef465c0bda4a3af39a713629aa3508da3.png\",\"[双翘滑板R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/bf2be5bd7fe7b7aac5bc06c44ea2daf456750674.png\",\"[陆冲板R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/5a9b44f49a27f75224f6cbd3ef95ec65a579f907.png\",\"[长板R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/87d0aeb63f769b04eb119bd2f0fc9128a645747a.png\",\"[种草R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/035c8044c53dbf7df2cf28d6ec35eb325567121b.png\",\"[拔草R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/c9e8d66eabeaa823b91e4caeb62088a1521dbe63.png\",\"[点赞R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/391438d25580a034707791b5f165c27f8899025a.png\",\"[向右R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/ae143d3423b5af03ae6b63dc197872ec6a59a6ff.png\",\"[合十R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/fbdbb2547a281e18ee9759e3d658d417871996c0.png\",\"[okR]\":\"https://picasso-static.xiaohongshu.com/fe-platform/65bce6a5e07c5adecd8a9660f833266c4cffa0e6.png\",\"[加油R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/ab059229949e73619961c5ee1f7ee10d2318c170.png\",\"[握手R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d0d01ced40255c3855c80fc641b432758c041dea.png\",\"[鼓掌R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/59bbbe6fc2879f6ef42e63b3264096a9f4d403c7.png\",\"[弱R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/ab298d8a629530f3bb98b94718acb6f20b2cbc66.png\",\"[耶R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/b7d3bb36a6422f92f2447f2b300d3aff0b7baa21.png\",\"[抱拳R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/0ae972c2da43acd565596fb0234c558f84b0a390.png\",\"[勾引R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/0b219f805826238b85eb114bb1781bf5d5808cbf.png\",\"[拳头R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/20bb351c9538975e1a3b8ec4aa5821ad9d6f2215.png\",\"[拥抱R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/efc3b7a9e6df5d2be0233e203adf0d1110623441.png\",\"[举手R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/84320b00dda66dcb661b5fb5d75ded2de4754b0a.png\",\"[猪头R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/e7eae4ef972a29818a56d6e00f85304152a58430.png\",\"[老虎R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/f6d52ce0dd3bfa963a5a624e9da8417d02c9f752.png\",\"[集美R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/124387198d229cb5aa2be5dd74db4af820e85dcd/xhs_theme_xy_emotion_redmoji_jimei.png\",\"[仙女R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/3a0d4108b32e366f7438d448a8157e9e4247e5b3/xhs_theme_xy_emotion_redmoji_xiannv.png\",\"[红书R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/182d040c46942e0ba1c8eeb66bf7047dad751e72.png\",\"[开箱R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/200ada9354c5c974164bffa594ad4e33614404aa.png\",\"[探店R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/b9dfa6d9e5cb81b2f0bdd77e14b1841608c03224.png\",\"[ootdR]\":\"https://picasso-static.xiaohongshu.com/fe-platform/595650f7fb0ee6a475c6bdbe4d6a707524ed9c90.png\",\"[同款R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/1a573c081b4aad6814c23a33d51c86a69670b90f.png\",\"[打卡R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/89214fad0c95300ab58a96037fddafa0415d387e.png\",\"[飞机R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/9ac94463031f15e8c73db4a457a35ac473822a00.png\",\"[拍立得R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d87604b3ab8b56e98023ae582deea40230595fcc.png\",\"[薯券R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/080302ac0fd8f847753853c50cd0cf00709c4419.png\",\"[优惠券R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/68ef659532ab68296aa14f89e29829da4d9aed5a.png\",\"[购物车R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/3598e9b2a43cd1ca6ec4b4dc7670541c7bdda2fa.png\",\"[kissR]\":\"https://picasso-static.xiaohongshu.com/fe-platform/071e9c9d731ce31f5ece64babda5f3d4d9207496.png\",\"[礼物R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/39e0ed44f24bd2d211161a5086705ab1d4439c41.png\",\"[生日蛋糕R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/259be907840312a7013dae79ff6f99012dabe24b.png\",\"[私信R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/2062069d03c2927cc823ad0f65c4db645e968058.png\",\"[请文明R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d070fee56c6069ac246ffb0cba1eaf3609df9680.png\",\"[请友好R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/5c4d2abd9058163b496e054d7448d91c212282d3.png\",\"[氛围感R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/acad9319c8ad606833872094506ebbfffd321344.png\",\"[清单R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/20eab20210e0958b0da33174b7f4606eca92b92b.png\",\"[电影R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/3eec7a10e8cf68f44dbcb930ecb05f2927f8ae1e.png\",\"[学生党R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/04984e414827730e5689900e1e45d3fd0c50a6d6.png\",\"[彩虹R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/5862336b380dc7bd68f068e19b8ef613b7913c3d.png\",\"[爆炸R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/58ed0344253015243334e5b1fd6b642ee3e0346c.png\",\"[炸弹R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/403d2c9ede2e95cb8b82dd348da4b2aac0bf9d62.png\",\"[火R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/51f1d8e7c5b4182c05510f3aeadecee19e968b42.png\",\"[啤酒R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/9e71d86b28f1ba48b58291b53bf6156810fb9377.png\",\"[咖啡R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/b3b5dbb3a564a68115a4343fe536a20e34d3c953.png\",\"[钱袋R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/026f431acf58d6d2a19963a68dbf70c53359eada.png\",\"[流汗R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/4fc14b31e947deec15d0a1b3f96ae57214ab2bb2.png\",\"[发R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/8a61d522a0a19e51280b780af24d2cf972195d24.png\",\"[红包R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d708e5bb8b0d5e1a0628a3e2324bfde507736f1c.png\",\"[福R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/7d0da07b800a4b999e06ce66759336be05f3f3a0.png\",\"[鞭炮R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/3415b947b0b66b01c4fabdec2b729c34a5f8a0b2.png\",\"[庆祝R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/51eab29d66493ab028e9a446c6c10fa606e1e412.png\",\"[烟花R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/64071df3b7c40545149a1d26fcfdf0e704c96c2c.png\",\"[气球R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/a57b1e6f8e48ac2a4171afe620df545dd760fd08.png\",\"[看R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/f3c0659718c26f36ca3d57466c9cc0a9120e52f8.png\",\"[新月R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/a1493a29d6a4b63caa73a2a2af4706186dbccd6b.png\",\"[满月R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/bf117e6b7458e3bec281b34d9ed767aed94cdc40.png\",\"[大便R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/82e3b1495613b1c173c8a5d4efcd9cc32ecfb6b9.png\",\"[太阳R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/fe0276430f14dad6b791528ba3acd0c541998a28.png\",\"[晚安R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/937f70403d7a0b65d0b42fcd67e0efd8618c3d05.png\",\"[星R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/b98fbe9d7371faf3ff43342f166297cf6446531d.png\",\"[玫瑰R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/abc0a1cd8434c5348e89e887cf8a4f93f352558c.png\",\"[凋谢R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/5f58213013b6d97a190fc42b1e2aed344e746ba3.png\",\"[郁金香R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/ee78f61c5c20e159e97bee4612bc2089c358f33b.png\",\"[樱花R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/ef50e51cb37c948b56dc856fed12e5643597c1dc.png\",\"[海豚R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/b1a4ebde71f735db6c2f45dfce4e23126fc28c32.png\",\"[放大镜R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/257c99be653d2ccc3f25b7426aa1e5a269e85421.png\",\"[刀R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/a4d581be51146d70d81679d603d579da040e7183.png\",\"[辣椒R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/9ad29f04bb78c2551f3e5d57425618a78455b20e.png\",\"[黄瓜R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/c15e57a392c37774bfa119af17cfc4f1c5b9ec70.png\",\"[葡萄R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/5978958778577a9baa16b93cc0979d9d70291919.png\",\"[草莓R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d29f5474efafbe34835214c37c42f6159fbba789.png\",\"[桃子R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/4d64f9e067d75a9722f46d8f858d7afbb43908ed.png\",\"[红薯R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/bfb8a6309b8b42af2cf7c8ce20d1d4fb9a64b512.png\",\"[栗子R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/3160dda81f09abd55fc26312a53f5945cd975834.png\",\"[红色心形R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d6125900d5de3969a1bb075e23d361c4bd78b0eb.png\",\"[黄色心形R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/5421d25d7566afe3fbd5a91c9e704ea2afa4a639.png\",\"[绿色心形R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d384e2e381f4c96257b29ccc054d70d82af786f7.png\",\"[蓝色心形R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/284e12f435d3c09056dd264384adbdbb82833c15.png\",\"[紫色心形R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/ca6e9a1c66a32bd7f2c5c49f1b51507c8f16c902.png\",\"[爱心R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/fc7cec55e0e1a0ffd8668d89ea2921c23c63539e.png\",\"[两颗心R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/58b58fa86c33cf358b83aef0e5c9a89298cbc1e4.png\",\"[浅肤色R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/691d1d3544521be6fa0ffbf58d6a9743d5303a16.png\",\"[中浅肤色R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/573a26c25f11bacad6a6e266833fdf21fe893e17.png\",\"[中等肤色R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/e24ca827231348b427b5b3e0b0c6675f9eced27b.png\",\"[中深肤色R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/414cc459c8d22b93b79e97b76b0f4a906557c564.png\",\"[有R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/6c4ed27842a186f3a89a65f74cc9b3984e12e5e6.png\",\"[可R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/1901af71ad54c620e4c2d895fb6a2af28cd83ca5.png\",\"[蹲R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/682af0d49dcf04c340abff12b81558621850b900.png\",\"[零R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/51f0fc07ddd7d44751b41d53f102114fd7255881.png\",\"[一R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/1f6bad36efca7e77f20e5c0339c44564cf0a6fa0.png\",\"[二R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/bdb8a0f60e918177ee4de71aebced4a68658f545.png\",\"[三R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/f41145ef41eaf9f8d42e208cace1f2a0f9ed602b.png\",\"[四R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/9e3c5dc71bee8d45b9be5ffe63554abf86512fe1.png\",\"[五R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d8c24a51ffbe618a13fc19748e0d4e7cf80dba78.png\",\"[六R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/55962ff13b3cb8cc3388d5acd8627d8aa40b8fb8.png\",\"[七R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/4d19093baf638f86987d9ccb9f530060b573d5a0.png\",\"[八R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d245ba7b1bdc7f73928e282194acc654b10a3bbb.png\",\"[九R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/bdd4d21ae715040c7afb737317797266ef14f727.png\",\"[加一R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d5f1bbb77a939d7521ebe80439b39a77f05310ff.png\",\"[满R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/6775ba4a34325edc384a932c5aa9ff4b7be059d4.png\",\"[禁R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/f168e3aa080bff213e57b5b8367b4fb161e99ce8.png\"}}"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"name": "XHS_STRATEGY_BOX",
|
|
206
|
+
"value": "{\"firstVisit-\":false}"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"name": "dsllt",
|
|
210
|
+
"value": "1775149012716"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"name": "HOME_FEED_CURSOR_SCORE",
|
|
214
|
+
"value": "1.7751490629770017E9"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"name": "NEW_XHS_ABTEST_REPORT_KEY",
|
|
218
|
+
"value": "{\"ed2f717ce19a62874610b27d8b68283469ce9fd2000000003402aeea4dd9f636-4a60-5319-9493-234b8085c598\":\"2026-04-03\"}"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"name": "guide-ExploreMoreGuide",
|
|
222
|
+
"value": "{\"neverShowAgainFlag\":false,\"hasShownFlag\":false,\"lastShowTime\":1775149006681}"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"name": "guide-ImageNoteGuide",
|
|
226
|
+
"value": "{\"neverShowAgainFlag\":false,\"hasShownFlag\":false,\"lastShowTime\":1775149006681}"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"name": "b1b1",
|
|
230
|
+
"value": "1"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"name": "p1",
|
|
234
|
+
"value": "1"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"name": "last_tiga_update_time",
|
|
238
|
+
"value": "1775149012779"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"name": "UNREAD_NOTE_INFO",
|
|
242
|
+
"value": "{\"cachedFeeds\":[],\"unreadBeginNoteId\":\"69cd871c0000000020038c9d\",\"unreadEndNoteId\":\"69ca710d0000000022024918\",\"unreadNoteCount\":16,\"timestamp\":0}"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"name": "sdt_source_storage_key",
|
|
246
|
+
"value": "{\"commonPatch\":[\"/fe_api/burdock/v2/note/post\",\"/api/sns/web/v1/comment/post\",\"/api/sns/web/v1/note/like\",\"/api/sns/web/v1/note/collect\",\"/api/sns/web/v1/user/follow\",\"/api/sns/web/v1/feed\",\"/api/sns/web/v1/login/activate\",\"/api/sns/web/v1/note/metrics_report\",\"/api/redcaptcha\",\"/api/store/jpd/main\",\"/phoenix/api/strategy/getAppStrategy\",\"/web_api/sns/v2/note\"],\"signUrl\":\"https://fe-static.xhscdn.com/as/v1/f218/a15/public/04b29480233f4def5c875875b6bdc3b1.js\",\"xhsTokenUrl\":\"https://fe-static.xhscdn.com/as/v1/3e44/public/bf7d4e32677698655a5cadc581fd09b3.js\",\"url\":\"https://fe-static.xhscdn.com/as/v2/fp/a2a27d37e76c8a23531accea3b0956b7.js\",\"reportUrl\":\"/api/sec/v1/shield/webprofile\",\"desVersion\":\"2\",\"validate\":true,\"signVersion\":\"1\",\"extraInfo\":{\"dsUrl\":\"https://fe-static.xhscdn.com/as/v2/ds/6545c70e73d7e06896b3c574a70b5438.js\"}}"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"name": "xhs-pc-theme",
|
|
250
|
+
"value": "system"
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"name": "b1",
|
|
254
|
+
"value": "I38rHdgsjopgIvesdVwgIC+oIELmBZ5e3VwXLgFTIxS3bqwErFeexd0ekncAzMFYnqthIhJeSnMDKutRI3KsYorWHPtGrbi0P9WfIi/eWc6eYqtyQApPI37ekmR6QL+5Ii6sdnoeSfqYHqwl2qt5B0DoIx+PGDi/sVtkIx0sxuwr4qtiIhuaIE3e3LV0I3VTIC7e0utl2ADmsLveDSKsSPw5IEvsiVtJOqw8BuwfPpdeTFWOIx4TIiu6ZPwrPut5IvlaLbgs3qtxIxes1VwHIkumIkIyejgsY/WTge7eSqte/D7sDcpipedeYrDtIC6eDVw2IENsSqtlnlSuNjVtIvoekqt3cZ7sVo4gIESyIhE2+9DUIvzy4I8OIic7ZPwAIvih4o/sDLds6PwVIC7eSd7eYeR4IEve6SGMtVwUIids3s/sxZNeiVtbcUeeYVwEIvkzzAeeduwApBOsDqweIxltIxZSouwOgVwpsr4heU/e6LveDPwFIvgs1ros1DZiIi7sjbos3grFIE0sDqwHIvmZaVtfaVwBIE7sDqwxIiNs3uw5IkvsdqtlwuwLoVtUI3zXIvVr27lk2Ive1utCIEDtIkJeYut4bYRtn/0ejgI7Ih4s2uwfJPwSI35skqwWGD5s6WAs3phwIhos3fOs3utsLuwOIv/efVwfIkgs60WoICKedo/eSutXI3Os6VwV2dTwIEPeIvJs1L7ex93ejM6sjVtzIEqEI3k6sVtoIvzVIhgekpFvwaAsfqw6IxLFguwt+SJeVjesVPtezVttIkVCICSE+ut4sVwmIk0sxb0skqw7LqwgIhF2eI=="
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"name": "xhs-pc-search-history-5ca1d6c30000000017035b54",
|
|
258
|
+
"value": "[]"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"name": "xhs_context_networkQuality",
|
|
262
|
+
"value": "GOOD"
|
|
263
|
+
}
|
|
264
|
+
],
|
|
265
|
+
"sessionStorage": []
|
|
266
|
+
}
|
|
267
|
+
]
|
|
268
|
+
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "code-assistant",
|
|
3
|
-
"description": "代码助手 - 专业的编程和代码分析助手",
|
|
4
|
-
"instructions": "你是一个专业的代码助手,精通多种编程语言和开发技术。\n\n【核心能力】\n- 代码编写、调试和优化\n- 代码审查和重构建议\n- 多种编程语言支持(Python、JavaScript、TypeScript、Java等)\n- 代码问题诊断和解决\n- 解释复杂代码逻辑\n\n【工作原则】\n- 提供清晰、规范的代码\n- 包含必要的注释说明\n- 考虑代码性能和安全性\n- 遵循最佳实践",
|
|
5
|
-
"tools": [
|
|
6
|
-
"read_file",
|
|
7
|
-
"write_file",
|
|
8
|
-
"modify_file",
|
|
9
|
-
"search_file",
|
|
10
|
-
"python-execute",
|
|
11
|
-
"execute_command",
|
|
12
|
-
"shell"
|
|
13
|
-
]
|
|
14
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "email-assistant",
|
|
3
|
-
"description": "邮件助手 - 专业的邮件管理助手",
|
|
4
|
-
"instructions": "你是一个专业的邮件助手,擅长邮件的读写、筛选和管理。\n\n【核心能力】\n- 读取和回复邮件\n- 发送新邮件(支持附件)\n- 邮件搜索和筛选\n- 邮件摘要生成\n- 批量邮件处理\n\n【工作原则】\n- 保持邮件格式规范\n- 回复内容专业得体\n- 保护隐私信息\n- 及时处理重要邮件",
|
|
5
|
-
"tools": [
|
|
6
|
-
"email_read",
|
|
7
|
-
"email_send",
|
|
8
|
-
"email_mark_read",
|
|
9
|
-
"email_delete",
|
|
10
|
-
"email_unread_count",
|
|
11
|
-
"email_configure",
|
|
12
|
-
"notification_send"
|
|
13
|
-
]
|
|
14
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "file-assistant",
|
|
3
|
-
"description": "文件助手 - 专业的文件管理和操作助手",
|
|
4
|
-
"instructions": "你是一个专业的文件助手,擅长文件操作、目录管理、文件搜索和内容编辑。\n\n【核心能力】\n- 读取、创建、编辑、删除文件和目录\n- 搜索文件内容和文件名称\n- 批量文件操作\n- 文件内容分析和提取\n\n【工作原则】\n- 执行操作前确认路径正确\n- 危险操作(如删除)需要谨慎\n- 保持文件编码一致性\n- 重要文件操作前可创建备份",
|
|
5
|
-
"tools": [
|
|
6
|
-
"read_file",
|
|
7
|
-
"write_file",
|
|
8
|
-
"delete_file",
|
|
9
|
-
"modify_file",
|
|
10
|
-
"search_file",
|
|
11
|
-
"read_directory",
|
|
12
|
-
"create_directory",
|
|
13
|
-
"execute_command"
|
|
14
|
-
]
|
|
15
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "system-assistant",
|
|
3
|
-
"description": "系统助手 - 专业的系统信息监控和管理助手",
|
|
4
|
-
"instructions": "你是一个专业的系统助手,精通系统信息监控和基础管理。\n\n【核心能力】\n- CPU、内存、磁盘使用情况监控\n- 网络接口信息查询\n- 系统运行状态分析\n- 性能问题诊断\n- 定时监控和报告\n\n【工作原则】\n- 提供清晰的数据展示\n- 发现异常及时提醒\n- 给出合理的优化建议\n- 保护系统安全",
|
|
5
|
-
"tools": [
|
|
6
|
-
"get_basic_info",
|
|
7
|
-
"get_cpu_info",
|
|
8
|
-
"get_memory_info",
|
|
9
|
-
"get_disk_info",
|
|
10
|
-
"get_network_info",
|
|
11
|
-
"get_full_system_info",
|
|
12
|
-
"notification_send",
|
|
13
|
-
"schedule_task"
|
|
14
|
-
]
|
|
15
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "web-assistant",
|
|
3
|
-
"description": "网络助手 - 专业的网络数据获取和处理助手",
|
|
4
|
-
"instructions": "你是一个专业的网络助手,精通网络数据获取和处理。\n\n【核心能力】\n- HTTP请求发送(GET/POST/PUT/DELETE等)\n- 网页内容抓取和解析\n- API调用和数据处理\n- JSON/XML数据解析\n- 网络问题诊断\n\n【工作原则】\n- 遵守网站使用协议\n- 合理控制请求频率\n- 数据处理规范\n- 异常情况妥善处理",
|
|
5
|
-
"tools": [
|
|
6
|
-
"fetch",
|
|
7
|
-
"web_request",
|
|
8
|
-
"execute_command",
|
|
9
|
-
"python-execute",
|
|
10
|
-
"notification_send"
|
|
11
|
-
]
|
|
12
|
-
}
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "041f34d6-8ada-4a0f-932d-147f8476a830",
|
|
4
|
-
"title": "邮箱监控与自动回复",
|
|
5
|
-
"description": "监控邮箱,收到新邮件时自动分析内容并回复,无需用户确认",
|
|
6
|
-
"priority": 8,
|
|
7
|
-
"state": "active",
|
|
8
|
-
"actions": [
|
|
9
|
-
{
|
|
10
|
-
"type": "tool",
|
|
11
|
-
"name": "email_auto_reply",
|
|
12
|
-
"args": {
|
|
13
|
-
"to": "${event.to}",
|
|
14
|
-
"subject": "${event.subject}",
|
|
15
|
-
"body": "${event.text}",
|
|
16
|
-
"from": "${event.from}",
|
|
17
|
-
"messageId": "${event.messageId}"
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
],
|
|
21
|
-
"_originalActions": [
|
|
22
|
-
{
|
|
23
|
-
"type": "tool",
|
|
24
|
-
"name": "email_auto_reply",
|
|
25
|
-
"args": {
|
|
26
|
-
"to": "${event.to}",
|
|
27
|
-
"subject": "${event.subject}",
|
|
28
|
-
"body": "${event.text}",
|
|
29
|
-
"from": "${event.from}",
|
|
30
|
-
"messageId": "${event.messageId}"
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
],
|
|
34
|
-
"conditions": {
|
|
35
|
-
"events": [
|
|
36
|
-
"email:received"
|
|
37
|
-
]
|
|
38
|
-
},
|
|
39
|
-
"createdAt": "2026-03-29T18:15:42.180Z",
|
|
40
|
-
"updatedAt": "2026-03-29T19:00:39.406Z",
|
|
41
|
-
"activatedAt": "2026-03-29T18:15:44.186Z",
|
|
42
|
-
"completedAt": "2026-03-29T18:54:56.861Z",
|
|
43
|
-
"failedAt": null,
|
|
44
|
-
"attempts": 11,
|
|
45
|
-
"maxAttempts": 10,
|
|
46
|
-
"consecutiveSameActions": 0,
|
|
47
|
-
"lastActionId": null,
|
|
48
|
-
"eventsReceived": []
|
|
49
|
-
}
|
|
50
|
-
]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
[]
|
package/.agent/package.json
DELETED
|
Binary file
|