- writePendingApproval()에서 step_type=file_permission일 때 자동 3-button 주입 - active_project.lock 메커니즘 제거 (멀티 프로젝트 동시 사용 지원) - step_probe auto-resolve에 project_name 필터 추가 - known-issues 2건 추가
75 lines
2.2 KiB
JSON
75 lines
2.2 KiB
JSON
{
|
|
"name": "gravity-bridge",
|
|
"displayName": "Gravity Bridge",
|
|
"description": "Antigravity ↔ Discord 브리지 연동 확장",
|
|
"version": "0.3.7",
|
|
"publisher": "variet",
|
|
"engines": {
|
|
"vscode": "^1.100.0"
|
|
},
|
|
"categories": [
|
|
"Other",
|
|
"Chat"
|
|
],
|
|
"activationEvents": [
|
|
"onStartupFinished"
|
|
],
|
|
"main": "./out/extension.js",
|
|
"scripts": {
|
|
"compile": "tsc -p ./",
|
|
"watch": "tsc -watch -p ./"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"@types/vscode": "^1.100.0",
|
|
"typescript": "^5.3.0"
|
|
},
|
|
"contributes": {
|
|
"chatParticipants": [
|
|
{
|
|
"id": "gravity-bridge.gravity",
|
|
"name": "gravity",
|
|
"fullName": "Gravity Bridge",
|
|
"description": "대화 히스토리를 Discord로 전송 + AI 제어",
|
|
"isSticky": false
|
|
}
|
|
],
|
|
"commands": [
|
|
{
|
|
"command": "gravityBridge.start",
|
|
"title": "Gravity Bridge: Start"
|
|
},
|
|
{
|
|
"command": "gravityBridge.stop",
|
|
"title": "Gravity Bridge: Stop"
|
|
},
|
|
{
|
|
"command": "gravityBridge.approve",
|
|
"title": "Gravity Bridge: Approve Pending"
|
|
},
|
|
{
|
|
"command": "gravityBridge.reject",
|
|
"title": "Gravity Bridge: Reject Pending"
|
|
},
|
|
{
|
|
"command": "gravityBridge.connect",
|
|
"title": "Gravity Bridge: Connect Session"
|
|
}
|
|
],
|
|
"configuration": {
|
|
"title": "Gravity Bridge",
|
|
"properties": {
|
|
"gravityBridge.bridgePath": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "Bridge 디렉토리 경로 (기본: ~/.gemini/antigravity/bridge)"
|
|
},
|
|
"gravityBridge.projectName": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "프로젝트 이름 (기본: git remote 레포명)"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |