"SfR Fresh" - the SfR Freeware/Shareware Archive 
Some tips on debugging agent scripts:
The TestMaker scripting language supports several
handy functions when debugging problems in script files. The dir(),
vars(), globals() and locals() functions give insight into the
variables and functions in use within your scripts.
print dir() will display a list of names in the defined in the current
scope. Additionally, dir(object_name) will list the names defined in the object specified.
print vars( object_name ) will display a dictionary of bound names with the specified object.
The vars function only works on objects with a __dict__ attribute, which is all Java
objects and most functions.
print globals() prints a dictionary like object representing the variables defined in the
global namespace.
print locals() does the same but for the local namespace.