ocaml-claude: switch all .mli examples to open Claude + idiomatic short paths
The deeply prefixed `Claude.Module.X` style across every line was
hard to read at a glance, especially in the multi-block client.mli
and claude.mli files. Switched to a single `open Claude` at the top
of each {[ ... ]} block and short call sites underneath:
open Claude
let cfg =
Options.default
|> Options.with_model `Sonnet_4_5
|> Options.with_permission_mode Permissions.Mode.Accept_edits
Touches all six claude .mli files I'd added or amended for mdx
coverage (claude.mli, client.mli, options.mli, handler.mli, hooks.mli,
tool.mli, mcp_server.mli). Wired options.mli into the (mdx ...) stanza
since the new examples now compile.