@make_command is a decorator method provided by the tiddlyweb.manage module used to create twanager commands.
The following example creates a "hello" command:
from tiddlyweb.manage import make_command
@make_command()
def hello(args):
"""Say hello"""
print "Hello"