save_agent_note
Store persistent operational notes like printer quirks, calibration findings, or material preferences that survive across sessions. Use keys and scopes to organize knowledge for any printer.
Instructions
Save a persistent note or preference that survives across sessions.
Use this to remember printer quirks, calibration findings, material
preferences, or any operational knowledge worth preserving.
Args:
key: Name for this memory (e.g., ``"z_offset_adjustment"``, ``"pla_temp_notes"``).
value: The information to store.
scope: Namespace — ``"global"``, ``"fleet"``, or use *printer_name* for printer-specific.
printer_name: If provided, scope is automatically set to ``"printer:<name>"``.
ttl_seconds: Optional time-to-live in seconds. The note will be
automatically excluded from queries after this duration. Pass
``None`` (default) for notes that should never expire.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | ||
| scope | No | global | |
| value | Yes | ||
| ttl_seconds | No | ||
| printer_name | No |