kb_onboard
Collect initial user information through interactive questions to establish personalized context for AI agents, supporting categories like professional details and preferences.
Instructions
Start interactive onboarding to collect initial information. Returns questions for the specified category.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Category of questions to ask | all |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"default": "all",
"description": "Category of questions to ask",
"enum": [
"initial",
"professional",
"preferences",
"projects",
"all"
],
"type": "string"
}
},
"type": "object"
}