> ## Documentation Index
> Fetch the complete documentation index at: https://docs.automate.ax/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# On smart note started

> Run an automation when Google Meet smart-note capture starts.

`onGoogleMeetSmartNoteStarted` emits a Gemini smart-note resource when capture begins.

## Example

```ts theme={null}
import { automation } from "automate.ax"
import { onGoogleMeetSmartNoteStarted } from "automate.ax/google-meet"

export default automation("Track smart notes", () => {
  const smartNote = onGoogleMeetSmartNoteStarted()

  smartNote.startTime
})
```

## Options

`space` optionally limits the trigger to one static resource name, ID, code, or Meet URL. Omit it to watch owned meeting spaces. `account` optionally selects a static Google Account binding.

## Trigger data

Returns a smart note with `name`, `state: "started"`, timing, and an optional Docs destination. The connected user must own or organize the meeting, and the Workspace edition must support smart notes.
