goalstory_create_goal
Initiate and define a new goal with clarity by specifying its title, context, and alignment with personal values. Use storytelling and belief frameworks to craft a meaningful and actionable goal.
Instructions
Begin the goal clarification process by creating a new goal. Always discuss and refine the goal with the user before or after saving, ensuring it's well-defined and aligned with their aspirations. Confirm if any adjustments are needed after creation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
belief_mode | No | Framework defining how the user's core beliefs and values influence this goal. | |
description | No | Detailed explanation of the goal, including context, motivation, and desired outcomes. | |
name | Yes | Clear and specific title that captures the essence of the goal. | |
story_mode | No | Narrative approach that shapes how future stories visualize goal achievement. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"belief_mode": {
"description": "Framework defining how the user's core beliefs and values influence this goal.",
"type": "string"
},
"description": {
"description": "Detailed explanation of the goal, including context, motivation, and desired outcomes.",
"type": "string"
},
"name": {
"description": "Clear and specific title that captures the essence of the goal.",
"type": "string"
},
"story_mode": {
"description": "Narrative approach that shapes how future stories visualize goal achievement.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}