Chat Eksporter
This commit is contained in:
38
package.json
Normal file
38
package.json
Normal 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"]
|
||||
}
|
||||
Reference in New Issue
Block a user