-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
154 lines (154 loc) · 5.45 KB
/
package.json
File metadata and controls
154 lines (154 loc) · 5.45 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
144
145
146
147
148
149
150
151
152
153
154
{
"name": "vscode-agent-kanban",
"displayName": "VS Code Agent Kanban",
"description": "An integrated Kanban board for managing coding agent tasks with persistent, version-controllable markdown conversations.",
"version": "2.1.2",
"publisher": "appsoftwareltd",
"license": "Elastic-2.0",
"icon": "images/icon.png",
"homepage": "https://github.com/appsoftwareltd/vscode-agent-kanban",
"repository": {
"type": "git",
"url": "https://github.com/appsoftwareltd/vscode-agent-kanban.git"
},
"bugs": {
"url": "https://github.com/appsoftwareltd/vscode-agent-kanban/issues"
},
"engines": {
"vscode": "^1.95.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "agent-kanban",
"title": "Agent Kanban",
"icon": "images/kanban-icon.svg"
}
]
},
"views": {
"agent-kanban": [
{
"type": "webview",
"id": "agentKanban.boardView",
"name": "Board"
}
]
},
"commands": [
{
"command": "agentKanban.openBoard",
"title": "Agent Kanban: Open Board"
},
{
"command": "agentKanban.newTask",
"title": "Agent Kanban: New Task"
},
{
"command": "agentKanban.resetMemory",
"title": "Agent Kanban: Reset Memory"
},
{
"command": "agentKanban.initialise",
"title": "Agent Kanban: Initialise"
}
],
"configuration": {
"title": "Agent Kanban",
"properties": {
"agentKanban.enableLogging": {
"type": "boolean",
"default": false,
"description": "Enable diagnostic logging to .agentkanban/logs/. Rolling 10 MB files, max 5. Requires reload after changing.",
"scope": "window"
},
"agentKanban.customInstructionFile": {
"type": "string",
"default": "",
"description": "Path to a custom instruction file injected into the /task workflow. Standard agent files (AGENTS.md, copilot-instructions.md, etc.) are unaffected and continue to work as normal. Relative paths resolve from the workspace root.",
"scope": "resource"
},
"agentKanban.worktreeRoot": {
"type": "string",
"default": "../{repo}-worktrees",
"description": "Root directory for task worktrees. Use {repo} as a placeholder for the repository name. Relative paths resolve from the workspace root.",
"scope": "resource"
},
"agentKanban.worktreeOpenBehavior": {
"type": "string",
"enum": [
"current",
"new"
],
"default": "current",
"description": "Whether to open worktrees in the current window or a new window.",
"scope": "resource"
},
"agentKanban.enforceWorktrees": {
"type": "boolean",
"default": false,
"description": "Require a git worktree before using /refresh. When enabled, the command prompts to create a worktree if one doesn't exist.",
"scope": "resource"
}
}
},
"chatParticipants": [
{
"id": "agentKanban.chat",
"name": "kanban",
"fullName": "Agent Kanban",
"description": "Interact with Kanban board tasks",
"isSticky": false,
"commands": [
{
"name": "new",
"description": "<task title>"
},
{
"name": "task",
"description": "<task name>"
},
{
"name": "refresh",
"description": "Re-inject agent context for the selected task"
},
{
"name": "worktree",
"description": "Create, open, or remove a git worktree for the selected task"
}
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "node build.mjs",
"watch": "node build.mjs --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.1",
"@types/node": "^20.11.0",
"@types/vscode": "^1.95.0",
"autoprefixer": "^10.4.27",
"esbuild": "^0.27.0",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.1",
"typescript": "^5.7.0",
"vitest": "^3.0.0",
"yaml": "^2.7.0"
},
"dependencies": {
"yaml": "^2.7.0"
}
}