create_doc
Generate and organize documents in Dart projects by specifying title, content, and folder. Streamline project management with structured documentation.
Instructions
Create a new doc in Dart. You can specify title, text content, and folder.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
folder | No | The title of the folder to place the doc in | |
text | No | The text content of the doc, which can include markdown formatting | |
title | Yes | The title of the doc (required) |
Input Schema (JSON Schema)
{
"properties": {
"folder": {
"description": "The title of the folder to place the doc in",
"type": "string"
},
"text": {
"description": "The text content of the doc, which can include markdown formatting",
"type": "string"
},
"title": {
"description": "The title of the doc (required)",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}