OptionalafterAfter the dotenv context is resolved, initialize any clients/secrets or attach per-plugin state under ctx.plugins (by convention). Runs parent → children (pre-order).
Scoping: When the host provides an invoked subcommand filter, afterResolve only fires for plugins whose namespace matches the invoked command path. A plugin's afterResolve should never produce side effects for commands outside its subtree.
Compositional children, with optional per-child overrides (e.g., ns). Installed after the parent per pre-order.
OptionalconfigZod schema for this plugin's config slice (from config.plugins[…]).
Namespace (required): the command name where this plugin is mounted.
Setup phase: register commands and wiring on the provided mount. Runs parent → children (pre-order). Return nothing (void).
Compose a child plugin with optional override (ns). Returns the parent to enable chaining.
Public plugin contract used by the GetDotenv CLI host.