Imagine that you have written a software library for incrementally processing files from an input directory to an output directory; it handles walking the input directory, and keeping track of which files have already been handled (by maintaining a database in a hidden subdirectory), while the code you write that uses it just provides functions for naming the output file and creating it from the input file.

What would be a good name for this library?

(For what it's worth, it's in Python, and uses SQLite for the hidden database, which is stored under the destination tree. It assumes it is running on something reasonably UNIX-like.)

Once it has a name, it will probably end up on Github for anyone else who may find it useful.