create_structured_prompt
Design and organize prompts with structured metadata including title, category, tags, and difficulty level to enhance clarity and usability for various applications.
Instructions
Create a new prompt with guided metadata structure
Input Schema
Name | Required | Description | Default |
---|---|---|---|
author | No | Author of the prompt | |
category | No | Category (e.g., development, writing, analysis) | |
content | Yes | The actual prompt content (markdown) | |
description | Yes | Brief description of what the prompt does | |
difficulty | No | Difficulty level of the prompt | |
name | Yes | Name of the prompt | |
tags | No | Array of tags for categorization | |
title | Yes | Human-readable title for the prompt |
Input Schema (JSON Schema)
{
"properties": {
"author": {
"description": "Author of the prompt",
"type": "string"
},
"category": {
"description": "Category (e.g., development, writing, analysis)",
"type": "string"
},
"content": {
"description": "The actual prompt content (markdown)",
"type": "string"
},
"description": {
"description": "Brief description of what the prompt does",
"type": "string"
},
"difficulty": {
"description": "Difficulty level of the prompt",
"enum": [
"beginner",
"intermediate",
"advanced"
],
"type": "string"
},
"name": {
"description": "Name of the prompt",
"type": "string"
},
"tags": {
"description": "Array of tags for categorization",
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"description": "Human-readable title for the prompt",
"type": "string"
}
},
"required": [
"name",
"title",
"description",
"content"
],
"type": "object"
}