pages_create_document
Generate a new Pages document with plain text content using AppleScript on macOS. Ideal for creating unformatted documents programmatically within LLM applications.
Instructions
[Pages document operations] Create a new Pages document with plain text content (no formatting)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The plain text content to add to the document (no formatting) |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "The plain text content to add to the document (no formatting)",
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
}