enquire-mcp API reference - v3.9.0-rc.4
    Preparing search index...

    Interface ValidateProposalArgs

    Arguments for validateNoteProposal.

    Pre-write validator — never mutates disk regardless of mode. The mode only controls how the validator reports path collisions.

    interface ValidateProposalArgs {
        content: string;
        mode?: "overwrite" | "create" | "append";
        path: string;
    }
    Index

    Properties

    Properties

    content: string

    Full proposed markdown content including any frontmatter block.

    mode?: "overwrite" | "create" | "append"

    "create" (default) → fail if path exists. "overwrite" / "append" → ok if exists.

    path: string

    Vault-relative path the LLM intends to write to (e.g. "Inbox/idea.md").