I'm brand new to android (let alone android wear) development and I have something like this in my watchface tap handler:
Uri.Builder builder = CalendarContract.CONTENT_URI.buildUpon();
builder.appendPath("time");
ContentUris.appendId(builder, startMillis);
Intent intent = new Intent(Intent.ACTION_VIEW)
.setData(builder.build())
.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
On tap I get the No application can handle this action message.
Of course, the Agenda app is there, and I have installed a few other calendar apps (eg google).