assess_create_idea
Capture and evaluate new ideas in the Assess realm using the ADD framework. Input idea details and optionally link to a parent collection for structured task management.
Instructions
Capture a new idea (always starts in Assess realm).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collectionRecordName | No | Optional recordName of the parent collection. | |
ideaName | Yes | Idea name/details (max 1500 chars) |
Input Schema (JSON Schema)
{
"properties": {
"collectionRecordName": {
"description": "Optional recordName of the parent collection.",
"type": "string"
},
"ideaName": {
"description": "Idea name/details (max 1500 chars)",
"type": "string"
}
},
"required": [
"ideaName"
],
"type": "object"
}