Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .cursor/skills/script-preview/scripts/saxmlpreview.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,10 @@ def _render_params(step):
if layout_ref is not None:
lname = layout_ref.get('name', '')
parts.append(f'"{lname}"')
else:
label_el = container_el.find('Label')
if label_el is not None and label_el.text:
parts.append(label_el.text)

# ── Animation ─────────────────────────────────────────────────────────
elif ptype == 'Animation':
Expand Down
1 change: 1 addition & 0 deletions agent/docs/filemaker/fetch_docs.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python3
from __future__ import annotations
"""
Fetch FileMaker Pro reference documentation from the Claris help site.

Expand Down