Files
SFKislev 5e6cfc0dce Update adapter documentation for macOS compatibility
- Change code blocks from PowerShell to Bash for macOS examples across all adapters.
- Add macOS-specific instructions for running context scripts in the documentation of each adapter.
- Update session file paths to reflect user-scoped locations for both Windows and macOS.
- Enhance overall clarity and consistency in the documentation for better user experience.
2026-04-26 13:24:23 +03:00

2.4 KiB

InDesign Notes

Bridge:

python adapters/indesign_adapter/indesign_bridge.py --stdin

Runtime:

  • Windows: COM InDesign.Application -> DoScript(JavaScript).
  • macOS: AppleScript do script ... language JavaScript.

Context:

Windows:

Get-Content adapters/indesign_adapter/examples/context.jsx -Raw | python adapters/indesign_adapter/indesign_bridge.py --stdin

macOS:

cat adapters/indesign_adapter/examples/context.jsx | python adapters/indesign_adapter/indesign_bridge.py --stdin

Local Memory

If APP.local.md exists in this directory, review it before performing an operation when local installation details, prior failures, or version-specific behavior may matter.

After completing an operation, if you encountered a repeatable issue or verified something worth remembering about this local installation, add a short note to APP.local.md.

Keep notes concise and factual. Record only local, reusable insights such as verified quirks, recovery steps, version-specific gaps, or runtime-discovered details. Do not copy general guidance from APP.md, and do not add temporary task-specific notes.

API lookup workflow:

  • Use docs/api-index.txt as the primary operation index.
  • Workflow for every task:
    1. Understand the user's intent.
    2. Search (rg) docs/api-index.txt for matching operations.
    3. If needed, introspect the live app/runtime to resolve ambiguity.
    4. If still needed, search official documentation online.
    5. Avoid over-relying on training, as it's fragile and can break. Do not directly read the index file, which can be heavy.

Connection recovery:

If the bridge cannot connect, ask the user to open InDesign and retry the context command. This adapter connects to the running app by default; do not launch InDesign unless the user explicitly asks.

InDesign-specific notes:

  • JavaScript language id is 1246973031.
  • Layout tasks often live under document, page, margin, grid, style, layer, and selection objects.
  • For measurements, set and restore app.scriptPreferences.measurementUnit inside the script.
  • Prefer one bounded DoScript call per requested edit.
  • For visually judged layout or page changes, prefer the temporary preview-verification workflow in shared/coexistence.md instead of assuming the visible result.
  • Grep-friendly operation index: docs/api-index.txt (records are prefixed with CLASS, ENUM, PROPERTY, METHOD).