| name | create-post |
| description | Create a new blog post in Hiverarchy. Use when user wants to create a post, write a blog entry, or add new content to their hierarchical blog. |
Create Hiverarchy Post
Creates a new blog post in the Hiverarchy platform.
Instructions
When creating a post:
- Understand the request: Determine the topic, tone, and any specific requirements
- Generate content:
- Create an engaging, SEO-friendly title
- Write the full post content in markdown format
- Include headers, lists, and formatting where appropriate
- Keep a conversational but informative tone
- Create brief description: Write a 1-2 sentence summary for previews
- Save the post: Use the Hiverarchy API to create the post
Content Guidelines
- Use markdown formatting (headers, bold, lists, code blocks)
- Keep paragraphs digestible (3-5 sentences)
- Include relevant examples or explanations
- Match the user's requested tone and style
Output Format
Generate content as JSON:
{
"title": "Compelling post title",
"content": "Full markdown content...",
"brief_description": "1-2 sentence summary"
}
Example
User: "Create a post about my golf game yesterday where I shot 82"
Response:
{
"title": "Breaking 85: My Journey to an 82 on the Links",
"content": "# Breaking 85: My Journey to an 82\n\nYesterday marked a milestone in my golf journey...",
"brief_description": "A recap of my round where I finally broke 85, shooting an 82 with some key takeaways."
}