I'll take a stab.
I'm actually not sure why you're getting that error but I'll start by just saying you'll often see ringo apps started with simply "ringo main.js", not with the longer "ringo ringo-cometd\app\main.js" like you've done.
So my first question is have you tried cd'ing to the ringo-cometd\app directory and run with just "ringo main.js"?
I think that might be your only problem.
Otherwise note that the current working directory is *not* part of Ringo's default module path, so if the above doesn't work the next thing to try is add e.g. RINGO_MODULE_PATH=. to your environment (or add "-m ." to your ringo command).
The default Ringo module path is to look in $RINGO_HOME/modules and $RINGO_HOME/packages.
From the error you showed, it looks like ringo is trying to find the tail end of ringo-cometd\app\main.js - i.e. the main.js part - as a module.
Hope this helps (not sure if it will or not :)).