minitap-mcp 0.4.2__py3-none-any.whl → 0.5.0__py3-none-any.whl
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.
- minitap/mcp/core/agents/extract_figma_assets.py +35 -62
- minitap/mcp/tools/save_figma_assets.py +4 -6
- {minitap_mcp-0.4.2.dist-info → minitap_mcp-0.5.0.dist-info}/METADATA +112 -24
- {minitap_mcp-0.4.2.dist-info → minitap_mcp-0.5.0.dist-info}/RECORD +6 -7
- {minitap_mcp-0.4.2.dist-info → minitap_mcp-0.5.0.dist-info}/WHEEL +1 -1
- minitap/mcp/core/agents/extract_figma_assets.md +0 -64
- {minitap_mcp-0.4.2.dist-info → minitap_mcp-0.5.0.dist-info}/entry_points.txt +0 -0
|
@@ -1,15 +1,9 @@
|
|
|
1
|
-
"""Agent to extract Figma asset URLs from design context code."""
|
|
1
|
+
"""Agent to extract Figma asset URLs from design context code using regex."""
|
|
2
2
|
|
|
3
3
|
import re
|
|
4
|
-
import uuid
|
|
5
|
-
from pathlib import Path
|
|
6
4
|
|
|
7
|
-
from jinja2 import Template
|
|
8
|
-
from langchain_core.messages import BaseMessage, HumanMessage, SystemMessage
|
|
9
5
|
from pydantic import BaseModel, Field
|
|
10
6
|
|
|
11
|
-
from minitap.mcp.core.llm import get_minitap_llm
|
|
12
|
-
|
|
13
7
|
|
|
14
8
|
class FigmaAsset(BaseModel):
|
|
15
9
|
"""Represents a single Figma asset."""
|
|
@@ -27,70 +21,49 @@ class ExtractedAssets(BaseModel):
|
|
|
27
21
|
description="List of all extracted assets from the Figma design context",
|
|
28
22
|
)
|
|
29
23
|
code_implementation: str = Field(
|
|
30
|
-
description=
|
|
31
|
-
"The React/TypeScript code\n"
|
|
32
|
-
"with the local url declarations turned into const declarations"
|
|
33
|
-
)
|
|
24
|
+
description="The React/TypeScript code with imports instead of const declarations"
|
|
34
25
|
)
|
|
35
26
|
|
|
36
27
|
|
|
37
|
-
def
|
|
38
|
-
"""
|
|
39
|
-
|
|
40
|
-
Characters outside the Basic Multilingual Plane (BMP) like emoji and special symbols
|
|
41
|
-
get escaped as \\U sequences when sent to LLMs, dramatically increasing token count
|
|
42
|
-
and processing time.
|
|
28
|
+
def extract_figma_assets(design_context_code: str) -> ExtractedAssets:
|
|
29
|
+
"""Extract asset URLs from Figma design context code using regex.
|
|
43
30
|
|
|
44
31
|
Args:
|
|
45
|
-
|
|
32
|
+
design_context_code: The React/TypeScript code from get_design_context
|
|
46
33
|
|
|
47
34
|
Returns:
|
|
48
|
-
|
|
35
|
+
ExtractedAssets with list of assets and transformed code
|
|
49
36
|
"""
|
|
37
|
+
# Regex captures: (1) variable name, (2) full URL, (4) extension
|
|
38
|
+
# Supports http/https, any domain, query strings, optional semicolon
|
|
39
|
+
pattern = r'const\s+(\w+)\s*=\s*["\']((https?://[^"\']+?)\.(\w+)(?:\?[^"\']*)?)["\'];?'
|
|
40
|
+
matches = re.finditer(pattern, design_context_code)
|
|
41
|
+
|
|
42
|
+
assets = []
|
|
43
|
+
asset_lines = []
|
|
44
|
+
|
|
45
|
+
for match in matches:
|
|
46
|
+
var_name = match.group(1)
|
|
47
|
+
url = match.group(2)
|
|
48
|
+
extension = match.group(4)
|
|
49
|
+
|
|
50
|
+
assets.append(FigmaAsset(variable_name=var_name, url=url, extension=extension))
|
|
51
|
+
asset_lines.append(match.group(0))
|
|
52
|
+
|
|
53
|
+
import_statements = []
|
|
54
|
+
for asset in assets:
|
|
55
|
+
import_statements.append(
|
|
56
|
+
f"import {asset.variable_name} from './{asset.variable_name}.{asset.extension}';"
|
|
57
|
+
)
|
|
50
58
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
char = match.group(0)
|
|
55
|
-
codepoint = ord(char)
|
|
56
|
-
# Return a descriptive placeholder
|
|
57
|
-
return f"[U+{codepoint:X}]"
|
|
58
|
-
|
|
59
|
-
# Pattern matches characters with codepoints >= U+10000
|
|
60
|
-
pattern = re.compile(r"[\U00010000-\U0010FFFF]")
|
|
61
|
-
sanitized = pattern.sub(replace_high_unicode, text)
|
|
62
|
-
|
|
63
|
-
return sanitized
|
|
64
|
-
|
|
59
|
+
transformed_code = design_context_code
|
|
60
|
+
for line in asset_lines:
|
|
61
|
+
transformed_code = transformed_code.replace(line, "")
|
|
65
62
|
|
|
66
|
-
|
|
67
|
-
|
|
63
|
+
lines = transformed_code.split("\n")
|
|
64
|
+
while lines and not lines[0].strip():
|
|
65
|
+
lines.pop(0)
|
|
68
66
|
|
|
69
|
-
|
|
70
|
-
design_context_code: The React/TypeScript code from get_design_context
|
|
67
|
+
final_code = "\n".join(import_statements) + "\n\n" + "\n".join(lines)
|
|
71
68
|
|
|
72
|
-
|
|
73
|
-
List of dictionaries containing variable_name, url, and extension
|
|
74
|
-
"""
|
|
75
|
-
system_message = Template(
|
|
76
|
-
Path(__file__).parent.joinpath("extract_figma_assets.md").read_text(encoding="utf-8")
|
|
77
|
-
).render()
|
|
78
|
-
|
|
79
|
-
sanitized_code = sanitize_unicode_for_llm(design_context_code)
|
|
80
|
-
|
|
81
|
-
messages: list[BaseMessage] = [
|
|
82
|
-
SystemMessage(content=system_message),
|
|
83
|
-
HumanMessage(
|
|
84
|
-
content=f"Here is the code to analyze:\n\n```typescript\n{sanitized_code}\n```"
|
|
85
|
-
),
|
|
86
|
-
]
|
|
87
|
-
|
|
88
|
-
llm = get_minitap_llm(
|
|
89
|
-
model="openai/gpt-5",
|
|
90
|
-
temperature=0,
|
|
91
|
-
trace_id=str(uuid.uuid4()),
|
|
92
|
-
remote_tracing=True,
|
|
93
|
-
).with_structured_output(ExtractedAssets)
|
|
94
|
-
result: ExtractedAssets = await llm.ainvoke(messages) # type: ignore
|
|
95
|
-
|
|
96
|
-
return result
|
|
69
|
+
return ExtractedAssets(assets=assets, code_implementation=final_code)
|
|
@@ -41,9 +41,9 @@ logger = get_logger(__name__)
|
|
|
41
41
|
|
|
42
42
|
This tool:
|
|
43
43
|
1. Calls get_design_context from Figma MCP to get the React/TypeScript code
|
|
44
|
-
2. Extracts
|
|
44
|
+
2. Extracts asset URLs and transforms const declarations to import statements
|
|
45
45
|
3. Downloads each asset to .mobile-use/figma_assets/<node-id>/ folder
|
|
46
|
-
4. Saves the code
|
|
46
|
+
4. Saves the transformed code to .mobile-use/figma_assets/<node-id>/code_implementation.ts
|
|
47
47
|
5. Returns a list of downloaded files
|
|
48
48
|
""",
|
|
49
49
|
)
|
|
@@ -75,10 +75,8 @@ async def save_figma_assets(
|
|
|
75
75
|
# Step 1: Get design context from Figma MCP
|
|
76
76
|
design_context = await get_design_context(node_id, file_key)
|
|
77
77
|
|
|
78
|
-
# Step 2: Extract asset URLs
|
|
79
|
-
extracted_context: ExtractedAssets =
|
|
80
|
-
design_context.code_implementation
|
|
81
|
-
)
|
|
78
|
+
# Step 2: Extract asset URLs and transform code
|
|
79
|
+
extracted_context: ExtractedAssets = extract_figma_assets(design_context.code_implementation)
|
|
82
80
|
if not extracted_context.assets:
|
|
83
81
|
raise ToolError("No assets found in the Figma design context.")
|
|
84
82
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: minitap-mcp
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.0
|
|
4
4
|
Summary: Model Context Protocol server for controlling Android & iOS devices with natural language
|
|
5
5
|
Author: Pierre-Louis Favreau, Jean-Pierre Lo, Clément Guiguet
|
|
6
6
|
Requires-Dist: fastmcp>=2.12.4
|
|
@@ -84,11 +84,18 @@ minitap-mcp --server
|
|
|
84
84
|
|
|
85
85
|
CLI flags always override environment variables when both are present.
|
|
86
86
|
|
|
87
|
-
By default, the server will bind to `0.0.0.0:8000`.
|
|
87
|
+
By default, the server will bind to `0.0.0.0:8000`. You can customize the port:
|
|
88
88
|
|
|
89
89
|
```bash
|
|
90
|
+
# Using CLI argument
|
|
91
|
+
minitap-mcp --server --port 9000
|
|
92
|
+
|
|
93
|
+
# Or using environment variable
|
|
94
|
+
export MCP_SERVER_PORT="9000"
|
|
95
|
+
minitap-mcp --server
|
|
96
|
+
|
|
97
|
+
# You can also customize the host
|
|
90
98
|
export MCP_SERVER_HOST="0.0.0.0"
|
|
91
|
-
export MCP_SERVER_PORT="8000"
|
|
92
99
|
```
|
|
93
100
|
|
|
94
101
|
## IDE Integration
|
|
@@ -120,41 +127,122 @@ export MCP_SERVER_PORT="8000"
|
|
|
120
127
|
```
|
|
121
128
|
|
|
122
129
|
|
|
123
|
-
## Available Tools
|
|
130
|
+
## Available Resources & Tools
|
|
131
|
+
|
|
132
|
+
Once connected, your AI assistant can use these resources and tools:
|
|
133
|
+
|
|
134
|
+
### Resource: `data://devices`
|
|
135
|
+
|
|
136
|
+
Lists all connected mobile devices (Android and iOS).
|
|
124
137
|
|
|
125
|
-
|
|
138
|
+
**Returns:** Array of device information objects with:
|
|
126
139
|
|
|
127
|
-
|
|
128
|
-
|
|
140
|
+
- `device_id`: Device serial (Android) or UDID (iOS)
|
|
141
|
+
- `platform`: `"android"` or `"ios"`
|
|
142
|
+
- `name`: Device name
|
|
143
|
+
- `state`: Device state (`"connected"` or `"Booted"`)
|
|
144
|
+
|
|
145
|
+
### Tool: `analyze_screen`
|
|
146
|
+
|
|
147
|
+
Captures a screenshot from a mobile device and analyzes it using a vision language model.
|
|
129
148
|
|
|
130
149
|
**Parameters:**
|
|
131
|
-
- `goal` (required): High-level goal describing the action to perform
|
|
132
|
-
- `output_description` (optional): Natural language description of the desired output format. Results are returned as structured JSON (e.g., "An array with sender and subject for each email")
|
|
133
|
-
- `profile` (optional): Profile name to use (defaults to "default")
|
|
134
150
|
|
|
135
|
-
|
|
151
|
+
- `prompt` (required): Analysis prompt describing what information to extract
|
|
152
|
+
- `device_id` (optional): Specific device ID to target. If not provided, uses the first available device.
|
|
153
|
+
|
|
154
|
+
**Returns:** AI-generated analysis of the screenshot based on the prompt.
|
|
155
|
+
|
|
156
|
+
**Example:**
|
|
157
|
+
|
|
136
158
|
```
|
|
137
|
-
"
|
|
138
|
-
"Find the first 3 unread emails in Gmail"
|
|
139
|
-
"Open Google Maps and search for the nearest coffee shop"
|
|
140
|
-
"Take a screenshot and save it"
|
|
159
|
+
Prompt: "What app is currently open? List all visible UI elements."
|
|
141
160
|
```
|
|
142
161
|
|
|
143
|
-
|
|
144
|
-
|
|
162
|
+
The tool will:
|
|
163
|
+
|
|
164
|
+
1. Find the specified device (or first available)
|
|
165
|
+
2. Capture a screenshot
|
|
166
|
+
3. Analyze it with the vision model
|
|
167
|
+
4. Return the analysis
|
|
168
|
+
|
|
169
|
+
### Tool: `execute_mobile_command`
|
|
170
|
+
|
|
171
|
+
Execute natural language commands on your mobile device using the mobile-use SDK. This tool allows you to control your Android or iOS device with simple instructions.
|
|
145
172
|
|
|
146
173
|
**Parameters:**
|
|
147
|
-
|
|
148
|
-
- `
|
|
174
|
+
|
|
175
|
+
- `goal` (required): Natural language command to execute on the device
|
|
176
|
+
- `output_description` (optional): Description of the expected output format (e.g., "A JSON list of objects with sender and subject keys")
|
|
177
|
+
- `profile` (optional): Name of the profile to use for this task. Defaults to 'default'
|
|
178
|
+
|
|
179
|
+
**Returns:** Execution result with status, output, and any extracted data.
|
|
149
180
|
|
|
150
181
|
**Examples:**
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
"
|
|
155
|
-
|
|
182
|
+
|
|
183
|
+
```python
|
|
184
|
+
# Simple command
|
|
185
|
+
goal: "Go to settings and tell me my current battery level"
|
|
186
|
+
|
|
187
|
+
# Data extraction with structured output
|
|
188
|
+
goal: "Open Gmail, find first 3 unread emails, and list their sender and subject line"
|
|
189
|
+
output_description: "A JSON list of objects, each with 'sender' and 'subject' keys"
|
|
190
|
+
|
|
191
|
+
# App navigation
|
|
192
|
+
goal: "Open Twitter and scroll to the latest tweet"
|
|
156
193
|
```
|
|
157
194
|
|
|
195
|
+
The tool will:
|
|
196
|
+
|
|
197
|
+
1. Find the specified device (or first available)
|
|
198
|
+
2. Execute the command using the mobile-use AI agent
|
|
199
|
+
3. Return the result or extracted data
|
|
200
|
+
|
|
201
|
+
### Tool: `save_figma_assets`
|
|
202
|
+
|
|
203
|
+
Fetch Figma design assets and React implementation code, then save them locally in the workspace.
|
|
204
|
+
|
|
205
|
+
**Parameters:**
|
|
206
|
+
|
|
207
|
+
- `node_id` (required): The node ID of the Figma design in format "1:2" (colon-separated). Extract from URLs like `https://figma.com/design/:fileKey/:fileName?node-id=1-2`
|
|
208
|
+
- `file_key` (required): The file key from the Figma URL (e.g., "abc123" from `https://figma.com/design/abc123/MyFile`)
|
|
209
|
+
- `workspace_path` (optional): The workspace path where assets should be saved. Defaults to current directory.
|
|
210
|
+
|
|
211
|
+
**Returns:** Download summary with list of successfully downloaded assets and any failures.
|
|
212
|
+
|
|
213
|
+
**Example:**
|
|
214
|
+
|
|
215
|
+
```python
|
|
216
|
+
node_id: "1:2"
|
|
217
|
+
file_key: "abc123xyz"
|
|
218
|
+
workspace_path: "."
|
|
219
|
+
```
|
|
220
|
+
|
|
221
|
+
The tool will:
|
|
222
|
+
|
|
223
|
+
1. Call `get_design_context` from Figma MCP to get React/TypeScript code
|
|
224
|
+
2. Extract all asset URLs from the code implementation
|
|
225
|
+
3. Download each asset to `.mobile-use/figma_assets/<node-id>/` folder
|
|
226
|
+
4. Save the code implementation to `.mobile-use/figma_assets/<node-id>/code_implementation.ts`
|
|
227
|
+
5. Return a list of downloaded files with success/failure status
|
|
228
|
+
|
|
229
|
+
### Tool: `compare_screenshot_with_figma`
|
|
230
|
+
|
|
231
|
+
Compare a screenshot of the current mobile device state with a Figma design to identify visual differences.
|
|
232
|
+
|
|
233
|
+
**Parameters:**
|
|
234
|
+
|
|
235
|
+
- `node_id` (required): The node ID of the Figma design in format "1:2" (colon-separated). Extract from URLs like `https://figma.com/design/:fileKey/:fileName?node-id=1-2`
|
|
236
|
+
|
|
237
|
+
**Returns:** Detailed comparison report with both the Figma design and current device screenshots for visual context.
|
|
238
|
+
|
|
239
|
+
The tool will:
|
|
240
|
+
|
|
241
|
+
1. Capture a screenshot of the current device state
|
|
242
|
+
2. Fetch the Figma design screenshot
|
|
243
|
+
3. Compare both screenshots using vision AI
|
|
244
|
+
4. Return a detailed analysis highlighting differences
|
|
245
|
+
|
|
158
246
|
## Advanced Configuration
|
|
159
247
|
|
|
160
248
|
### Custom ADB Server
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
minitap/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
minitap/mcp/core/agents/compare_screenshots.md,sha256=Gt27HVzXzu71BxcanKPokz1dFPvq90vXbjE2HOn5X0I,3559
|
|
3
3
|
minitap/mcp/core/agents/compare_screenshots.py,sha256=Yb7kR8Cv0gWzXyNf-6IS7_9l1npfqYmL-SONJJGgzM4,2060
|
|
4
|
-
minitap/mcp/core/agents/extract_figma_assets.
|
|
5
|
-
minitap/mcp/core/agents/extract_figma_assets.py,sha256=4XwPi7JRGPPvW9P4igQFdKYG94cM5Y8qc3pWRkQ8BsU,3095
|
|
4
|
+
minitap/mcp/core/agents/extract_figma_assets.py,sha256=L5aAHm59mrRYaqrwMJSM24SSdZPu2yVg-wsHTF3L8vk,2310
|
|
6
5
|
minitap/mcp/core/config.py,sha256=_rIH31treZlM2RVnTz5cPXhV9Bu4D-w4TmbPh5_mxxM,1026
|
|
7
6
|
minitap/mcp/core/decorators.py,sha256=kMx_mlaa-2U1AgCoYkgPoLOa-iOoKUF1OjcNV7x59Ds,2940
|
|
8
7
|
minitap/mcp/core/device.py,sha256=sEO3Z-8F325hDOObdH1YBhZE60f17FmIclt5UlhY_nU,7875
|
|
@@ -17,9 +16,9 @@ minitap/mcp/server/poller.py,sha256=Qakq4yO3EJ9dXmRqtE3sJjyk0ij7VBU-NuupHhTf37g,
|
|
|
17
16
|
minitap/mcp/tools/analyze_screen.py,sha256=fjcjf3tTZDlxzmiQFHFNgw38bxPz4eisw57zuxshN2A,1984
|
|
18
17
|
minitap/mcp/tools/compare_screenshot_with_figma.py,sha256=G69F6vRFI2tE2wW-oFYPjnY8oFMD9nRZH0H-yvtD4gE,4575
|
|
19
18
|
minitap/mcp/tools/execute_mobile_command.py,sha256=qY3UfcDq1BtYcny1YlEF4WV9LwUJxLAmLJCm1VBzxS8,2442
|
|
20
|
-
minitap/mcp/tools/save_figma_assets.py,sha256=
|
|
19
|
+
minitap/mcp/tools/save_figma_assets.py,sha256=6GRaaBQfU4h7H_q69Xoy8qdzkZXtBMlFUeV5kCAeBMc,9978
|
|
21
20
|
minitap/mcp/tools/screen_analyzer.md,sha256=TTO80JQWusbA9cKAZn-9cqhgVHm6F_qJh5w152hG3YM,734
|
|
22
|
-
minitap_mcp-0.
|
|
23
|
-
minitap_mcp-0.
|
|
24
|
-
minitap_mcp-0.
|
|
25
|
-
minitap_mcp-0.
|
|
21
|
+
minitap_mcp-0.5.0.dist-info/WHEEL,sha256=DpNsHFUm_gffZe1FgzmqwuqiuPC6Y-uBCzibcJcdupM,78
|
|
22
|
+
minitap_mcp-0.5.0.dist-info/entry_points.txt,sha256=rYVoXm7tSQCqQTtHx4Lovgn1YsjwtEEHfddKrfEVHuY,55
|
|
23
|
+
minitap_mcp-0.5.0.dist-info/METADATA,sha256=j4TMgzWoC3WHoDBEavfB-SSzQVdpUV10E0HZW30njDg,8641
|
|
24
|
+
minitap_mcp-0.5.0.dist-info/RECORD,,
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
You are an expert at parsing React/TypeScript code to extract asset URLs and generate clean, documented code implementations.
|
|
2
|
-
|
|
3
|
-
Your task is to:
|
|
4
|
-
|
|
5
|
-
1. Extract all asset URLs from the provided code snippet
|
|
6
|
-
2. Generate a clean `code_implementation` output that includes the React code with embedded comments referencing implementation and node guidelines
|
|
7
|
-
|
|
8
|
-
**Instructions:**
|
|
9
|
-
|
|
10
|
-
## Part 1: Extract Asset URLs
|
|
11
|
-
|
|
12
|
-
1. Look for all constant declarations that contain URLs pointing to assets (images, SVGs, etc.)
|
|
13
|
-
2. These constants typically follow patterns like:
|
|
14
|
-
|
|
15
|
-
- `const imgVariableName = "http://localhost:3845/assets/[hash].[extension]";`
|
|
16
|
-
- The variable names usually start with `img` followed by a descriptive name in camelCase
|
|
17
|
-
|
|
18
|
-
3. For each asset URL found, extract:
|
|
19
|
-
- The **variable name** (e.g., `imgSignal`, `imgBatteryThreeQuarters`)
|
|
20
|
-
- The **full URL** (e.g., `http://localhost:3845/assets/685c5ac58caa29556e29737cf8f8c9605d9c8571.svg`)
|
|
21
|
-
- The **file extension** from the URL (e.g., `svg`, `png`, `jpg`)
|
|
22
|
-
|
|
23
|
-
## Part 2: Generate Code Implementation
|
|
24
|
-
|
|
25
|
-
The `code_implementation` field should contain:
|
|
26
|
-
|
|
27
|
-
1. The React/TypeScript code with **LOCAL asset imports** instead of HTTP URLs:
|
|
28
|
-
|
|
29
|
-
- Convert `const imgSignal = "http://localhost:3845/assets/[hash].svg";`
|
|
30
|
-
- To `import imgSignal from './assets/imgSignal.svg';` (or appropriate relative path)
|
|
31
|
-
- Use the **exact same variable names** as in the original const declarations
|
|
32
|
-
- **CRITICAL**: Preserve the variable naming convention
|
|
33
|
-
|
|
34
|
-
2. Preserve all `data-node-id` attributes and other metadata in the code
|
|
35
|
-
|
|
36
|
-
## Part 3: Return Format
|
|
37
|
-
|
|
38
|
-
Return a JSON object with two fields:
|
|
39
|
-
|
|
40
|
-
- `assets`: Array of extracted asset objects
|
|
41
|
-
- `code_implementation`: String containing the React code with embedded guideline comments
|
|
42
|
-
|
|
43
|
-
```json
|
|
44
|
-
{
|
|
45
|
-
"assets": [
|
|
46
|
-
{
|
|
47
|
-
"variable_name": "imgSignal",
|
|
48
|
-
"url": "http://localhost:3845/assets/685c5ac58caa29556e29737cf8f8c9605d9c8571.svg",
|
|
49
|
-
"extension": "svg"
|
|
50
|
-
},
|
|
51
|
-
...
|
|
52
|
-
],
|
|
53
|
-
"code_implementation": "import ... function ..."
|
|
54
|
-
}
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
**Important:**
|
|
58
|
-
|
|
59
|
-
- Only extract asset URLs
|
|
60
|
-
- Preserve the exact variable names as they appear in the code
|
|
61
|
-
- DO NOT MISS any assets
|
|
62
|
-
- If no assets are found, return an empty array for `assets`
|
|
63
|
-
- Return ONLY the JSON object with both `assets` and `code_implementation` fields
|
|
64
|
-
- Do NOT include the const declarations of the assets in the code_implementation output - convert them to imports.
|
|
File without changes
|