system_migrate
Migrate from legacy JSON to SQLite format on Kratos-MCP. Supports dry runs, backups, and concept extraction for AI coding tools to enhance memory and codebase context management.
Instructions
Migrate from legacy JSON format to SQLite
Input Schema
Name | Required | Description | Default |
---|---|---|---|
create_backup | No | Create backup before migration | |
dry_run | No | Perform dry run without changes | |
extract_concepts | No | Extract concepts during migration |
Input Schema (JSON Schema)
{
"properties": {
"create_backup": {
"description": "Create backup before migration",
"type": "boolean"
},
"dry_run": {
"description": "Perform dry run without changes",
"type": "boolean"
},
"extract_concepts": {
"description": "Extract concepts during migration",
"type": "boolean"
}
},
"type": "object"
}