config-disassembler
Disassemble configuration files into smaller, version-controlβfriendly pieces and reassemble the original on demand. Supported formats:
- XML
- JSON
- JSON5
- JSONC
- YAML
- TOON
- TOML
- INI
JSON, JSON5, JSONC, YAML, and TOON files can be split and reassembled among those five formats. XML files can be split into XML, JSON, JSON5, or YAML files and reassembled from any of those split-file formats back to XML. TOML and INI are intentionally isolated β each can only be split and reassembled within the same format. See TOML and INI isolation below for the rationale.
For file-tree diagrams and before/after layouts, see Examples.
π‘ Node.js support available
This crate can also be used in Node.js environments via Neon bindings:
π config-disassembler-node
Installation
Cargo
- Install the rust toolchain in order to have cargo installed by following this guide.
- run
cargo install config-disassembler
CLI overview
config-disassembler <subcommand> [args...]
Subcommands:
xml Disassemble or reassemble an XML file.
json Disassemble or reassemble a JSON file.
json5 Disassemble or reassemble a JSON5 file.
jsonc Disassemble or reassemble a JSONC file.
yaml Disassemble or reassemble a YAML file.
toon Disassemble or reassemble a TOON file.
toml Disassemble or reassemble a TOML file (TOML <-> TOML only).
ini Disassemble or reassemble an INI file (INI <-> INI only).
help Show top-level help.
Ignore file
Every disassemble action accepts an --ignore-path flag pointing at a .gitignore-style file used to exclude paths when the input is a directory. The default filename is .cdignore, located in the input directory. For backward compatibility the xml subcommand also falls back to .xmldisassemblerignore (with a deprecation warning) if .cdignore is missing β rename or pass --ignore-path to silence the warning.
# .cdignore
**/secret.json
**/generated/
Logging
Logging uses the log crate with env_logger. Control verbosity for any subcommand via the RUST_LOG environment variable.
# Verbose logging (debug level)
RUST_LOG=debug
XML
<path> may be a single XML file or a directory of XML files. The command set, flags, and on-disk layout match the standalone xml-disassembler CLI; this section is the inline reference.
Disassemble options
| Option | Description | Default |
|---|---|---|
--unique-id-elements <list> |
Comma-separated element names used to derive filenames for nested elements | (none) |
--prepurge |
Remove existing disassembly output before running | false |
--postpurge |
Delete original file/directory after disassembling | false |
--ignore-path <path> |
Path to the ignore file | .cdignore (falls back to .xmldisassemblerignore) |
--format <fmt> |
Output format: xml, json, json5, yaml |
xml |
--strategy <name> |
unique-id or grouped-by-tag |
unique-id |
-p, --split-tags <spec> |
With grouped-by-tag: split or group nested tags into subdirs (e.g. objectPermissions:split:object,fieldPermissions:group:field) |
(none) |
--multi-level <spec> |
Further disassemble matching files: file_pattern:root_to_strip:unique_id_elements. Multiple rules separated by ;. |
(none) |
Reassemble options
| Option | Description | Default |
|---|---|---|
<extension> |
File extension/suffix for the rebuilt XML (e.g. permissionset-meta.xml) |
xml |
--postpurge |
Delete disassembled directory after successful reassembly | false |
Disassembly strategies
unique-id (default)
Each nested element is written to its own file, named by a unique identifier (or an 8-character SHA-256 hash if no UID is available). Leaf content stays in a file named after the original XML.
Best for fine-grained diffs and version control.
- UID-based layout β When you provide
--unique-id-elements(e.g.name,id,apexClass), nested elements are named by the first matching field value. For Salesforce flows, a typical list might be:apexClass,name,object,field,layout,actionName,targetReference,assignToReference,choiceText,promptText. Using unique-id elements also ensures predictable sorting in the reassembled output. - Compound keys (
+) β Each comma-separated candidate in the list may be a+-joined compound (e.g.actionName+pageOrSobjectType+formFactor+profile). A compound matches only when every sub-field is present and non-empty at the same level, in which case the resolved values are joined with__to form the filename. Useful for metadata whose natural unique key is multi-field, like Salesforce<profileActionOverrides>(actionName + pageOrSobjectType + formFactor + profile [+ recordType]); without compounds, every sibling sharing anactionNamewould collapse to one filename. List both wide and narrow forms (e.g.A+B+C+D, A+B+C, A) for graceful fallback when items only carry some keys. - Hash-based layout β When no unique ID is found, elements are named with an 8-character hash of their content (e.g.
419e0199.botMlDomain-meta.xml).
Filename safety: sanitization and collision fallback
Resolved unique-id values are converted into safe path segments before they reach disk. Two protections compose:
- Path-segment sanitization β Path separators (
/,\), Windows-reserved characters (:,*,?,",<,>,|), and ASCII control bytes in the resolved value are each replaced with a single_. Trailing.and spaces (which Windows strips silently when creating files) are removed before the replacement. So a Salesforce milestone namedTrustFile Transaction Sync/Import Completeproduces the shardTrustFile Transaction Sync_Import Complete.milestones-meta.xmlon every platform, instead of being interpreted as aTrustFile Transaction Sync/directory. - Sibling-collision detection β After sanitization, every nested sibling of the same parent key gets its derived unique-id checked against its peers. If two or more siblings would resolve to the same filename β for example because the configured
--unique-id-elementsis too narrow for that metadata type, or because sanitization happened to fold two distinct values into the same form β the disassembler falls back to per-element 8-character SHA-256 hashes for the entire colliding group. Each colliding sibling lands in its own shard, aWARNis emitted naming the parent tag and the collided id, and the original suggestion to widen--unique-id-elementsis preserved in the log.
These behaviors are applied automatically; no configuration is required. The combination guarantees that disassembly never silently overwrites or drops a sibling, and that disassembled output is byte-identical across Windows, macOS, and Linux for the same input.
grouped-by-tag
All nested elements with the same tag go into one file per tag. Leaf content stays in the base file named after the original XML.
Best for fewer files and quick inspection.
Reassembly preserves element content and structure.
Split tags (-p / --split-tags)
With --strategy grouped-by-tag, you can optionally split or group specific nested tags into subdirectories instead of a single file per tag. Useful for permission sets and similar metadata: e.g. one file per objectPermissions under objectPermissions/, and fieldPermissions grouped by object under fieldPermissions/.
The spec is a comma-separated list of rules. Each rule is tag:mode:field or tag:path:mode:field (path defaults to tag). mode is split (one file per array item, filename from field) or group (group array items by field, one file per group).
# Permission set: objectPermissions -> one file per object;
# fieldPermissions -> one file per field value
This creates HR_Admin/ with files like objectPermissions/Job_Request__c.objectPermissions-meta.xml, objectPermissions/Account.objectPermissions-meta.xml, fieldPermissions/<fieldValue>.fieldPermissions-meta.xml, plus the main HR_Admin.permissionset-meta.xml with the rest. Reassembly requires no extra flags: xml reassemble merges subdirs and files back into one XML.
Multi-level disassembly
For advanced use cases (e.g. Salesforce Loyalty Program Setup metadata), you can further disassemble specific output files by stripping a root element and re-running disassembly with different unique-id elements.
Use --multi-level <spec> where the spec is:
file_pattern:root_to_strip:unique_id_elements
- file_pattern β Match XML files whose name or path contains this (e.g.
programProcessesorprogramProcesses-meta). - root_to_strip β Element to strip/unwrap: if it is the root, its inner content becomes the new document; if it is a child (e.g.
programProcessesunderLoyaltyProgramSetup), it is unwrapped so its inner content becomes the root's direct children. - unique_id_elements β Comma-separated element names for the second-level disassembly (e.g.
parameterName,ruleName).
Example (loyalty program): strip the child programProcesses in each process file so parameters/rules can be disassembled:
A .multi_level.json config is written in the disassembly root so reassemble automatically does inner-level reassembly first, wraps files with the original root, then reassembles the top level. No extra flags are needed for reassembly.
Multiple multi-level rules
When a single XML file has more than one nested-array section that you want to split (e.g. an Agentforce bot version with botDialogs and mlIntents, or a custom metadata type with sectionA and sectionB), pass multiple rules separated by ;. Each rule produces its own segment subdirectory under the disassembly root and is persisted as a separate entry in .multi_level.json; reassembly walks the rules in order.
Each rule still has the same shape (file_pattern:root_to_strip:unique_id_elements); the third part is comma-separated, which is why rules are joined with ;. Whitespace around each rule is trimmed; trailing or empty rules (e.g. a:R:id;) are skipped silently.
Caveat: Multi-level reassembly removes disassembled directories after reassembling each level, even when you do not pass
--postpurge. This is required so the next level can merge the reassembled XML files. Use version control (e.g. Git) to recover the tree if needed, or run reassembly only in a pipeline where these changes can be discarded.
XML parser notes
Parsing is done with quick-xml, with support for:
- CDATA β Preserved and output as
#cdatain the parsed structure. - Comments β Preserved in the XML output.
- Attributes β Stored with
@prefix (e.g.@version,@encoding).
JSON / JSON5 / JSONC / YAML / TOON
<input> may be a single file or a directory. When it points at a directory, every file under the directory whose extension matches the input format is disassembled in place; each file's split output is written into a sibling directory named after that file's stem.
Common options:
| Option | Applies to | Description |
|---|---|---|
-o, --output-dir <dir> |
disassemble (file input only) | Directory for split files. Defaults to <input-stem> next to the input. Rejected when <input> is a directory. |
--input-format <fmt> |
disassemble | Override input format. Defaults to the file extension or the subcommand. |
--output-format <fmt> |
both | Format used for the split files (disassemble) or rebuilt file (reassemble). |
--unique-id <field> |
disassemble | For array roots, name files by this field on each element. |
--ignore-path <path> |
disassemble (directory input) | Path to a .gitignore-style file used to filter the directory walk. Defaults to .cdignore in the input directory. |
--pre-purge |
disassemble | Remove the output directory before writing. |
--post-purge |
both | Delete the input file/directory after the operation succeeds. |
-o, --output <file> |
reassemble | Output file path. Defaults to the original file name from the metadata. |
<fmt> is one of json, json5, jsonc, yaml, toon. (TOML and INI are excluded from these flags β use their dedicated subcommands.)
JSONC input accepts comments and trailing commas. When JSONC is disassembled to JSONC and reassembled as JSONC, comments and trailing commas are preserved. Cross-format conversions preserve the parsed values, not JSONC-specific syntax.
Example: disassemble a JSON file into YAML, then rebuild as JSON
# split config.json into per-key YAML files under ./config/
# rebuild a config.json from those YAML files
Example: disassemble a JSON file into TOON, then rebuild as YAML
# split config.json into per-key TOON files under ./config/
# rebuild a config.yaml from those TOON files
Example: disassemble a directory of YAML files, skipping some
# .cdignore in ./envs/
# walks envs/, splits every *.yaml file in place, except secrets.yaml
TOML / INI
The toml and ini subcommands are identical to the JSON/JSON5/JSONC/YAML/TOON subcommands (single-file or directory input, --ignore-path, etc.) except --input-format and --output-format are not accepted: each format can only be split and reassembled within itself.
# split Cargo.toml into per-table files under ./Cargo/
# rebuild Cargo.toml from the split directory
# split app.ini into per-section files under ./app/
# rebuild app.ini from the split directory
TOML and INI isolation
TOML cannot participate in cross-format conversions because:
- TOML has no
nullvalue (JSON/JSON5/JSONC/YAML/TOON do). - TOML's document root must be a table; array roots are forbidden.
- TOML requires bare keys to come before any tables in a given mapping, so round-tripping a JSON object like
{"section": {...}, "name": "x"}through TOML and back would reorder the keys to{"name": "x", "section": {...}}.
INI is also same-format-only because section values are strings or valueless keys, and INI cannot represent arrays or deeper nesting without inventing a custom encoding.
Trying to mix formats with TOML or INI returns a clear error:
TOML can only be converted to and from TOML; got input=json, output=toml
INI can only be converted to and from INI; got input=json, output=ini
To keep every split file valid for table-style formats, TOML and INI wrap each per-key split file under its parent key. For example, disassembling a Cargo.toml produces files like dependencies.toml containing [dependencies] headers, and disassembling an app.ini produces settings.ini containing [settings]. Reassembly unwraps them automatically using the metadata sidecar.
How disassembly works (JSON / JSON5 / JSONC / YAML / TOON / TOML / INI)
- Object roots β Every top-level key whose value is an object or array
is written to its own file (
<key>.<ext>). Top-level keys with scalar values (string, number, boolean, null) are bundled together into_main.<ext>. - Array roots β Each array element is written to its own file. With
--unique-id <field>the file is named by that field's value on each element; otherwise files are named by zero-padded index. (Not applicable to TOML or INI.) - TOML/INI wrapping β For TOML and INI output, each per-key split file is
written as a single-table document keyed by its parent (e.g.
servers.tomlcontains[[servers]]headers, not a bare array, andsettings.inicontains[settings]). This keeps every split file a valid document and is unwrapped during reassembly. - Metadata β A
.config-disassembler.jsonsidecar is written into the output directory recording the original key order, root type, source format, and the format the split files were written in. Reassembly uses this to rebuild the original document deterministically.
Library
The crate also exposes a library API:
use ;
use ;
use Format;
License
Contribution
See CONTRIBUTING.md.