Decided to take advantage of the revamped FS.fullPath() function to bring back some of the good things about Sphere v1. SphereFS is improved in miniSphere 4.8 to support relative paths:
var path1 = FS.fullPath('pig.png', '@/images'); // relative
var path2 = FS.fullPath('@/otherDir/pig.png', '@/images'); // absolute
// path1 = '@/images/whatever.png'
// path2 = '@/otherDir/pig.png'
The system modules can take advantage of that to allow conveniences like:
var pigImage = new Image('pig'); // relative to @/images
var superFatPig = new Image('@/otherDir/pig.png'); // absolute
The low-level Core API of course will still use full paths.