I did think about a similar idea in context of the bunder plugin - State Snapshots
- The bundler allows us to configure state tiddlers, that should be snap shotted
- Currently such a snapshot can only be saved as a single JSON export file
- But I would want to save a sequence of snapshots
So the idea is to use Compound tiddlers to store snapshot data-tiddlers which contain the states similar to .multids
The Compound tiddler can store several data-tiddlers in 1 compound tiddler. That’s tiddler inception, which can be exported in a single file.
The cool thing is. The “snapshotted” tiddler could be $:/StoryList, which could open and close different tiddlers in a sequence.
eg:
title: Compound Sequence
type: text/vnd.tiddlywiki-multiple
Content
title: snapshot-2026-02-27-10:00.123
type: application/x-tiddler-dictionary
$:/state/toc/TableOfContents-Welcome--232442599: open
$:/state/toc/TableOfContents/Welcome-HelloThere--232442599: open
+
title: snapshot-2026-02-27-10:01.234
type: application/x-tiddler-dictionary
$:/state/toc/TableOfContents-Welcome--232442599: close
$:/state/toc/TableOfContents/Welcome-HelloThere--232442599: open
The compound tiddler can be imported into a new wiki. What’s missing is a bundler extension, that can play the sequence.
Since the TW UI is 100% state driven, everything is possible.
Just brainstorming