Skip to content

Pre-7.0.0 compendium path map — review report

Old corpus: SteelCompendium/data-md-dse — 243 release tags, final v3.20260403152914, 4017 distinct markdown paths across all of them (2443 in the final release).

New corpus: the PUBLISHED SteelCompendium/data-unified release v4.20260803143953 — its md-dse-unified-en.zip asset, 3078 markdown files. Deliberately the published artifact and not a working tree: the sync downloads that zip, so a destination that exists only in a local checkout would be migrated and then trashed by the sync's phase 2. tools/verify-migration-map.mjs re-asserts this at release time.

Result: 3290 mapped, 3 ambiguous (unmapped), 724 unmatched (unmapped).

The number that decides what a real vault sees is the FINAL release: 2036 of its 2443 paths are mapped (83.3%). The rest are itemised under "Unmatched" below — every one has a stated reason, and every one is simply left where it is.

Where the map lives, and how to rebuild it

The map itself is src/data/migrationMap.json, bundled into main.js. It is deliberately not fetched at runtime: the migration only has one chance to run (the first sync destroys the old paths), so making it depend on the network — offline, rate-limited, an asset that failed to publish — would trade a certain outcome for a probable one. The cost is about 390 KiB of JSON, ~80 KiB over the wire once compressed, and it can be dropped from a later release once 7.0.0 adoption is done.

Rebuild both this report and the map with:

node tools/gen-migration-map.mjs \
  --old /path/to/data-md-dse            # a git clone, all tags fetched \
  --new /path/to/data-unified/en/unified/md-dse \
  --out src/data/migrationMap.json \
  --report docs/compendium-migration-map.md \
  --snapshot <data-unified git describe>

test/unit/data/migrationMap.test.ts validates whatever the generator emits — path safety, no self-mappings, and injectivity over the final release — so a regeneration that breaks an invariant fails the build, not a vault.

How an entity is matched

The SCC code is deliberately NOT the key: the ETL refactor that produced data-unified changed codes, and they are not frozen. The key is the triple (book, name, type family).

Book — the source frontmatter key (mcdm.heroes.v1 / mcdm.monsters.v1). The 2024-era trees predate that key; for those, everything under Bestiary/ is the monsters book and everything else is the heroes book (data-md-dse only ever carried those two).

Name — normalized with these rules, in this order:

  1. drop frontmatter backslash escapes (motivation\_or\_pitfall)
  2. Unicode NFKD, then drop combining marks (diacritics fold)
  3. lowercase
  4. &and
  5. apostrophes (' ʼ) are deleted, not replaced (Ajax'sajaxs)
  6. every remaining non-alphanumeric run → -, then trim leading/trailing -

Several name forms are tried per file, most literal first: item_name, item_name with a trailing bracketed qualifier removed (Bredbeddle Malice (Malice Features)Bredbeddle Malice), name/title, and finally the file's own basename.

Type family — the old type is a path (monster/section, feature/ability/conduit/1st-level-feature) and the new one is a flat noun (statblock, ability). The old family is its last segment when that segment is statblock, else its first segment.

A frozen equivalence table then gates the candidates: when the old family is one the table knows, a candidate whose new type the table does not sanction is discarded outright, and an entity left with no candidate falls through to unmatched rather than being matched to something of another type. When the old family is unknown (empty type, or a spelling the table has never seen) there is nothing to gate against, so those matches rest on name + book + the tie-breakers alone — 97 of the 3290 mapped entries, counted here so the ungated set is never invisible.

Tie-breakers

Only candidates that already agree on (book, one name form) are scored, so these decide between candidates — none of them can create a match:

Weight Tie-breaker
1000 the old type family maps to the candidate's type (FAMILY_EQUIVALENCE)
400 old path is under a Statblocks/ folder and the candidate is under statblock/
80 each, max 5 each old folder/type segment that reappears as a segment of the candidate path — level (10th-Level Featureslevel-10) and plural (Rivalsrival) forms translated
300 old path is under a Features/ folder and the candidate is a featureblock/feature/ability
200 the two file basenames normalize to the same slug
60 an earlier (more literal) name form matched — literal item_name beats a bracket-stripped one
1 shallower candidate path wins an otherwise exact tie

A remaining exact tie is not guessed: the file is reported as ambiguous below and left out of the map (the engine then leaves it in place, never renames it).

Coverage

Book mapped ambiguous unmatched
(none) 0 0 3
mcdm.heroes.v1 2000 3 620
mcdm.monsters.v1 1290 0 101

Of the 3290 mapped entries, 97 were matched with the family gate inactive (unknown old family) and 97 ended on a pairing the table does not list — necessarily a subset of the ungated ones, since a gated match cannot land on an unsanctioned pairing.

Mapped, by old type family → new type

count old family new type
932 feature feature
485 feature ability
431 monster statblock
416 statblock statblock
129 monster-feature featureblock
104 monster-section monster
100 complication complication
98 treasure treasure
95 (none) statblock
71 dynamic-terrain dynamic-terrain
59 title title
47 perk perk
34 keywords rule
23 abilities ability
22 chapter chapter
21 kit-ability ability
21 kit kit
18 career career
17 common-ability feature
15 kits kit
13 culture-benefit culture
12 cultures culture
12 movement movement
12 negotiation negotiation
12 ancestry ancestry
12 motivation-or-pitfall negotiation
10 abilities feature
10 ancestries ancestry
9 conditions condition
9 class class
9 condition condition
8 careers career
5 classes class
5 complications complication
5 skill skill-group
5 skills skill-group
2 (none) chapter
1 feature rule
1 movement rule

Ambiguous — 3 (left unmapped)

  • Abilities/Common Maneuvers/Escape Grab.md (abilities) — tied candidates:
  • feature/ability/common/escape-grab.md (ability)
  • feature/common/maneuvers/escape-grab.md (feature)
  • Abilities/Common Maneuvers/Grab.md (abilities) — tied candidates:
  • feature/ability/common/grab.md (ability)
  • feature/common/maneuvers/grab.md (feature)
  • Abilities/Common Maneuvers/Knockback.md (abilities) — tied candidates:
  • feature/ability/common/knockback.md (ability)
  • feature/common/maneuvers/knockback.md (feature)

Unmatched — 724 (left unmapped)

Grouped by reason. Every one of these is left in place by the migration engine.

index page — the unified layout has no folder index files — 247 (117 in the final release)

  • Bestiary/Basics/_Index.md
  • Bestiary/Chapters/_Index.md
  • Bestiary/Dynamic Terrain/_Index.md
  • Bestiary/Monsters/_Index.md
  • Bestiary/Retainers/_Index.md
  • Bestiary/monsters/Basics/_Index.md (historical release only)
  • Bestiary/monsters/Chapters/_Index.md (historical release only)
  • Bestiary/monsters/Dynamic Terrain/_Index.md (historical release only)
  • Bestiary/monsters/Monsters/_Index.md (historical release only)
  • Bestiary/monsters/Retainers/_Index.md (historical release only)
  • Rules/Abilities/Censor/10th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Censor/1st-Level Features/Index.md (historical release only)
  • Rules/Abilities/Censor/2nd-Level Features/Index.md (historical release only)
  • Rules/Abilities/Censor/3rd-Level Features/Index.md (historical release only)
  • Rules/Abilities/Censor/4th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Censor/5th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Censor/6th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Censor/7th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Censor/8th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Censor/9th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Censor/Index.md (historical release only)
  • Rules/Abilities/Common/Index.md (historical release only)
  • Rules/Abilities/Common/Main Actions/Index.md (historical release only)
  • Rules/Abilities/Common/Maneuvers/Index.md (historical release only)
  • Rules/Abilities/Common/Move Actions/Index.md (historical release only)
  • Rules/Abilities/Conduit/10th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Conduit/1st-Level Features/Index.md (historical release only)
  • Rules/Abilities/Conduit/2nd-Level Features/Index.md (historical release only)
  • Rules/Abilities/Conduit/3rd-Level Features/Index.md (historical release only)
  • Rules/Abilities/Conduit/4th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Conduit/5th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Conduit/6th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Conduit/7th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Conduit/8th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Conduit/9th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Conduit/Index.md (historical release only)
  • Rules/Abilities/Elementalist/10th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Elementalist/1st-Level Features/Index.md (historical release only)
  • Rules/Abilities/Elementalist/2nd-Level Features/Index.md (historical release only)
  • Rules/Abilities/Elementalist/3rd-Level Features/Index.md (historical release only)
  • Rules/Abilities/Elementalist/4th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Elementalist/5th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Elementalist/6th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Elementalist/7th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Elementalist/8th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Elementalist/9th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Elementalist/Index.md (historical release only)
  • Rules/Abilities/Fury/10th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Fury/1st-Level Features/Index.md (historical release only)
  • Rules/Abilities/Fury/2nd-Level Features/Index.md (historical release only)
  • Rules/Abilities/Fury/3rd-Level Features/Index.md (historical release only)
  • Rules/Abilities/Fury/4th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Fury/5th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Fury/6th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Fury/7th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Fury/8th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Fury/9th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Fury/Index.md (historical release only)
  • Rules/Abilities/Kits/Arcane Archer/Index.md (historical release only)
  • Rules/Abilities/Kits/Battlemind/Index.md (historical release only)
  • Rules/Abilities/Kits/Cloak and Dagger/Index.md (historical release only)
  • Rules/Abilities/Kits/Dual Wielder/Index.md (historical release only)
  • Rules/Abilities/Kits/Guisarmier/Index.md (historical release only)
  • Rules/Abilities/Kits/Index.md (historical release only)
  • Rules/Abilities/Kits/Martial Artist/Index.md (historical release only)
  • Rules/Abilities/Kits/Mountain/Index.md (historical release only)
  • Rules/Abilities/Kits/Panther/Index.md (historical release only)
  • Rules/Abilities/Kits/Pugilist/Index.md (historical release only)
  • Rules/Abilities/Kits/Raider/Index.md (historical release only)
  • Rules/Abilities/Kits/Ranger/Index.md (historical release only)
  • Rules/Abilities/Kits/Rapid Fire/Index.md (historical release only)
  • Rules/Abilities/Kits/Retiarius/Index.md (historical release only)
  • Rules/Abilities/Kits/Shining Armor/Index.md (historical release only)
  • Rules/Abilities/Kits/Sniper/Index.md (historical release only)
  • Rules/Abilities/Kits/Spellsword/Index.md (historical release only)
  • Rules/Abilities/Kits/Stick and Robe/Index.md (historical release only)
  • Rules/Abilities/Kits/Swashbuckler/Index.md (historical release only)
  • Rules/Abilities/Kits/Sword and Board/Index.md (historical release only)
  • Rules/Abilities/Kits/Warrior Priest/Index.md (historical release only)
  • Rules/Abilities/Kits/Whirlwind/Index.md (historical release only)
  • Rules/Abilities/Null/10th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Null/1st-Level Features/Index.md (historical release only)
  • Rules/Abilities/Null/2nd-Level Features/Index.md (historical release only)
  • Rules/Abilities/Null/3rd-Level Features/Index.md (historical release only)
  • Rules/Abilities/Null/4th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Null/5th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Null/6th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Null/7th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Null/8th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Null/9th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Null/Index.md (historical release only)
  • Rules/Abilities/Shadow/10th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Shadow/1st-Level Features/Index.md (historical release only)
  • Rules/Abilities/Shadow/2nd-Level Features/Index.md (historical release only)
  • Rules/Abilities/Shadow/3rd-Level Features/Index.md (historical release only)
  • Rules/Abilities/Shadow/4th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Shadow/5th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Shadow/6th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Shadow/7th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Shadow/8th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Shadow/9th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Shadow/Index.md (historical release only)
  • Rules/Abilities/Tactician/10th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Tactician/1st-Level Features/Index.md (historical release only)
  • Rules/Abilities/Tactician/2nd-Level Features/Index.md (historical release only)
  • Rules/Abilities/Tactician/3rd-Level Features/Index.md (historical release only)
  • Rules/Abilities/Tactician/4th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Tactician/5th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Tactician/6th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Tactician/7th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Tactician/8th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Tactician/9th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Tactician/Index.md (historical release only)
  • Rules/Abilities/Talent/10th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Talent/1st-Level Features/Index.md (historical release only)
  • Rules/Abilities/Talent/2nd-Level Features/Index.md (historical release only)
  • Rules/Abilities/Talent/3rd-Level Features/Index.md (historical release only)
  • Rules/Abilities/Talent/4th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Talent/5th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Talent/6th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Talent/7th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Talent/8th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Talent/9th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Talent/Index.md (historical release only)
  • Rules/Abilities/Troubadour/10th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Troubadour/1st-Level Features/Index.md (historical release only)
  • Rules/Abilities/Troubadour/2nd-Level Features/Index.md (historical release only)
  • Rules/Abilities/Troubadour/3rd-Level Features/Index.md (historical release only)
  • Rules/Abilities/Troubadour/4th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Troubadour/5th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Troubadour/6th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Troubadour/7th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Troubadour/8th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Troubadour/9th-Level Features/Index.md (historical release only)
  • Rules/Abilities/Troubadour/Index.md (historical release only)
  • Rules/Ancestries/_Index.md
  • Rules/Careers/_Index.md
  • Rules/Chapters/_Index.md
  • Rules/Classes/_Index.md
  • Rules/Complications/_Index.md
  • Rules/Conditions/_Index.md
  • Rules/Cultures/_Index.md
  • Rules/Features/Censor/10th-Level Features/Index.md
  • Rules/Features/Censor/1st-Level Features/Index.md
  • Rules/Features/Censor/2nd-Level Features/Index.md
  • Rules/Features/Censor/3rd-Level Features/Index.md
  • Rules/Features/Censor/4th-Level Features/Index.md
  • Rules/Features/Censor/5th-Level Features/Index.md
  • Rules/Features/Censor/6th-Level Features/Index.md
  • Rules/Features/Censor/7th-Level Features/Index.md
  • Rules/Features/Censor/8th-Level Features/Index.md
  • Rules/Features/Censor/9th-Level Features/Index.md
  • Rules/Features/Censor/Index.md
  • Rules/Features/Conduit/10th-Level Features/Index.md
  • Rules/Features/Conduit/1st-Level Features/Index.md
  • Rules/Features/Conduit/2nd-Level Features/Index.md
  • Rules/Features/Conduit/3rd-Level Features/Index.md
  • Rules/Features/Conduit/4th-Level Features/Index.md
  • Rules/Features/Conduit/5th-Level Features/Index.md
  • Rules/Features/Conduit/6th-Level Features/Index.md
  • Rules/Features/Conduit/7th-Level Features/Index.md
  • Rules/Features/Conduit/8th-Level Features/Index.md
  • Rules/Features/Conduit/9th-Level Features/Index.md
  • Rules/Features/Conduit/Index.md
  • Rules/Features/Elementalist/10th-Level Features/Index.md
  • Rules/Features/Elementalist/1st-Level Features/Index.md
  • Rules/Features/Elementalist/2nd-Level Features/Index.md
  • Rules/Features/Elementalist/3rd-Level Features/Index.md
  • Rules/Features/Elementalist/4th-Level Features/Index.md
  • Rules/Features/Elementalist/5th-Level Features/Index.md
  • Rules/Features/Elementalist/6th-Level Features/Index.md
  • Rules/Features/Elementalist/7th-Level Features/Index.md
  • Rules/Features/Elementalist/8th-Level Features/Index.md
  • Rules/Features/Elementalist/9th-Level Features/Index.md
  • Rules/Features/Elementalist/Index.md
  • Rules/Features/Fury/10th-Level Features/Index.md
  • Rules/Features/Fury/1st-Level Features/Index.md
  • Rules/Features/Fury/2nd-Level Features/Index.md
  • Rules/Features/Fury/3rd-Level Features/Index.md
  • Rules/Features/Fury/4th-Level Features/Index.md
  • Rules/Features/Fury/5th-Level Features/Index.md
  • Rules/Features/Fury/6th-Level Features/Index.md
  • Rules/Features/Fury/7th-Level Features/Index.md
  • Rules/Features/Fury/8th-Level Features/Index.md
  • Rules/Features/Fury/9th-Level Features/Index.md
  • Rules/Features/Fury/Index.md
  • Rules/Features/Null/10th-Level Features/Index.md
  • Rules/Features/Null/1st-Level Features/Index.md
  • Rules/Features/Null/2nd-Level Features/Index.md
  • Rules/Features/Null/3rd-Level Features/Index.md
  • Rules/Features/Null/4th-Level Features/Index.md
  • Rules/Features/Null/5th-Level Features/Index.md
  • Rules/Features/Null/6th-Level Features/Index.md
  • Rules/Features/Null/7th-Level Features/Index.md
  • Rules/Features/Null/8th-Level Features/Index.md
  • Rules/Features/Null/9th-Level Features/Index.md
  • Rules/Features/Null/Index.md
  • Rules/Features/Shadow/10th-Level Features/Index.md
  • Rules/Features/Shadow/1st-Level Features/Index.md
  • Rules/Features/Shadow/2nd-Level Features/Index.md
  • Rules/Features/Shadow/3rd-Level Features/Index.md
  • Rules/Features/Shadow/4th-Level Features/Index.md
  • Rules/Features/Shadow/5th-Level Features/Index.md
  • Rules/Features/Shadow/6th-Level Features/Index.md
  • Rules/Features/Shadow/7th-Level Features/Index.md
  • Rules/Features/Shadow/8th-Level Features/Index.md
  • Rules/Features/Shadow/9th-Level Features/Index.md
  • Rules/Features/Shadow/Index.md
  • Rules/Features/Tactician/10th-Level Features/Index.md
  • Rules/Features/Tactician/1st-Level Features/Index.md
  • Rules/Features/Tactician/2nd-Level Features/Index.md
  • Rules/Features/Tactician/3rd-Level Features/Index.md
  • Rules/Features/Tactician/4th-Level Features/Index.md
  • Rules/Features/Tactician/5th-Level Features/Index.md
  • Rules/Features/Tactician/6th-Level Features/Index.md
  • Rules/Features/Tactician/7th-Level Features/Index.md
  • Rules/Features/Tactician/8th-Level Features/Index.md
  • Rules/Features/Tactician/9th-Level Features/Index.md
  • Rules/Features/Tactician/Index.md
  • Rules/Features/Talent/10th-Level Features/Index.md
  • Rules/Features/Talent/1st-Level Features/Index.md
  • Rules/Features/Talent/2nd-Level Features/Index.md
  • Rules/Features/Talent/3rd-Level Features/Index.md
  • Rules/Features/Talent/4th-Level Features/Index.md
  • Rules/Features/Talent/5th-Level Features/Index.md
  • Rules/Features/Talent/6th-Level Features/Index.md
  • Rules/Features/Talent/7th-Level Features/Index.md
  • Rules/Features/Talent/8th-Level Features/Index.md
  • Rules/Features/Talent/9th-Level Features/Index.md
  • Rules/Features/Talent/Index.md
  • Rules/Features/Troubadour/10th-Level Features/Index.md
  • Rules/Features/Troubadour/1st-Level Features/Index.md
  • Rules/Features/Troubadour/2nd-Level Features/Index.md
  • Rules/Features/Troubadour/3rd-Level Features/Index.md
  • Rules/Features/Troubadour/4th-Level Features/Index.md
  • Rules/Features/Troubadour/5th-Level Features/Index.md
  • Rules/Features/Troubadour/6th-Level Features/Index.md
  • Rules/Features/Troubadour/7th-Level Features/Index.md
  • Rules/Features/Troubadour/8th-Level Features/Index.md
  • Rules/Features/Troubadour/9th-Level Features/Index.md
  • Rules/Features/Troubadour/Index.md
  • Rules/Kits/_Index.md
  • Rules/Movement/_Index.md
  • Rules/Perks/_Index.md
  • Rules/Skills/_Index.md
  • Rules/Titles/_Index.md
  • Rules/Treasures/_Index.md

per-class level roll-up page — the unified layout files each feature individually — 100 (100 in the final release)

  • Rules/Classes By Level/Censor/10th Level Features.md
  • Rules/Classes By Level/Censor/1st Level Features.md
  • Rules/Classes By Level/Censor/2nd Level Features.md
  • Rules/Classes By Level/Censor/3rd Level Features.md
  • Rules/Classes By Level/Censor/4th Level Features.md
  • Rules/Classes By Level/Censor/5th Level Features.md
  • Rules/Classes By Level/Censor/6th Level Features.md
  • Rules/Classes By Level/Censor/7th Level Features.md
  • Rules/Classes By Level/Censor/8th Level Features.md
  • Rules/Classes By Level/Censor/9th Level Features.md
  • Rules/Classes By Level/Censor/Basics.md
  • Rules/Classes By Level/Conduit/10th Level Features.md
  • Rules/Classes By Level/Conduit/1st Level Features.md
  • Rules/Classes By Level/Conduit/2nd Level Features.md
  • Rules/Classes By Level/Conduit/3rd Level Features.md
  • Rules/Classes By Level/Conduit/4th Level Features.md
  • Rules/Classes By Level/Conduit/5th Level Features.md
  • Rules/Classes By Level/Conduit/6th Level Features.md
  • Rules/Classes By Level/Conduit/7th Level Features.md
  • Rules/Classes By Level/Conduit/8th Level Features.md
  • Rules/Classes By Level/Conduit/9th Level Features.md
  • Rules/Classes By Level/Conduit/Basics.md
  • Rules/Classes By Level/Elementalist/10th Level Features.md
  • Rules/Classes By Level/Elementalist/1st Level Features.md
  • Rules/Classes By Level/Elementalist/2nd Level Features.md
  • Rules/Classes By Level/Elementalist/3rd Level Features.md
  • Rules/Classes By Level/Elementalist/4th Level Features.md
  • Rules/Classes By Level/Elementalist/5th Level Features.md
  • Rules/Classes By Level/Elementalist/6th Level Features.md
  • Rules/Classes By Level/Elementalist/7th Level Features.md
  • Rules/Classes By Level/Elementalist/8th Level Features.md
  • Rules/Classes By Level/Elementalist/9th Level Features.md
  • Rules/Classes By Level/Elementalist/Basics.md
  • Rules/Classes By Level/Fury/10th Level Features.md
  • Rules/Classes By Level/Fury/1st Level Features.md
  • Rules/Classes By Level/Fury/2nd Level Features.md
  • Rules/Classes By Level/Fury/3rd Level Features.md
  • Rules/Classes By Level/Fury/4th Level Features.md
  • Rules/Classes By Level/Fury/5th Level Features.md
  • Rules/Classes By Level/Fury/6th Level Features.md
  • Rules/Classes By Level/Fury/7th Level Features.md
  • Rules/Classes By Level/Fury/8th Level Features.md
  • Rules/Classes By Level/Fury/9th Level Features.md
  • Rules/Classes By Level/Fury/Basics.md
  • Rules/Classes By Level/Fury/Stormwight Kits.md
  • Rules/Classes By Level/Null/10th Level Features.md
  • Rules/Classes By Level/Null/1st Level Features.md
  • Rules/Classes By Level/Null/2nd Level Features.md
  • Rules/Classes By Level/Null/3rd Level Features.md
  • Rules/Classes By Level/Null/4th Level Features.md
  • Rules/Classes By Level/Null/5th Level Features.md
  • Rules/Classes By Level/Null/6th Level Features.md
  • Rules/Classes By Level/Null/7th Level Features.md
  • Rules/Classes By Level/Null/8th Level Features.md
  • Rules/Classes By Level/Null/9th Level Features.md
  • Rules/Classes By Level/Null/Basics.md
  • Rules/Classes By Level/Shadow/10th Level Features.md
  • Rules/Classes By Level/Shadow/1st Level Features.md
  • Rules/Classes By Level/Shadow/2nd Level Features.md
  • Rules/Classes By Level/Shadow/3rd Level Features.md
  • Rules/Classes By Level/Shadow/4th Level Features.md
  • Rules/Classes By Level/Shadow/5th Level Features.md
  • Rules/Classes By Level/Shadow/6th Level Features.md
  • Rules/Classes By Level/Shadow/7th Level Features.md
  • Rules/Classes By Level/Shadow/8th Level Features.md
  • Rules/Classes By Level/Shadow/9th Level Features.md
  • Rules/Classes By Level/Shadow/Basics.md
  • Rules/Classes By Level/Tactician/10th Level Features.md
  • Rules/Classes By Level/Tactician/1st Level Features.md
  • Rules/Classes By Level/Tactician/2nd Level Features.md
  • Rules/Classes By Level/Tactician/3rd Level Features.md
  • Rules/Classes By Level/Tactician/4th Level Features.md
  • Rules/Classes By Level/Tactician/5th Level Features.md
  • Rules/Classes By Level/Tactician/6th Level Features.md
  • Rules/Classes By Level/Tactician/7th Level Features.md
  • Rules/Classes By Level/Tactician/8th Level Features.md
  • Rules/Classes By Level/Tactician/9th Level Features.md
  • Rules/Classes By Level/Tactician/Basics.md
  • Rules/Classes By Level/Talent/10th Level Features.md
  • Rules/Classes By Level/Talent/1st Level Features.md
  • Rules/Classes By Level/Talent/2nd Level Features.md
  • Rules/Classes By Level/Talent/3rd Level Features.md
  • Rules/Classes By Level/Talent/4th Level Features.md
  • Rules/Classes By Level/Talent/5th Level Features.md
  • Rules/Classes By Level/Talent/6th Level Features.md
  • Rules/Classes By Level/Talent/7th Level Features.md
  • Rules/Classes By Level/Talent/8th Level Features.md
  • Rules/Classes By Level/Talent/9th Level Features.md
  • Rules/Classes By Level/Talent/Basics.md
  • Rules/Classes By Level/Troubadour/10th Level Features.md
  • Rules/Classes By Level/Troubadour/1st Level Features.md
  • Rules/Classes By Level/Troubadour/2nd Level Features.md
  • Rules/Classes By Level/Troubadour/3rd Level Features.md
  • Rules/Classes By Level/Troubadour/4th Level Features.md
  • Rules/Classes By Level/Troubadour/5th Level Features.md
  • Rules/Classes By Level/Troubadour/6th Level Features.md
  • Rules/Classes By Level/Troubadour/7th Level Features.md
  • Rules/Classes By Level/Troubadour/8th Level Features.md
  • Rules/Classes By Level/Troubadour/9th Level Features.md
  • Rules/Classes By Level/Troubadour/Basics.md

retired layout only — this path existed in an older data-md-dse release and the entity has no name+type+book match in the current unified tree — 88 (0 in the final release)

  • Abilities/Common Maneuvers/Drink Potion.md (historical release only)
  • Abilities/Conduit/3-Piety Abilities/Angel Of Wrath.md (historical release only)
  • Abilities/Conduit/3-Piety Abilities/Punishing Smite.md (historical release only)
  • Abilities/Conduit/3-Piety Abilities/Righteous Rebuke.md (historical release only)
  • Abilities/Conduit/3-Piety Abilities/Thunder Of The Divine.md (historical release only)
  • Abilities/Conduit/5-Piety Abilities/Armor Of The Faithful.md (historical release only)
  • Abilities/Conduit/5-Piety Abilities/Divine Weakness.md (historical release only)
  • Abilities/Conduit/5-Piety Abilities/Terrifying Smite.md (historical release only)
  • Abilities/Conduit/5-Piety Abilities/Wave Of Virtue.md (historical release only)
  • Abilities/Conduit/Signature Abilities/Holy Lance.md (historical release only)
  • Abilities/Conduit/Triggered Actions/Divine Disruption.md (historical release only)
  • Abilities/Conduit/Triggered Actions/Holy Infusion.md (historical release only)
  • Abilities/Elementalist/3-Essence Abilities/Burn!.md (historical release only)
  • Abilities/Elementalist/3-Essence Abilities/Punch The Earth.md (historical release only)
  • Abilities/Elementalist/3-Essence Abilities/Stare Into The Abyss.md (historical release only)
  • Abilities/Elementalist/5-Essence Abilities/Incorporealness.md (historical release only)
  • Abilities/Elementalist/5-Essence Abilities/Nourishing Rain.md (historical release only)
  • Abilities/Elementalist/5-Essence Abilities/Open The Earth.md (historical release only)
  • Abilities/Elementalist/Signature Abilities/Debris.md (historical release only)
  • Abilities/Elementalist/Signature Abilities/Fire Lance.md (historical release only)
  • Abilities/Elementalist/Signature Abilities/Growing Pains.md (historical release only)
  • Abilities/Elementalist/Signature Abilities/Void Ray.md (historical release only)
  • Abilities/Elementalist/Triggered Actions/Earthen Force.md (historical release only)
  • Abilities/Elementalist/Triggered Actions/Mend The Soul.md (historical release only)
  • Abilities/Elementalist/Triggered Actions/Void Embrace.md (historical release only)
  • Abilities/Fury/3-Rage Abilities/Death Before Beauty.md (historical release only)
  • Abilities/Fury/3-Rage Abilities/Stab Me So I Can Pull Myself Closer To You.md (historical release only)
  • Abilities/Fury/3-Rage Abilities/Whirlwind Strike.md (historical release only)
  • Abilities/Fury/5-Rage Abilities/Brute Precision.md (historical release only)
  • Abilities/Fury/5-Rage Abilities/Dying Blow.md (historical release only)
  • Abilities/Fury/5-Rage Abilities/Primordial Shockwave.md (historical release only)
  • Abilities/Fury/Signature Abilities/Humiliating Strike.md (historical release only)
  • Abilities/Fury/Signature Abilities/Impaling Strike.md (historical release only)
  • Abilities/Fury/Triggered Actions/Regeneration.md (historical release only)
  • Abilities/Fury/Triggered Actions/Relentless Toss.md (historical release only)
  • Abilities/Fury/Triggered Actions/Uncanny Dodge.md (historical release only)
  • Abilities/Shadow/3-Insight Abilities/Blade Dance.md (historical release only)
  • Abilities/Shadow/3-Insight Abilities/Quick Pursuit.md (historical release only)
  • Abilities/Shadow/3-Insight Abilities/Wounding Strike.md (historical release only)
  • Abilities/Shadow/5-Insight Abilities/Impairing Shot.md (historical release only)
  • Abilities/Shadow/5-Insight Abilities/Quickness.md (historical release only)
  • Abilities/Shadow/Signature Abilities/Distracting Pain.md (historical release only)
  • Abilities/Shadow/Signature Abilities/Shot And Step.md (historical release only)
  • Abilities/Shadow/Signature Abilities/Sucker Slice.md (historical release only)
  • Abilities/Shadow/Triggered Actions/Misdirection.md (historical release only)
  • Abilities/Tactician/3-Focus Abilities/Dazing Blow.md (historical release only)
  • Abilities/Tactician/3-Focus Abilities/Phalanx Forward!.md (historical release only)
  • Abilities/Tactician/5-Focus Abilities/Their Weakness Is Our Strength.md (historical release only)
  • Abilities/Tactician/Triggered Actions/Flank Them Now!.md (historical release only)
  • Ancestries/Elf, High.md (historical release only)
  • Ancestries/Elf, Wode.md (historical release only)
  • Bestiary/Monsters/Gnolls/Statblocks/Gnoll Chainflai.md (historical release only)
  • Bestiary/Monsters/Orcs/Features/Orc Malice Malice Features.md (historical release only)
  • Bestiary/Monsters/Undead/Features/At the start of any undeads turn you can spend Malice to activate one of the following features.md (historical release only)
  • Bestiary/Monsters/Wyverns/Features/Wyvern Malice Malice Features.md (historical release only)
  • Bestiary/Monsters/Xorannox the Tyract/Statblocks/Toxic Eye Level 6 Hexer.md (historical release only)
  • Bestiary/monsters/Monsters/Gnolls/Statblocks/Gnoll Chainflai.md (historical release only)
  • Bestiary/monsters/Monsters/Goblins/Features/Goblin Malice Malice Features.md (historical release only)
  • Bestiary/monsters/Monsters/Hobgoblins/Features/Hobgoblin Malice Malice Features.md (historical release only)
  • Bestiary/monsters/Monsters/Kingfissure Worm/Statblocks/Kingfissure Wor.md (historical release only)
  • Bestiary/monsters/Monsters/Lizardfolks/Features/Lizardfolk Malice Malice Features.md (historical release only)
  • Bestiary/monsters/Monsters/Medusas/Features/Medusa Malice Malice Features.md (historical release only)
  • Bestiary/monsters/Monsters/Orcs/Features/Orc Malice Malice Features.md (historical release only)
  • Bestiary/monsters/Monsters/Undead/Features/At the start of any undeads turn you can spend Malice to activate one of the following features.md (historical release only)
  • Bestiary/monsters/Monsters/Wyverns/Features/Wyvern Malice Malice Features.md (historical release only)
  • Bestiary/monsters/Monsters/Xorannox the Tyract/Statblocks/Toxic Eye Level 6 Hexer.md (historical release only)
  • Complications/Devil Deal.md (historical release only)
  • Complications/Punishment Curse.md (historical release only)
  • Complications/Vivid Dreams.md (historical release only)
  • Complications/War Of The Guilds.md (historical release only)
  • Cultures/Organizations/Anarchic.md (historical release only)
  • Cultures/Upbringing/Illegal.md (historical release only)
  • Kits/Caster Kits/Bloodpact.md (historical release only)
  • Kits/Caster Kits/Caster Kit Table.md (historical release only)
  • Kits/Caster Kits/Frigid.md (historical release only)
  • Kits/Caster Kits/Meditator.md (historical release only)
  • Kits/Caster Kits/Missile.md (historical release only)
  • Kits/Caster Kits/Nature Calling.md (historical release only)
  • Kits/Caster Kits/Rook.md (historical release only)
  • Kits/Caster Kits/Spellslinger.md (historical release only)
  • Kits/Caster Kits/Ward Weaver.md (historical release only)
  • Kits/Martial Kits/Martial Kits Table.md (historical release only)
  • Rules/Abilities/Elementalist/1st-Level Features/Ry of Agonizing Self Reflection.md (historical release only)
  • Rules/Abilities/Elementalist/8th-Level Features/Source of Earth Statblock.md (historical release only)
  • Rules/Abilities/Fury/1st-Level Features/1st Level Aspect Features Tables.md (historical release only)
  • Rules/Abilities/Shadow/2nd-Level Features/In a Puff of Smoke.md (historical release only)
  • Rules/Abilities/Tactician/9th-Level Features/Squad.md (historical release only)
  • Rules/Features/Elementalist/8th-Level Features/Source of Earth Statblock.md (historical release only)

merged upstream: subclass ability container page — the unified layout files each ability individually — 63 (63 in the final release)

  • Rules/Features/Censor/2nd-Level Features/2nd Level Exorcist Ability.md
  • Rules/Features/Censor/2nd-Level Features/2nd Level Oracle Ability.md
  • Rules/Features/Censor/2nd-Level Features/2nd Level Paragon Ability.md
  • Rules/Features/Censor/6th-Level Features/6th Level Exorcist Abilities.md
  • Rules/Features/Censor/6th-Level Features/6th Level Oracle Abilities.md
  • Rules/Features/Censor/6th-Level Features/6th Level Paragon Abilities.md
  • Rules/Features/Censor/9th-Level Features/9th Level Exorcist Abilities.md
  • Rules/Features/Censor/9th-Level Features/9th Level Oracle Abilities.md
  • Rules/Features/Censor/9th-Level Features/9th Level Paragon Abilities.md
  • Rules/Features/Fury/2nd-Level Features/2nd Level Berserker Ability.md
  • Rules/Features/Fury/2nd-Level Features/2nd Level Reaver Ability.md
  • Rules/Features/Fury/2nd-Level Features/2nd Level Stormwight Ability.md
  • Rules/Features/Fury/6th-Level Features/6th Level Berserker Abilities.md
  • Rules/Features/Fury/6th-Level Features/6th Level Reaver Abilities.md
  • Rules/Features/Fury/6th-Level Features/6th Level Stormwight Abilities.md
  • Rules/Features/Fury/9th-Level Features/9th Level Berserker Abilities.md
  • Rules/Features/Fury/9th-Level Features/9th Level Reaver Abilities.md
  • Rules/Features/Fury/9th-Level Features/9th Level Stormwight Abilities.md
  • Rules/Features/Null/2nd-Level Features/2nd Level Chronokinetic Ability.md
  • Rules/Features/Null/2nd-Level Features/2nd Level Cryokinetic Ability.md
  • Rules/Features/Null/2nd-Level Features/2nd Level Metakinetic Ability.md
  • Rules/Features/Null/6th-Level Features/6th Level Chronokinetic Abilities.md
  • Rules/Features/Null/6th-Level Features/6th Level Cryokinetic Abilities.md
  • Rules/Features/Null/6th-Level Features/6th Level Metakinetic Abilities.md
  • Rules/Features/Null/9th-Level Features/9th Level Chronokinetic Abilities.md
  • Rules/Features/Null/9th-Level Features/9th Level Cryokinetic Abilities.md
  • Rules/Features/Null/9th-Level Features/9th Level Metakinetic Abilities.md
  • Rules/Features/Shadow/2nd-Level Features/2nd Level Black Ash Ability.md
  • Rules/Features/Shadow/2nd-Level Features/2nd Level Caustic Alchemy Ability.md
  • Rules/Features/Shadow/2nd-Level Features/2nd Level Harlequin Mask Ability.md
  • Rules/Features/Shadow/6th-Level Features/6th Level Black Ash Abilities.md
  • Rules/Features/Shadow/6th-Level Features/6th Level Caustic Alchemy Abilities.md
  • Rules/Features/Shadow/6th-Level Features/6th Level Harlequin Mask Abilities.md
  • Rules/Features/Shadow/9th-Level Features/9th Level Black Ash Abilities.md
  • Rules/Features/Shadow/9th-Level Features/9th Level Caustic Alchemy Abilities.md
  • Rules/Features/Shadow/9th-Level Features/9th Level Harlequin Mask Abilities.md
  • Rules/Features/Tactician/2nd-Level Features/2nd Level Insurgent Ability.md
  • Rules/Features/Tactician/2nd-Level Features/2nd Level Mastermind Ability.md
  • Rules/Features/Tactician/2nd-Level Features/2nd Level Vanguard Ability.md
  • Rules/Features/Tactician/6th-Level Features/6th Level Insurgent Abilities.md
  • Rules/Features/Tactician/6th-Level Features/6th Level Mastermind Abilities.md
  • Rules/Features/Tactician/6th-Level Features/6th Level Vanguard Abilities.md
  • Rules/Features/Tactician/9th-Level Features/9th Level Insurgent Abilities.md
  • Rules/Features/Tactician/9th-Level Features/9th Level Mastermind Abilities.md
  • Rules/Features/Tactician/9th-Level Features/9th Level Vanguard Abilities.md
  • Rules/Features/Talent/2nd-Level Features/2nd Level Chronopathy Ability.md
  • Rules/Features/Talent/2nd-Level Features/2nd Level Telekinesis Ability.md
  • Rules/Features/Talent/2nd-Level Features/2nd Level Telepathy Ability.md
  • Rules/Features/Talent/6th-Level Features/6th Level Chronopathy Abilities.md
  • Rules/Features/Talent/6th-Level Features/6th Level Telekinesis Abilities.md
  • Rules/Features/Talent/6th-Level Features/6th Level Telepathy Abilities.md
  • Rules/Features/Talent/9th-Level Features/9th Level Chronopathy Abilities.md
  • Rules/Features/Talent/9th-Level Features/9th Level Telekinesis Abilities.md
  • Rules/Features/Talent/9th-Level Features/9th Level Telepathy Abilities.md
  • Rules/Features/Troubadour/2nd-Level Features/2nd Level Auteur Ability.md
  • Rules/Features/Troubadour/2nd-Level Features/2nd Level Duelist Ability.md
  • Rules/Features/Troubadour/2nd-Level Features/2nd Level Virtuoso Ability.md
  • Rules/Features/Troubadour/6th-Level Features/6th Level Auteur Abilities.md
  • Rules/Features/Troubadour/6th-Level Features/6th Level Duelist Abilities.md
  • Rules/Features/Troubadour/6th-Level Features/6th Level Virtuoso Abilities.md
  • Rules/Features/Troubadour/9th-Level Features/9th Level Auteur Abilities.md
  • Rules/Features/Troubadour/9th-Level Features/9th Level Duelist Abilities.md
  • Rules/Features/Troubadour/9th-Level Features/9th Level Virtuoso Abilities.md

merged upstream (3 → 1): the retainer role's Level 4/7/10 pages became one monster/retainer/role-advancement/<role>.md, so no single old path owns the rename — 52 (26 in the final release)

  • Bestiary/Retainers/Role Advancement Abilities/Ambusher abilities/Level 10 Role Advancement Ability.md
  • Bestiary/Retainers/Role Advancement Abilities/Ambusher abilities/Level 4 Role Advancement Ability.md
  • Bestiary/Retainers/Role Advancement Abilities/Ambusher abilities/Level 7 Role Advancement Ability.md
  • Bestiary/Retainers/Role Advancement Abilities/Artillery abilities/Level 10 Role Advancement Ability.md
  • Bestiary/Retainers/Role Advancement Abilities/Artillery abilities/Level 4 Role Advancement Ability.md
  • Bestiary/Retainers/Role Advancement Abilities/Artillery abilities/Level 7 Role Advancement Ability.md
  • Bestiary/Retainers/Role Advancement Abilities/Brute abilities/Level 10 Role Advancement Ability.md
  • Bestiary/Retainers/Role Advancement Abilities/Brute abilities/Level 4 Role Advancement Ability.md
  • Bestiary/Retainers/Role Advancement Abilities/Brute abilities/Level 7 Role Advancement Ability.md
  • Bestiary/Retainers/Role Advancement Abilities/Controller abilities/Level 10 Role Advancement Ability.md
  • Bestiary/Retainers/Role Advancement Abilities/Controller abilities/Level 4 Role Advancement Ability.md
  • Bestiary/Retainers/Role Advancement Abilities/Controller abilities/Level 7 Role Advancement Ability.md
  • Bestiary/Retainers/Role Advancement Abilities/Defender abilities/Level 10 Role Advancement Ability.md
  • Bestiary/Retainers/Role Advancement Abilities/Defender abilities/Level 4 Role Advancement Ability.md
  • Bestiary/Retainers/Role Advancement Abilities/Defender abilities/Level 7 Role Advancement Ability.md
  • Bestiary/Retainers/Role Advancement Abilities/Harrier abilities/Level 10 Role Advancement Ability.md
  • Bestiary/Retainers/Role Advancement Abilities/Harrier abilities/Level 4 Role Advancement Ability.md
  • Bestiary/Retainers/Role Advancement Abilities/Harrier abilities/Level 7 Role Advancement Ability.md
  • Bestiary/Retainers/Role Advancement Abilities/Hexer abilities/Level 10 Role Advancement Ability.md
  • Bestiary/Retainers/Role Advancement Abilities/Hexer abilities/Level 4 Role Advancement Ability.md
  • Bestiary/Retainers/Role Advancement Abilities/Mount abilities/Level 10 Role Advancement Ability.md
  • Bestiary/Retainers/Role Advancement Abilities/Mount abilities/Level 4 Role Advancement Ability.md
  • Bestiary/Retainers/Role Advancement Abilities/Mount abilities/Level 7 Role Advancement Ability.md
  • Bestiary/Retainers/Role Advancement Abilities/Support abilities/Level 10 Role Advancement Ability.md
  • Bestiary/Retainers/Role Advancement Abilities/Support abilities/Level 4 Role Advancement Ability.md
  • Bestiary/Retainers/Role Advancement Abilities/Support abilities/Level 7 Role Advancement Ability.md
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Ambusher abilities/Level 10 Role Advancement Ability.md (historical release only)
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Ambusher abilities/Level 4 Role Advancement Ability.md (historical release only)
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Ambusher abilities/Level 7 Role Advancement Ability.md (historical release only)
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Artillery abilities/Level 10 Role Advancement Ability.md (historical release only)
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Artillery abilities/Level 4 Role Advancement Ability.md (historical release only)
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Artillery abilities/Level 7 Role Advancement Ability.md (historical release only)
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Brute abilities/Level 10 Role Advancement Ability.md (historical release only)
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Brute abilities/Level 4 Role Advancement Ability.md (historical release only)
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Brute abilities/Level 7 Role Advancement Ability.md (historical release only)
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Controller abilities/Level 10 Role Advancement Ability.md (historical release only)
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Controller abilities/Level 4 Role Advancement Ability.md (historical release only)
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Controller abilities/Level 7 Role Advancement Ability.md (historical release only)
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Defender abilities/Level 10 Role Advancement Ability.md (historical release only)
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Defender abilities/Level 4 Role Advancement Ability.md (historical release only)
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Defender abilities/Level 7 Role Advancement Ability.md (historical release only)
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Harrier abilities/Level 10 Role Advancement Ability.md (historical release only)
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Harrier abilities/Level 4 Role Advancement Ability.md (historical release only)
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Harrier abilities/Level 7 Role Advancement Ability.md (historical release only)
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Hexer abilities/Level 10 Role Advancement Ability.md (historical release only)
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Hexer abilities/Level 4 Role Advancement Ability.md (historical release only)
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Mount abilities/Level 10 Role Advancement Ability.md (historical release only)
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Mount abilities/Level 4 Role Advancement Ability.md (historical release only)
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Mount abilities/Level 7 Role Advancement Ability.md (historical release only)
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Support abilities/Level 10 Role Advancement Ability.md (historical release only)
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Support abilities/Level 4 Role Advancement Ability.md (historical release only)
  • Bestiary/monsters/Retainers/Role Advancement Abilities/Support abilities/Level 7 Role Advancement Ability.md (historical release only)

duplicate in the final legacy release — another old path maps to the same unified file and carries the rename (the old tree filed one entity under two paths) — 45 (45 in the final release)

  • Rules/Abilities/Conduit/4th-Level Features/Beacon of Grace.md
  • Rules/Abilities/Conduit/4th-Level Features/Blessing of Secrets.md
  • Rules/Abilities/Conduit/4th-Level Features/Penance.md
  • Rules/Abilities/Conduit/4th-Level Features/Sanctuary.md
  • Rules/Abilities/Conduit/4th-Level Features/Vessel of Retribution.md
  • Rules/Abilities/Conduit/7th-Level Features/Arise.md
  • Rules/Abilities/Conduit/7th-Level Features/Blessing of Steel.md
  • Rules/Abilities/Conduit/7th-Level Features/Blessing of the Blade.md
  • Rules/Abilities/Conduit/7th-Level Features/Drag the Unworthy.md
  • Rules/Abilities/Elementalist/4th-Level Features/Heart of the Wode.md
  • Rules/Abilities/Elementalist/4th-Level Features/Muse of Fire.md
  • Rules/Abilities/Elementalist/4th-Level Features/Return to Oblivion.md
  • Rules/Abilities/Elementalist/4th-Level Features/Summon Source of Earth.md
  • Rules/Abilities/Elementalist/4th-Level Features/World Torn Asunder.md
  • Rules/Abilities/Elementalist/5th-Level Features/Heart of the Wode.md
  • Rules/Abilities/Elementalist/5th-Level Features/Luminous Champion Aloft.md
  • Rules/Abilities/Elementalist/5th-Level Features/Magma Titan.md
  • Rules/Abilities/Elementalist/5th-Level Features/Meteor.md
  • Rules/Abilities/Elementalist/5th-Level Features/Muse of Fire.md
  • Rules/Abilities/Elementalist/5th-Level Features/Return to Oblivion.md
  • Rules/Abilities/Elementalist/5th-Level Features/Summon Source of Earth.md
  • Rules/Abilities/Elementalist/5th-Level Features/The Wode Remembers and Returns.md
  • Rules/Abilities/Elementalist/5th-Level Features/World Torn Asunder.md
  • Rules/Abilities/Elementalist/8th-Level Features/Earth Rejects You.md
  • Rules/Abilities/Elementalist/8th-Level Features/Prism.md
  • Rules/Abilities/Elementalist/8th-Level Features/The Green Defends Its Servants.md
  • Rules/Abilities/Elementalist/8th-Level Features/Unquenchable Fire.md
  • Rules/Abilities/Troubadour/5th-Level Features/Take Two.md
  • Rules/Abilities/Troubadour/5th-Level Features/We Cant Be Upstaged.md
  • Rules/Features/Conduit/4th-Level Features/Blessing of Life.md
  • Rules/Features/Conduit/4th-Level Features/Impervious Touch.md
  • Rules/Features/Conduit/4th-Level Features/Improved Hands of the Maker.md
  • Rules/Features/Conduit/4th-Level Features/Improved Sanctified Weapon.md
  • Rules/Features/Conduit/4th-Level Features/Invocation of the Heart.md
  • Rules/Features/Conduit/4th-Level Features/Light of Revelation.md
  • Rules/Features/Conduit/4th-Level Features/Oracular Warning.md
  • Rules/Features/Conduit/4th-Level Features/Saints Epiphany.md
  • Rules/Features/Conduit/4th-Level Features/Seance.md
  • Rules/Features/Conduit/4th-Level Features/Windwalk.md
  • Rules/Features/Conduit/4th-Level Features/Wode Road.md
  • Rules/Features/Elementalist/1st-Level Features/Signature Abilities.md
  • Rules/Features/Fury/1st-Level Features/Signature Ability.md
  • Rules/Features/Null/1st-Level Features/Signature Abilities.md
  • Rules/Features/Shadow/1st-Level Features/Signature Ability.md
  • Rules/Features/Talent/1st-Level Features/Signature Abilities.md

no-frontmatter (repo scaffolding: README/LICENSE/etc.) — 38 (5 in the final release)

  • Abilities/Common Actions/index.md (historical release only)
  • Abilities/Common Maneuvers/index.md (historical release only)
  • Abilities/Conduit/index.md (historical release only)
  • Abilities/Elementalist/index.md (historical release only)
  • Abilities/Fury/index.md (historical release only)
  • Abilities/Shadow/index.md (historical release only)
  • Abilities/Tactician/index.md (historical release only)
  • Adventures/Bay of Blackbottom/Bay of Blackbottom.md (historical release only)
  • Adventures/README.md
  • Adventures/adventures.md
  • Bestiary/Demon Bendrak.md (historical release only)
  • Bestiary/Demon Chorogaunt.md (historical release only)
  • Bestiary/Demon Ensnarer.md (historical release only)
  • Bestiary/Demon Frenzied.md (historical release only)
  • Bestiary/Demon Muceron.md (historical release only)
  • Bestiary/Demon Pitling.md (historical release only)
  • Bestiary/Demon Remasch.md (historical release only)
  • Bestiary/Demon Ruinant.md (historical release only)
  • Bestiary/Demon Torlas.md (historical release only)
  • Bestiary/Demon Villain Power.md (historical release only)
  • Bestiary/Draw Steel Bestiary (original).md (historical release only)
  • Bestiary/Draw Steel Bestiary.md (historical release only)
  • Bestiary/Goblin Villain Power.md (historical release only)
  • Bestiary/Human Villain Power.md (historical release only)
  • Bestiary/README.md
  • Bestiary/Radenwight Ratagast.md (historical release only)
  • Bestiary/Radenwight Villain Power.md (historical release only)
  • Bestiary/Siege Hawk.md (historical release only)
  • Bestiary/War Dog Cognivite.md (historical release only)
  • Bestiary/War Dog Portalite.md (historical release only)
  • Bestiary/War Dog Villain Power.md (historical release only)
  • Bestiary/Warg.md (historical release only)
  • Draw Steel Rules (original).md (historical release only)
  • Draw Steel Rules.md (historical release only)
  • README.md
  • Rules/Draw Steel Rules (raw).md (historical release only)
  • Rules/Draw Steel Rules.md (historical release only)
  • Rules/README.md

merged upstream (2 → 1): the heroic resource's in-combat and out-of-combat pages became one feature page named for the resource itself — 33 (18 in the final release)

  • Rules/Abilities/Censor/1st-Level Features/Wrath Outside of Combat.md (historical release only)
  • Rules/Abilities/Censor/1st-Level Features/Wrath in Combat.md (historical release only)
  • Rules/Abilities/Conduit/1st-Level Features/Piety Outside of Combat.md (historical release only)
  • Rules/Abilities/Elementalist/1st-Level Features/Essence Outside of Combat.md (historical release only)
  • Rules/Abilities/Elementalist/1st-Level Features/Essence in Combat.md (historical release only)
  • Rules/Abilities/Fury/1st-Level Features/Ferocity Outside of Combat.md (historical release only)
  • Rules/Abilities/Fury/1st-Level Features/Ferocity in Combat.md (historical release only)
  • Rules/Abilities/Null/1st-Level Features/Discipline Outside of Combat.md (historical release only)
  • Rules/Abilities/Shadow/1st-Level Features/Insight Outside of Combat.md (historical release only)
  • Rules/Abilities/Shadow/1st-Level Features/Insight in Combat.md (historical release only)
  • Rules/Abilities/Tactician/1st-Level Features/Focus Outside of Combat.md (historical release only)
  • Rules/Abilities/Tactician/1st-Level Features/Focus in Combat.md (historical release only)
  • Rules/Abilities/Talent/1st-Level Features/Clarity Outside of Combat.md (historical release only)
  • Rules/Abilities/Troubadour/1st-Level Features/Drama Outside of Combat.md (historical release only)
  • Rules/Abilities/Troubadour/1st-Level Features/Drama in Combat.md (historical release only)
  • Rules/Features/Censor/1st-Level Features/Wrath Outside of Combat.md
  • Rules/Features/Censor/1st-Level Features/Wrath in Combat.md
  • Rules/Features/Conduit/1st-Level Features/Piety Outside of Combat.md
  • Rules/Features/Conduit/1st-Level Features/Piety in Combat.md
  • Rules/Features/Elementalist/1st-Level Features/Essence Outside of Combat.md
  • Rules/Features/Elementalist/1st-Level Features/Essence in Combat.md
  • Rules/Features/Fury/1st-Level Features/Ferocity Outside of Combat.md
  • Rules/Features/Fury/1st-Level Features/Ferocity in Combat.md
  • Rules/Features/Null/1st-Level Features/Discipline Outside of Combat.md
  • Rules/Features/Null/1st-Level Features/Discipline in Combat.md
  • Rules/Features/Shadow/1st-Level Features/Insight Outside of Combat.md
  • Rules/Features/Shadow/1st-Level Features/Insight in Combat.md
  • Rules/Features/Tactician/1st-Level Features/Focus Outside of Combat.md
  • Rules/Features/Tactician/1st-Level Features/Focus in Combat.md
  • Rules/Features/Talent/1st-Level Features/Clarity Outside of Combat.md
  • Rules/Features/Talent/1st-Level Features/Clarity in Combat.md
  • Rules/Features/Troubadour/1st-Level Features/Drama Outside of Combat.md
  • Rules/Features/Troubadour/1st-Level Features/Drama in Combat.md

merged upstream (11 → 1): the per-domain pages became one Domain Piety and Effects feature — 24 (12 in the final release)

  • Rules/Abilities/Conduit/1st-Level Features/Creation Domain Piety and Effect.md (historical release only)
  • Rules/Abilities/Conduit/1st-Level Features/Death Domain Piety and Effect.md (historical release only)
  • Rules/Abilities/Conduit/1st-Level Features/Fate Domain Piety and Effect.md (historical release only)
  • Rules/Abilities/Conduit/1st-Level Features/Knowledge Domain Piety and Effect.md (historical release only)
  • Rules/Abilities/Conduit/1st-Level Features/Life Domain Piety and Effect.md (historical release only)
  • Rules/Abilities/Conduit/1st-Level Features/Love Domain Piety and Effect.md (historical release only)
  • Rules/Abilities/Conduit/1st-Level Features/Nature Domain Piety and Effect.md (historical release only)
  • Rules/Abilities/Conduit/1st-Level Features/Protection Domain Piety and Effect.md (historical release only)
  • Rules/Abilities/Conduit/1st-Level Features/Storm Domain Piety and Effect.md (historical release only)
  • Rules/Abilities/Conduit/1st-Level Features/Sun Domain Piety and Effect.md (historical release only)
  • Rules/Abilities/Conduit/1st-Level Features/Trickery Domain Piety and Effect.md (historical release only)
  • Rules/Abilities/Conduit/1st-Level Features/War Domain Piety and Effect.md (historical release only)
  • Rules/Features/Conduit/1st-Level Features/Creation Domain Piety and Effect.md
  • Rules/Features/Conduit/1st-Level Features/Death Domain Piety and Effect.md
  • Rules/Features/Conduit/1st-Level Features/Fate Domain Piety and Effect.md
  • Rules/Features/Conduit/1st-Level Features/Knowledge Domain Piety and Effect.md
  • Rules/Features/Conduit/1st-Level Features/Life Domain Piety and Effect.md
  • Rules/Features/Conduit/1st-Level Features/Love Domain Piety and Effect.md
  • Rules/Features/Conduit/1st-Level Features/Nature Domain Piety and Effect.md
  • Rules/Features/Conduit/1st-Level Features/Protection Domain Piety and Effect.md
  • Rules/Features/Conduit/1st-Level Features/Storm Domain Piety and Effect.md
  • Rules/Features/Conduit/1st-Level Features/Sun Domain Piety and Effect.md
  • Rules/Features/Conduit/1st-Level Features/Trickery Domain Piety and Effect.md
  • Rules/Features/Conduit/1st-Level Features/War Domain Piety and Effect.md

rules sub-section folded into its parent rule page upstream — 16 (15 in the final release)

  • Movement/Climbing Other Creatures.md (historical release only)
  • Rules/Movement/Big Versus Little.md
  • Rules/Movement/Burrowing Forced Movement.md
  • Rules/Movement/Climbing Other Creatures.md
  • Rules/Movement/Death Effects and Forced Movement.md
  • Rules/Movement/Dig Maneuver.md
  • Rules/Movement/Falling Far.md
  • Rules/Movement/Falling Onto Another Creature.md
  • Rules/Movement/Forced Into a Fall.md
  • Rules/Movement/Hurling Through Objects.md
  • Rules/Movement/Non Burrowing Creatures.md
  • Rules/Movement/Slamming Into Objects.md
  • Rules/Movement/Slamming into Creatures.md
  • Rules/Movement/Targeting Burrowing Creatures.md
  • Rules/Movement/Vertical.md
  • Rules/Movement/When a Creature Moves.md

whole-book aggregate page — the unified (Browse) layout has no book-level pages — 4 (3 in the final release)

  • Bestiary/Draw Steel Monsters - Unlinked.md
  • Bestiary/monsters/Draw Steel Monsters - Unlinked.md (historical release only)
  • Rules/Draw Steel Heroes - Unlinked.md
  • Rules/Draw Steel Heroes.md

chapter aggregate page with no unified counterpart — 2 (2 in the final release)

  • Rules/Chapters/Perks.md
  • Rules/Chapters/Rewards.md

no entity of this name+type+book in the unified tree (content removed or renamed beyond matching) — 1 (1 in the final release)

  • Rules/Kits/Kits Table.md

every same-named candidate belongs to an unsanctioned type family (class) — rejected rather than substituted (review M4) — 1 (0 in the final release)

  • Rules/Classes By Level/Fury/2nd Level Aspect Ability.md (historical release only)

every same-named candidate belongs to an unsanctioned type family (kit) — rejected rather than substituted (review M4) — 1 (0 in the final release)

  • Rules/Kits/Lets Dance.md (historical release only)

every same-named candidate belongs to an unsanctioned type family (complications) — rejected rather than substituted (review M4) — 1 (0 in the final release)

  • Complications/Elemental Absorption.md (historical release only)

every same-named candidate belongs to an unsanctioned type family (kits) — rejected rather than substituted (review M4) — 1 (0 in the final release)

  • Kits/Caster Kits/Dancer.md (historical release only)

unsafe on a case-insensitive filesystem — case-only rename (Movement/Burrow.mdmovement/burrow.md) — 1 (0 in the final release)

  • Movement/Burrow.md (historical release only)

unsafe on a case-insensitive filesystem — case-only rename (Movement/Crawl.mdmovement/crawl.md) — 1 (0 in the final release)

  • Movement/Crawl.md (historical release only)

unsafe on a case-insensitive filesystem — case-only rename (Movement/Fly.mdmovement/fly.md) — 1 (0 in the final release)

  • Movement/Fly.md (historical release only)

unsafe on a case-insensitive filesystem — case-only rename (Movement/Jump.mdmovement/jump.md) — 1 (0 in the final release)

  • Movement/Jump.md (historical release only)

unsafe on a case-insensitive filesystem — case-only rename (Movement/Shifting.mdmovement/shifting.md) — 1 (0 in the final release)

  • Movement/Shifting.md (historical release only)

unsafe on a case-insensitive filesystem — case-only rename (Movement/Teleport.mdmovement/teleport.md) — 1 (0 in the final release)

  • Movement/Teleport.md (historical release only)

unsafe on a case-insensitive filesystem — case-only rename (Movement/Walk.mdmovement/walk.md) — 1 (0 in the final release)

  • Movement/Walk.md (historical release only)

Final-release target collisions — 45

Two paths from the FINAL release resolve to one unified file — the old tree filed one entity twice. The higher-scoring path (ties broken lexicographically) keeps the mapping; the other is DROPPED from the map and left in place, so the map is a function on the final release.

Injectivity is a FINAL-RELEASE-ONLY property, by design. Across the union of all 243 releases the same entity legitimately lived at several paths, and those spellings never coexist in one vault — enforcing global injectivity would mean refusing to migrate users on older releases. A user on a transitional release (one whose tree mixes two layouts) can therefore see a non-zero blocked count: two of their files map to one destination, the first move wins deterministically (plan order is sorted by path), and the second is reported and left in place. Nothing is overwritten and nothing is lost; the second file simply keeps its old name.

  • feature/censor/level-4/blessing-of-life.mdRules/Features/Censor/4th-Level Features/Blessing of Life.md (mapped), Rules/Features/Conduit/4th-Level Features/Blessing of Life.md (dropped)
  • feature/censor/level-4/impervious-touch.mdRules/Features/Censor/4th-Level Features/Impervious Touch.md (mapped), Rules/Features/Conduit/4th-Level Features/Impervious Touch.md (dropped)
  • feature/censor/level-4/improved-hands-of-the-maker.mdRules/Features/Censor/4th-Level Features/Improved Hands of the Maker.md (mapped), Rules/Features/Conduit/4th-Level Features/Improved Hands of the Maker.md (dropped)
  • feature/censor/level-4/improved-sanctified-weapon.mdRules/Features/Censor/4th-Level Features/Improved Sanctified Weapon.md (mapped), Rules/Features/Conduit/4th-Level Features/Improved Sanctified Weapon.md (dropped)
  • feature/censor/level-4/invocation-of-the-heart.mdRules/Features/Censor/4th-Level Features/Invocation of the Heart.md (mapped), Rules/Features/Conduit/4th-Level Features/Invocation of the Heart.md (dropped)
  • feature/censor/level-4/light-of-revelation.mdRules/Features/Censor/4th-Level Features/Light of Revelation.md (mapped), Rules/Features/Conduit/4th-Level Features/Light of Revelation.md (dropped)
  • feature/censor/level-4/oracular-warning.mdRules/Features/Censor/4th-Level Features/Oracular Warning.md (mapped), Rules/Features/Conduit/4th-Level Features/Oracular Warning.md (dropped)
  • feature/censor/level-4/saints-epiphany.mdRules/Features/Censor/4th-Level Features/Saints Epiphany.md (mapped), Rules/Features/Conduit/4th-Level Features/Saints Epiphany.md (dropped)
  • feature/censor/level-4/seance.mdRules/Features/Censor/4th-Level Features/Seance.md (mapped), Rules/Features/Conduit/4th-Level Features/Seance.md (dropped)
  • feature/censor/level-4/windwalk.mdRules/Features/Censor/4th-Level Features/Windwalk.md (mapped), Rules/Features/Conduit/4th-Level Features/Windwalk.md (dropped)
  • feature/censor/level-4/wode-road.mdRules/Features/Censor/4th-Level Features/Wode Road.md (mapped), Rules/Features/Conduit/4th-Level Features/Wode Road.md (dropped)
  • feature/troubadour/level-1/signature-ability.mdRules/Features/Censor/1st-Level Features/Signature Ability.md (mapped), Rules/Features/Fury/1st-Level Features/Signature Ability.md (dropped)
  • feature/troubadour/level-1/signature-ability.mdRules/Features/Censor/1st-Level Features/Signature Ability.md (mapped), Rules/Features/Shadow/1st-Level Features/Signature Ability.md (dropped)
  • feature/ability/conduit/level-4/blessing-of-secrets.mdRules/Features/Conduit/4th-Level Features/Blessing of Secrets.md (mapped), Rules/Abilities/Conduit/4th-Level Features/Blessing of Secrets.md (dropped)
  • feature/ability/troubadour/level-5/take-two.mdRules/Features/Troubadour/5th-Level Features/Take Two.md (mapped), Rules/Abilities/Troubadour/5th-Level Features/Take Two.md (dropped)
  • feature/ability/troubadour/level-5/we-cant-be-upstaged.mdRules/Features/Troubadour/5th-Level Features/We Cant Be Upstaged.md (mapped), Rules/Abilities/Troubadour/5th-Level Features/We Cant Be Upstaged.md (dropped)
  • feature/ability/conduit/level-5/beacon-of-grace.mdRules/Abilities/Conduit/5th-Level Features/Beacon of Grace.md (mapped), Rules/Abilities/Conduit/4th-Level Features/Beacon of Grace.md (dropped)
  • feature/ability/conduit/level-5/penance.mdRules/Abilities/Conduit/5th-Level Features/Penance.md (mapped), Rules/Abilities/Conduit/4th-Level Features/Penance.md (dropped)
  • feature/ability/conduit/level-5/sanctuary.mdRules/Abilities/Conduit/5th-Level Features/Sanctuary.md (mapped), Rules/Abilities/Conduit/4th-Level Features/Sanctuary.md (dropped)
  • feature/ability/conduit/level-5/vessel-of-retribution.mdRules/Abilities/Conduit/5th-Level Features/Vessel of Retribution.md (mapped), Rules/Abilities/Conduit/4th-Level Features/Vessel of Retribution.md (dropped)
  • feature/ability/conduit/level-8/arise.mdRules/Abilities/Conduit/8th-Level Features/Arise.md (mapped), Rules/Abilities/Conduit/7th-Level Features/Arise.md (dropped)
  • feature/ability/conduit/level-8/blessing-of-steel.mdRules/Abilities/Conduit/8th-Level Features/Blessing of Steel.md (mapped), Rules/Abilities/Conduit/7th-Level Features/Blessing of Steel.md (dropped)
  • feature/ability/conduit/level-8/blessing-of-the-blade.mdRules/Abilities/Conduit/8th-Level Features/Blessing of the Blade.md (mapped), Rules/Abilities/Conduit/7th-Level Features/Blessing of the Blade.md (dropped)
  • feature/ability/conduit/level-8/drag-the-unworthy.mdRules/Abilities/Conduit/8th-Level Features/Drag the Unworthy.md (mapped), Rules/Abilities/Conduit/7th-Level Features/Drag the Unworthy.md (dropped)
  • feature/ability/elementalist/level-8/heart-of-the-wode.mdRules/Abilities/Elementalist/8th-Level Features/Heart of the Wode.md (mapped), Rules/Abilities/Elementalist/4th-Level Features/Heart of the Wode.md (dropped)
  • feature/ability/elementalist/level-8/muse-of-fire.mdRules/Abilities/Elementalist/8th-Level Features/Muse of Fire.md (mapped), Rules/Abilities/Elementalist/4th-Level Features/Muse of Fire.md (dropped)
  • feature/ability/elementalist/level-8/return-to-oblivion.mdRules/Abilities/Elementalist/8th-Level Features/Return to Oblivion.md (mapped), Rules/Abilities/Elementalist/4th-Level Features/Return to Oblivion.md (dropped)
  • feature/ability/elementalist/level-8/summon-source-of-earth.mdRules/Abilities/Elementalist/8th-Level Features/Summon Source of Earth.md (mapped), Rules/Abilities/Elementalist/4th-Level Features/Summon Source of Earth.md (dropped)
  • feature/ability/elementalist/level-8/world-torn-asunder.mdRules/Abilities/Elementalist/8th-Level Features/World Torn Asunder.md (mapped), Rules/Abilities/Elementalist/4th-Level Features/World Torn Asunder.md (dropped)
  • feature/ability/elementalist/level-8/heart-of-the-wode.mdRules/Abilities/Elementalist/8th-Level Features/Heart of the Wode.md (mapped), Rules/Abilities/Elementalist/5th-Level Features/Heart of the Wode.md (dropped)
  • feature/ability/elementalist/level-6/luminous-champion-aloft.mdRules/Abilities/Elementalist/6th-Level Features/Luminous Champion Aloft.md (mapped), Rules/Abilities/Elementalist/5th-Level Features/Luminous Champion Aloft.md (dropped)
  • feature/ability/elementalist/level-6/magma-titan.mdRules/Abilities/Elementalist/6th-Level Features/Magma Titan.md (mapped), Rules/Abilities/Elementalist/5th-Level Features/Magma Titan.md (dropped)
  • feature/ability/elementalist/level-6/meteor.mdRules/Abilities/Elementalist/6th-Level Features/Meteor.md (mapped), Rules/Abilities/Elementalist/5th-Level Features/Meteor.md (dropped)
  • feature/ability/elementalist/level-8/muse-of-fire.mdRules/Abilities/Elementalist/8th-Level Features/Muse of Fire.md (mapped), Rules/Abilities/Elementalist/5th-Level Features/Muse of Fire.md (dropped)
  • feature/ability/elementalist/level-8/return-to-oblivion.mdRules/Abilities/Elementalist/8th-Level Features/Return to Oblivion.md (mapped), Rules/Abilities/Elementalist/5th-Level Features/Return to Oblivion.md (dropped)
  • feature/ability/elementalist/level-8/summon-source-of-earth.mdRules/Abilities/Elementalist/8th-Level Features/Summon Source of Earth.md (mapped), Rules/Abilities/Elementalist/5th-Level Features/Summon Source of Earth.md (dropped)
  • feature/ability/elementalist/level-6/the-wode-remembers-and-returns.mdRules/Abilities/Elementalist/6th-Level Features/The Wode Remembers and Returns.md (mapped), Rules/Abilities/Elementalist/5th-Level Features/The Wode Remembers and Returns.md (dropped)
  • feature/ability/elementalist/level-8/world-torn-asunder.mdRules/Abilities/Elementalist/8th-Level Features/World Torn Asunder.md (mapped), Rules/Abilities/Elementalist/5th-Level Features/World Torn Asunder.md (dropped)
  • feature/ability/elementalist/level-9/earth-rejects-you.mdRules/Abilities/Elementalist/9th-Level Features/Earth Rejects You.md (mapped), Rules/Abilities/Elementalist/8th-Level Features/Earth Rejects You.md (dropped)
  • feature/ability/elementalist/level-9/prism.mdRules/Abilities/Elementalist/9th-Level Features/Prism.md (mapped), Rules/Abilities/Elementalist/8th-Level Features/Prism.md (dropped)
  • feature/ability/elementalist/level-9/the-green-defends-its-servants.mdRules/Abilities/Elementalist/9th-Level Features/The Green Defends Its Servants.md (mapped), Rules/Abilities/Elementalist/8th-Level Features/The Green Defends Its Servants.md (dropped)
  • feature/ability/elementalist/level-9/unquenchable-fire.mdRules/Abilities/Elementalist/9th-Level Features/Unquenchable Fire.md (mapped), Rules/Abilities/Elementalist/8th-Level Features/Unquenchable Fire.md (dropped)
  • rule/combat/signature-ability.mdRules/Features/Conduit/1st-Level Features/Signature Abilities.md (mapped), Rules/Features/Elementalist/1st-Level Features/Signature Abilities.md (dropped)
  • rule/combat/signature-ability.mdRules/Features/Conduit/1st-Level Features/Signature Abilities.md (mapped), Rules/Features/Null/1st-Level Features/Signature Abilities.md (dropped)
  • rule/combat/signature-ability.mdRules/Features/Conduit/1st-Level Features/Signature Abilities.md (mapped), Rules/Features/Talent/1st-Level Features/Signature Abilities.md (dropped)

New content with no old counterpart

1020 of the 3078 unified files were never in data-md-dse. They are created by the normal sync, not by the migration. By book:

count book
499 mcdm.heroes.v1
240 mcdm.beastheart.v1
227 mcdm.summoner.v1
54 mcdm.monsters.v1