-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.48 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.48 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
{
"name": "claude-session-switcher",
"displayName": "Claude Session Switcher",
"description": "Tabbed session switcher for Claude Code in the Secondary Sidebar",
"version": "0.0.10",
"publisher": "eranra",
"repository": {
"type": "git",
"url": "https://github.com/eranra/claude-session-switcher"
},
"engines": {
"vscode": "^1.64.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"extensionDependencies": [
"Anthropic.claude-code"
],
"contributes": {
"viewsContainers": {
"secondarySidebar": [
{
"id": "claude-session-switcher",
"title": "AI Sessions",
"icon": "resources/icon.svg"
}
]
},
"views": {
"claude-session-switcher": [
{
"type": "webview",
"id": "claudeSessionSwitcher.view",
"name": "Sessions"
}
]
},
"commands": [
{
"command": "claudeSessionSwitcher.refresh",
"title": "Refresh Sessions",
"category": "Claude Session Switcher"
},
{
"command": "claudeSessionSwitcher.newSession",
"title": "New Claude Session",
"category": "Claude Session Switcher"
},
{
"command": "claudeSessionSwitcher.testBobSend",
"title": "Test Bob Send (to existing session)",
"category": "Claude Session Switcher"
},
{
"command": "claudeSessionSwitcher.uploadToReckon",
"title": "Upload Session to reckon",
"category": "Claude Session Switcher"
}
],
"configuration": {
"title": "Claude Session Switcher",
"properties": {
"claudeSessionSwitcher.autoRespond": {
"type": "array",
"default": [],
"markdownDescription": "Auto-reply rules for Bob sessions. On each scan, if the latest assistant message of a Bob session matches `matchPattern` (a JavaScript regular expression), `response` is sent into that same session automatically.",
"items": {
"type": "object",
"required": ["matchPattern", "response"],
"properties": {
"matchPattern": {
"type": "string",
"description": "JavaScript regex tested against the latest assistant message."
},
"response": {
"type": "string",
"description": "Text sent into the session on a match."
},
"source": {
"type": "string",
"enum": ["bob"],
"default": "bob",
"description": "Which IDE the rule applies to (Bob only)."
}
}
}
},
"reckon.uploadScriptPath": {
"type": "string",
"default": "",
"markdownDescription": "Absolute path to `upload_session.py` in your local reckon repository clone.\n\nExample: `/Users/you/workarea/Python/recon/reckon/scripts/upload_session.py`"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "node scripts/gen-build-info.js && tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint src",
"test": "vitest run"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.64.0",
"typescript": "^5.3.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"vitest": "^1.6.0"
}
}