Hello,��
�� ��having the Hermes files and any Pharo7 image it is easy to inspect the Hermes package.
It only had to be read from the fileSystem.��
You can execute:
reader := HEBinaryReader new
stream: ('AST-Core.hermes' asFileReference) binaryReadStream;
yourself.
package := HEPackage readFrom: reader.
If you inspect the package you will see all the content in the Hermes file (the format allows us to have different root elements in the file, but we are exporting a package per file).
If it is useful we can include it as an inspector.
Cheers,
Pablo