39 lines
981 B
JSON
39 lines
981 B
JSON
{
|
|
"name": "ai-chat-logger",
|
|
"displayName": "AI Chat Logger",
|
|
"description": "Automatyczne zapisywanie historii czatu Copilot Chat do pliku.",
|
|
"version": "1.0.3",
|
|
"publisher": "local",
|
|
"engines": {
|
|
"vscode": "^1.80.0"
|
|
},
|
|
"activationEvents": [],
|
|
"main": "./extension.js",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "ai-chat-logger.saveChat",
|
|
"title": "AI Chat Logger: Zapisz Chat"
|
|
}
|
|
],
|
|
"configuration": {
|
|
"type": "object",
|
|
"title": "AI Chat Logger",
|
|
"properties": {
|
|
"aiChatLogger.outputDir": {
|
|
"type": "string",
|
|
"default": ".ai_logs",
|
|
"description": "Folder, w którym będą zapisywane logi czatu."
|
|
},
|
|
"aiChatLogger.format": {
|
|
"type": "string",
|
|
"enum": ["markdown", "plaintext"],
|
|
"default": "markdown",
|
|
"description": "Format zapisu logów czatu."
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"categories": ["Other"]
|
|
}
|