Chat Eksporter

This commit is contained in:
MirSobZ
2026-04-10 15:35:46 +02:00
commit 1caa487359
9 changed files with 260 additions and 0 deletions

38
package.json Normal file
View File

@@ -0,0 +1,38 @@
{
"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"]
}