kb_quick_setup
Configure predefined forms for identity, technical, or organizational data to establish persistent knowledge storage for AI agents.
Instructions
Quick setup using predefined forms for common scenarios
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | Form data as key-value pairs | |
formType | Yes | Type of quick setup form |
Input Schema (JSON Schema)
{
"properties": {
"data": {
"description": "Form data as key-value pairs",
"type": "object"
},
"formType": {
"description": "Type of quick setup form",
"enum": [
"identity",
"technical",
"organization"
],
"type": "string"
}
},
"required": [
"formType",
"data"
],
"type": "object"
}