export_knowledge
Extract the current knowledge base in JSON or Markdown format for analysis, sharing, or integration with other systems.
Instructions
Export current knowledge base
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | json |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "json",
"enum": [
"json",
"markdown"
],
"type": "string"
}
},
"type": "object"
}