create-document
Create documents in Shortcut project management with HTML-formatted content and titles. Generate new documents that include IDs, titles, and direct app URLs for easy access.
Instructions
Create a new document in Shortcut with a title and content. Returns the document's id, title, and app_url. Note: Use HTML markup for the content (e.g., , , , ) rather than Markdown.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | The title for the new document (max 256 characters) | |
| content | Yes | The content for the new document in HTML format (e.g., <p>Hello</p>, <h1>Title</h1>, <ul><li>Item</li></ul>) |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "The content for the new document in HTML format (e.g., <p>Hello</p>, <h1>Title</h1>, <ul><li>Item</li></ul>)",
"type": "string"
},
"title": {
"description": "The title for the new document (max 256 characters)",
"maxLength": 256,
"type": "string"
}
},
"required": [
"title",
"content"
],
"type": "object"
}