Share QuickAdd Packages
A package bundles choices, macros, and their supporting scripts into a single
.quickadd.json file. Use one to move a workflow to another vault or share it
with someone else - they import the file and get your choices without rebuilding
anything by hand. Importing shows a full review of what the package can do first,
so you always see the scripts and macros before they run.
Export a package
Section titled “Export a package”- Open Settings → QuickAdd and scroll to the choices list.
- Click Export package… in the Packages setting.
- Use the filter to find the choices you want to share, then tick their checkboxes. Any dependent choices or scripts are added automatically.
- Review the summary panel to confirm how many choices and assets are included.
- Choose Copy JSON (puts the package on your clipboard) or Save to file. When saving, QuickAdd creates any missing folders inside your vault automatically.
Import a package
Section titled “Import a package”- Open Settings → QuickAdd and click Import package….
- Paste the full contents of a
.quickadd.jsonfile into the text box. - QuickAdd analyses the JSON and shows a review of exactly what the package will add and run before you commit - see Review what a package can do.
- Under Choices, pick an action for each choice:
- Import adds a new choice only when its ID does not already exist.
- Overwrite keeps the original ID and replaces the existing choice.
- Duplicate copies the choice with new IDs so you can keep both versions.
- Skip leaves the choice untouched.
- Under Files, each bundled file is grouped as Added or Will overwrite. Choose Write, Overwrite, or Skip per file, and adjust the destination path if you want it saved elsewhere (templates default to your QuickAdd template folder when one is set). QuickAdd updates the imported choices to reference the new locations.
- If the package runs code, tick the acknowledgement, then click Import package. The choices list updates immediately and a notice summarises what changed.
Review what a package can do
Section titled “Review what a package can do”Importing a package can run scripts and macros that have full access to your vault and the network, so the import screen treats it as a trust decision: it makes everything visible before anything is written.
What the package can do to your vault
Section titled “What the package can do to your vault”A What this package can do panel lists the package’s capabilities, ranked by how much they can affect your vault:
- Runs custom JavaScript - a user script, or a script-mode condition, that runs arbitrary code.
- Runs on startup - a macro set to run automatically every time Obsidian launches, with no interaction.
- Adds commands - choices that register a command in the palette / hotkeys.
- Overwrites existing choices or files, sends content to an AI provider, triggers other Obsidian commands, and similar.
Each row names the choice it comes from. Hover any badge for a plain-language explanation of what it means.
Read the files before you trust them
Section titled “Read the files before you trust them”Every bundled file appears under Files with its destination and size. Click View contents to read a script or template exactly as it will be written. Files that are run as code are marked Executable (regardless of their declared type), and very long or minified scripts are flagged as not fully reviewable.
Acknowledge the code before importing
Section titled “Acknowledge the code before importing”When a package can run code, the Import package button stays disabled until you have opened View contents on each bundled executable script and ticked the acknowledgement. Reviewed scripts are marked so you can track what is left.
Preview a package from the command line
Section titled “Preview a package from the command line”For scripting or CI, the quickadd:package-preview command returns the same
review as JSON, without opening the modal:
obsidian quickadd:package-preview path=path/to/package.quickadd.jsonAdd decode=true to inline the decoded contents of each bundled file.
Check version compatibility
Section titled “Check version compatibility”Packages record the QuickAdd version and a schema number, so future releases can warn you when a file needs a newer plugin. If you see a schema version error, upgrade QuickAdd in both vaults and export the package again.