kb_update_projects
Update project context including current projects, technologies, goals, challenges, team size, and methodology to maintain accurate organizational knowledge.
Instructions
Update project context (current projects, technologies, goals)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
challenges | No | ||
currentProjects | No | ||
goals | No | ||
methodology | No | ||
teamSize | No | ||
technologies | No |
Input Schema (JSON Schema)
{
"properties": {
"challenges": {
"items": {
"type": "string"
},
"type": "array"
},
"currentProjects": {
"items": {
"type": "string"
},
"type": "array"
},
"goals": {
"items": {
"type": "string"
},
"type": "array"
},
"methodology": {
"type": "string"
},
"teamSize": {
"type": "number"
},
"technologies": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}