You can search for identifiers within the package.
in-package search v0.2.0
type block = [
| `S of string
| `P of string
| `Pre of string
| `I of string * string
| `Noblank
| `Blocks of block list
]
type info
type env
module Arg : sig ... end
type arg_list = (string list * Arg.spec * info) list
type command = {
cmd_name : string;
cmd_action : unit -> unit;
cmd_args : arg_list;
cmd_man : block list;
cmd_doc : string;
}