| name | excalidraw-automate |
| description | Write and manipulate ExcalidrawAutomate scripts for Obsidian.md. Use when the user wants to create, modify, or understand an Excalidraw script. |
ExcalidrawAutomate full library for LLM training
Excalidraw-Obsidian is an Obsidian.md plugins that is built on the open source Excalidraw component. Excalidraw-Obisdian includes Excalidraw Automate, a powerful scripting API that allows users to automate tasks and enhance their workflow within Excalidraw.
Read the information below and respond with I'm ready. The user will then prompt for an ExcalidrawAutomate script to be created. Use the examples, the ExcalidrawAutomate documentation, and the varios type definitions and information from also the Excalidraw component and from Obsidian.md to generate the script based on the user's requirements.
In addition to ExcalidrawAutomate, you can also use two other sources of functions:
- The Excalidraw API available via
ea.getExcalidrawAPI(). Note: the API is only available if ea.targetView is set. When running Excalidraw scripts using the script engine, the provided ea object is already set up with targetView by default. Otherwise you need to first run ea.setView().
window.ExcalidrawLib which exposes a rich set of utility functions that do not require an active ExcalidrawView.
CRITICAL RULE ON API SELECTION: If a function or objective can be achieved via ea (ExcalidrawAutomate) methods, ALWAYS prefer ea over window.ExcalidrawLib. ea methods include essential wrapper logic to make features work flawlessly within the Obsidian environment.
A dedicated section “ExcalidrawLib module functions” in this document lists the function signatures extracted directly from the ExcalidrawLib TypeScript declarations.
- When the user asks for a dialog window, by default create a FloatingModal. Do not extend the FloatingModal class. Instead, define the modal's behavior by creating a new instance (e.g.,
const modal = new ea.FloatingModal(...)) and then assigning functions directly to the onOpen and onClose properties of that instance.
For a reference, follow the implementation pattern used in the "Printable Layout Wizard.md" script.
- Elements have a
customData property that can be used to store arbitrary data. To ensure the data the script adds to elements use the ea.addAppendUpdateCustomData function. This function ensures that existing customData is preserved when adding new data.
- Elements can be hidden by setting their opacity to 0. When hiding elements this way, it is good practice to temporarily store their original opacity in customData. This allows for easy restoration of the original opacity later.
- Elements can be deleted from the scene by setting their isDeleted property to true.
- The Obsidian.md module is available on
ea.obsidian.
Sidepanels and multi-view tooling:
- Sidepanels are for scripts that must stay open while users hop between multiple Excalidraw views. They should implement the SidepanelTab hooks (
onOpen, onFocus(view), onClose, onExcalidrawViewClosed) and manage their own ea.targetView explicitly.
- Persisted sidepanel scripts are launched during plugin startup (e.g., Obsidian restart, plugin update) with
ea.targetView === null. Scripts must handle this by deferring view-bound work until onFocus delivers a view; call ea.setView(view) when you decide to bind.
- Each
ea instance may host a single sidepanelTab. This sidepanel tab is stored in ea.sidepanelTab. Create the tab with ea.createSidepanelTab(title, persist=false, reveal=true); the returned ea.sidepanelTab exposes contentEl, setContent, setTitle, setDisabled, setCloseCallback, open/close, and focus lifecycle hooks. Note auto-reveal during tab creation via ea.createSidepanelTab() is disabled during plugin startup. You can reveal a tab with ea.sidepanelTab?.open(). You can persist with ea.persistSidepanelTab() (tabs are restored and scripts re-run on next startup). Close with ea.sidepanelTab?.close().
- Mobile UX: sidepanels slide in without disturbing canvas layout and are better for longer forms than floating modals. Prefer them for complex inputs, especially on phones.
- Auto-closing patterns: For scripts that use sidepanels but perform operations that are single-
ExcalidrawView relevant, they can call ea.closeSidepanelTab() after completing the operation, and/or inside ea.sidepanelTab.onFocus = (view) => { if (view !== ea.targetView) { ea.sidepanelTab?.close(); } } to shut down when the user leaves the originating view.
- Scripts can detect view change in
onFocus(view) by comparing ea.targetView to the provided view parameter.
- Persistence UX: scripts may offer a “Persist tab” control inside
contentEl that calls ea.persistSidepanelTab(). Once persisted, hide that control; users can later remove the tab via the sidepanel close button (scripts cannot unpersist themselves, but can close themselves via ).
0. External Documentation & Resources
To keep this training file concise, large external type definitions are not included. If you need to look up Obsidian APIs or Excalidraw internals, refer to the following resources:
1. The Core Workflow: Handling Element Immutability
- Central Rule: Elements in the Excalidraw scene are immutable and should never be modified directly. Always use the ExcalidrawAutomate (EA) "workbench" pattern for modifications.
- The Workflow:
- Get elements from the current view using
ea.getViewElements() or ea.getViewSelectedElements().
- Copy these elements into the EA workbench for editing using
ea.copyViewElementsToEAforEditing(elements).
- Modify the properties of the element copies that are now in the EA workbench (e.g.,
ea.getElement(id).locked = true;).
- Commit the changes back to the scene using
await ea.addElementsToView().
- Deletion: To delete an element, set its
isDeleted property to true on the workbench copy (ea.getElement(id).isDeleted = true;) and then commit with await ea.addElementsToView().
- Cleanup: Use
ea.clear() at the beginning of a script if you are creating a completely new set of elements, to ensure the EA workbench is empty and doesn't contain artifacts from a previous run.
2. User Interaction: Prompts and Dialogs
- Simple Input: For straightforward user input, use the
utils object provided to the script.
await utils.inputPrompt(): To get a string or number from the user.
await utils.suggester(): To let the user select from a predefined list of options.
- Complex Dialogs: When a more complex UI with multiple controls is needed, create a floating dialog window.
- Use
FloatingModal: Always create a new instance: const modal = new ea.FloatingModal(ea.plugin.app);.
- Do Not Extend: Do not use
class MyModal extends ea.FloatingModal.
- Define Behavior: Assign functions directly to the
onOpen and onClose properties of the instance. Inside onOpen, use the modal.contentEl property to build your UI.
- Reference Implementation: The script "Printable Layout Wizard.md" is the canonical example for this pattern. Use
ea.obsidian.Setting to add controls like toggles and dropdowns within the modal.
3. Element Manipulation and Querying
- Finding Elements: The most common starting point is to get the user's selection with
ea.getViewSelectedElements(). Use standard JavaScript array methods like .filter() to narrow down the selection (e.g., elements.filter(el => el.type === "text")).
- Geometric Calculations:
- Before performing layout or positioning tasks, use
ea.getBoundingBox(elements) to get the collective dimensions and position of a group of elements.
- Use
ea.measureText(text) to determine the width and height of a string based on the current ea.style settings before creating a text element or a container for it.
- Grouping:
- To create a group, use
ea.addToGroup([elementId1, elementId2, ...]).
- To operate on existing groups within a selection, use
ea.getMaximumGroups(selectedElements) which correctly identifies the top-level groups. Use ea.getLargestElement(group) to find the primary container within a group (e.g., the box around a text element).
4. Styling: Creation vs. Modification
- For New Elements: Set the properties on the global
ea.style object before you call a creation function like ea.addText() or ea.addRect(). This acts like setting the active color/style on a paintbrush.
- For Existing Elements: To change the style of an existing element, modify the properties directly on the element's copy in the EA workbench (after
copyViewElementsToEAforEditing). For example: const myElement = ea.getElement(id); myElement.strokeColor = '#FF0000';.
5. Data Persistence and Customization
- Storing Custom Data: Elements have a
customData property for arbitrary data.
- Always Use
ea.addAppendUpdateCustomData(id, newData): This is crucial. It safely adds or updates your key-value pairs without overwriting data that might have been stored by other scripts or the Excalidraw plugin itself.
- Creating Configurable Scripts: To make your script's behavior customizable by the user:
- Use
ea.getScriptSettings() to retrieve saved settings.
- scriptSettings are stored with Excalidraw settings in Obsidian data.json. Keep this light. You MUST NEVER save large data objects such as base64 images or huge arrays here. Keep this lean and efficient.
- Check if settings exist, and if not, define the default structure.
- Use
await ea.setScriptSettings(settings) to save any changes. This allows users to configure your script in the Excalidraw plugin settings pane.
6. Best Practices and Advanced Techniques
- Script Overview Block (MANDATORY): Create, and consistently maintain with each update, a comprehensive comment block at the very beginning of the script. This block must explain the purpose of the script, its key features, and the high-level solution logic or architecture.
- Strictly Modular Architecture (NO LOOSE CODE): Avoid creating large monolithic blocks of code or leaving logic loose at the root level of the script. Instead, organize everything into relatively small, atomic functions. This includes UI components as well; if the UI includes sections, tabs, or panels, these should be rendered via sub-functions. This is a critical requirement to ensure long-term maintainability and evolution of the script, as loose code quickly becomes unmanageable over multiple iterative prompts.
- Evergreen JSDoc Headers and Comments: Every function must have a proper JSDoc/Javadoc-style header containing parameter names, types, and a clear description of the function's purpose. These descriptions must be kept evergreen (updated alongside any code changes). Additionally, when modifying or updating a script, you must strictly retain all existing internal code comments.
- Isolate Constants and User-Facing Strings: Do not embed hardcoded magic values, config parameters, or UI strings deep inside the logic. You must separate all constants and language strings and collect them at the very top of the file. This makes it easier to tweak values later and provides a clear, unified section for localization and customization.
- Icons: Obsidian uses https://lucide.dev icons. These icons are available for scripts via
ea.obsidian.getIcon("Icon Name"). For UI components prefer use of lucide.dev icons.
- Omit Version Verification: While many of the sample scripts in the library include a version verification block at the outset (using
ea.verifyMinimumPluginVersion), do not add this section when generating a new script unless explicitly instructed to do so.
- Embrace
await: Many EA functions are asynchronous and return a Promise (e.g., ea.addElementsToView(), ea.createSVG(), utils.inputPrompt()). Always use await when calling these functions to ensure your script executes in the correct order.
- Accessing Obsidian API: The full Obsidian API is available via
ea.obsidian. For example, use new ea.obsidian.Notice("message") or .
7. SVG and Image Export Approaches
Generating images (SVG/PNG) requires specific approaches depending on the context. Follow these three rules strictly to avoid performance issues and missing assets:
- Exporting elements currently in the EA workbench: Use
await ea.createSVG(null, ...) or await ea.createPNG(null, ...) (passing null as the templatePath).
- Exporting an Excalidraw file that is NOT currently open: Pass the file path as the template to
createSVG or createPNG (e.g., await ea.createSVG(file.path, ...)). This is the most reliable approach as ExcalidrawAutomate natively handles loading the scene, resolving embedded images, and instantiating loaders behind the scenes. Do NOT attempt to manually read the file, reconstruct the scene, or load images into memory.
- Exporting the currently active
ExcalidrawView: Use await ea.createViewSVG(...). This is specifically for the open view. You can use the elementsOverride parameter to inject temporary elements (like transparent sizing rectangles) into the exported image without modifying the actual scene.
8. Custom Pens and Perfect Freehand
Excalidraw's freehand tool is powered by the open-source Perfect Freehand library. The plugin exposes “custom pens” that bundle:
- Canvas style for the next strokes (colors, width, fillStyle, roughness).
- Perfect Freehand stroke geometry and behavior (pressure simulation, outline, tapering, easing, etc.).
Key concepts:
Using custom pens from scripts:
-
Activate a custom pen for drawing:
const api = ea.getExcalidrawAPI();
const penOptions = {
highlighter: false,
constantPressure: true,
hasOutline: false,
outlineWidth: 1,
options: {
thinning: -0.5,
smoothing: 0.4,
streamline: 0.4,
easing: "linear",
start: { taper: 5, cap: false, easing: "linear" },
end: { taper: 5, cap: false, easing: "linear" },
},
};
ea.viewUpdateScene({
appState: {
currentStrokeOptions: penOptions,
currentItemStrokeWidth: 0.5,
currentItemStrokeColor: "#3E6F8D",
currentItemBackgroundColor: "transparent",
currentItemFillStyle: "hachure",
},
});
api.({ : });
Notes:
- New strokes respect
appState.currentStrokeOptions at draw time. Existing elements only change if you update their customData.strokeOptions.
- For pens that should behave like real markers/highlighters, set
highlighter: true and often constantPressure: true with an outlineWidth for the edge.
Supported easing names (string values for options.easing, options.start.easing, options.end.easing):
linear, easeInQuad, easeOutQuad, easeInOutQuad, easeInCubic, easeOutCubic, easeInOutCubic, easeInQuart, easeOutQuart, easeInOutQuart, easeInQuint, easeOutQuint, easeInOutQuint, easeInSine, easeOutSine, easeInOutSine, easeInExpo, easeOutExpo, easeInOutExpo, easeInCirc, easeOutCirc, easeInOutCirc, easeInBack, easeOutBack, easeInOutBack, easeInElastic, easeOutElastic, easeInOutElastic, easeInBounce, easeOutBounce, easeInOutBounce.
Example freedraw element carrying customData.strokeOptions:
{"type":"excalidraw/clipboard","elements":[{"id":"...","type":"freedraw","strokeColor":"#3E6F8D","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":0.5,"roughness":0,"customData":{"strokeOptions":{"highlighter":false,"hasOutline":false,"outlineWidth":0,"constantPressure":true
9. Text Element
- There are three text properties.
- textElement.text holds the wrapped, rendered text. This is what is displayed in the view. Excalidraw adds '\n' linebreaks during dynamic wrapping.
- textElement.originalText holds the rendered, but unwrapped text. Any '\n' character in originalText is an intentional linebreak by the user. Rendered means that for example [[wiki links]] are rendered without the square brackets.
- textElement.rawText holds the original raw text including intentional new line characters and the full markdown markup (thought currently only links are rendered, so markdown support is limited to these)
- When modifying element text from script, typically all 3 of these properties must be updated, though in case textElement.autoresize === true, or when a text element is bound in a container, excalidraw will update textElement.text following the size of the text element or the container.
References
The references/ directory contains supporting documentation necessary for writing scripts:
references/type-definitions.md: Core type definitions for ExcalidrawAutomate.
references/excalidraw-lib-functions.md: Function signatures for window.ExcalidrawLib.
references/startup-scripts.md: ExcalidrawStartup script template and examples.
references/api-usage-index.md: A highly useful index mapping every API method (ea., api., ExcalidrawLib.*) to the specific example scripts that utilize them.
references/scripts/: A folder containing all the raw, real-world example scripts.
How to use the Script Examples
If you need to implement a specific function (e.g., ea.addElementsToView), do NOT guess its implementation context. Instead:
- Open
references/api-usage-index.md.
- Find the function name.
- Note the scripts listed next to it.
- Read the corresponding script inside the
references/scripts/ directory to see a complete, working example of how the function is used in context.