feat: chat capture (@bridge participant, onDidChangeTextDocument), !stop command, chat snapshot scanner

This commit is contained in:
2026-03-07 14:45:44 +09:00
parent d44b4c2f77
commit 35ee916440
3 changed files with 230 additions and 5 deletions

View File

@@ -2,13 +2,14 @@
"name": "gravity-bridge",
"displayName": "Gravity Bridge",
"description": "Antigravity ↔ Discord 브리지 연동 확장",
"version": "0.1.0",
"version": "0.2.0",
"publisher": "variet",
"engines": {
"vscode": "^1.80.0"
"vscode": "^1.109.0"
},
"categories": [
"Other"
"Other",
"Chat"
],
"activationEvents": [
"onStartupFinished"
@@ -19,11 +20,20 @@
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/vscode": "^1.80.0",
"@types/node": "^20.0.0",
"@types/vscode": "^1.109.0",
"typescript": "^5.3.0"
},
"contributes": {
"chatParticipants": [
{
"id": "gravity-bridge.bridge",
"name": "bridge",
"fullName": "Gravity Bridge",
"description": "대화 히스토리를 Discord로 전송 + AI 제어",
"isSticky": false
}
],
"commands": [
{
"command": "gravityBridge.start",
@@ -57,7 +67,7 @@
"gravityBridge.projectName": {
"type": "string",
"default": "",
"description": "프로젝트 이름 (기본: 워크스페이스 폴더명, 예: gravity_control)"
"description": "프로젝트 이름 (기본: git remote 레포명)"
}
}
}