-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
143 lines (143 loc) · 4.33 KB
/
package.json
File metadata and controls
143 lines (143 loc) · 4.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "copilot-handoff",
"displayName": "Copilot Handoff",
"description": "\ud83e\udd1d Track GitHub Copilot chat session duration and get timely reminders for context-preserving handoffs. Prevent context degradation!",
"version": "0.2.0",
"publisher": "curtisfranks",
"engines": {
"vscode": "^1.108.0",
"node": ">=20.0.0"
},
"categories": [
"Other",
"Machine Learning"
],
"keywords": [
"copilot",
"github copilot",
"ai",
"chat",
"session management",
"context preservation"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"chatParticipants": [
{
"id": "handoff",
"name": "handoff",
"description": "Analyze chat health and export context for handoffs",
"isSticky": false,
"commands": [
{
"name": "analyze",
"description": "Analyze current chat health and context quality"
},
{
"name": "export",
"description": "Export chat context for handoff to new session"
}
]
}
],
"commands": [
{
"command": "copilot-handoff.checkChatHealth",
"title": "Copilot Handoff: Check Chat Health"
},
{
"command": "copilot-handoff.showSessionInfo",
"title": "Copilot Handoff: Show Session Info"
},
{
"command": "copilot-handoff.exportContext",
"title": "Copilot Handoff: Export Chat Context"
},
{
"command": "copilot-handoff.resetSession",
"title": "Copilot Handoff: Reset Session Timer"
},
{
"command": "copilot-handoff.toggleTracking",
"title": "Copilot Handoff: Toggle Tracking"
}
],
"configuration": {
"title": "Copilot Handoff",
"properties": {
"copilot-handoff.sessionThresholdMinutes": {
"type": "number",
"default": 30,
"minimum": 5,
"maximum": 180,
"description": "Minutes before showing handoff reminder"
},
"copilot-handoff.notificationFrequency": {
"type": "string",
"enum": [
"once",
"periodic",
"never"
],
"default": "periodic",
"description": "How often to show handoff reminders"
},
"copilot-handoff.periodicReminderMinutes": {
"type": "number",
"default": 10,
"minimum": 1,
"maximum": 60,
"description": "Minutes between periodic reminders (when periodic mode is enabled)"
},
"copilot-handoff.autoExportContext": {
"type": "boolean",
"default": false,
"description": "Automatically export context when handoff is triggered"
},
"copilot-handoff.showStatusBar": {
"type": "boolean",
"default": true,
"description": "Show session duration in status bar"
},
"copilot-handoff.trackingEnabled": {
"type": "boolean",
"default": true,
"description": "Enable session tracking"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "node node_modules/typescript/lib/tsc.js -p ./",
"watch": "node node_modules/typescript/lib/tsc.js -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "node node_modules/eslint/bin/eslint.js src --ext ts",
"test": "node ./out/test/runTest.js",
"package": "echo 'Note: Requires Node 20+ for packaging. Use: node node_modules/@vscode/vsce/vsce package --no-dependencies'",
"publish": "echo 'Note: Requires Node 20+ and publisher access. Use: node node_modules/@vscode/vsce/vsce publish'"
},
"devDependencies": {
"@types/node": "^25.0.10",
"@types/vscode": "^1.108.1",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vscode/test-electron": "^2.5.2",
"eslint": "^9.39.2",
"typescript": "^5.9.3",
"vscode-test": "^1.6.1"
},
"repository": {
"type": "git",
"url": "https://github.com/chf3198/copilot-handoff"
},
"bugs": {
"url": "https://github.com/chf3198/copilot-handoff/issues"
},
"homepage": "https://github.com/chf3198/copilot-handoff#readme",
"license": "PolyForm-Noncommercial-1.0.0",
"icon": "images/icon.png"
}