-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
88 lines (88 loc) · 2.4 KB
/
plugin.json
File metadata and controls
88 lines (88 loc) · 2.4 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
{
"name": "Workflow-Tracker",
"version": "1.0.0",
"displayName": "Workflow Tracker",
"description": "Professional task management with Kanban dashboard and AI agent reviews",
"author": "Technical Architecture Team",
"license": "MIT",
"keywords": ["tasks", "kanban", "workflow", "projects", "agents", "dashboard"],
"type": "plugin",
"entry": "src/dashboard/server.js",
"autoStart": true,
"autoLaunchBrowser": true,
"port": 3000,
"portFallback": true,
"settings": {
"storage": "file",
"storageType": {
"type": "select",
"options": ["file", "mysql"],
"default": "file",
"description": "Storage backend (file for dev, mysql for production)"
},
"autoOpenDashboard": {
"type": "boolean",
"default": true,
"description": "Automatically open dashboard when Claude Code starts"
},
"dataDirectory": {
"type": "text",
"default": "./data",
"description": "Directory for storing task data"
}
},
"commands": {
"dashboard": {
"displayName": "Open Dashboard",
"description": "Open Workflow-Tracker Kanban board",
"category": "workflow",
"icon": "window-open"
},
"task-create": {
"displayName": "Create Task",
"description": "Create a new task in current project",
"category": "workflow",
"icon": "plus"
},
"task-list": {
"displayName": "List Tasks",
"description": "Show tasks in current project",
"category": "workflow",
"icon": "list"
},
"project-create": {
"displayName": "Create Project",
"description": "Create a new project",
"category": "workflow",
"icon": "folder-plus"
},
"project-list": {
"displayName": "List Projects",
"description": "Show all projects",
"category": "workflow",
"icon": "folder"
}
},
"permissions": {
"fileSystem": true,
"network": true,
"localStorage": true
},
"features": {
"dashboard": "Professional Kanban board with drag-and-drop",
"agents": "Automated AI code, security, and QA reviews",
"realtime": "WebSocket real-time collaboration",
"api": "Complete REST API (30+ endpoints)",
"storage": "File or MySQL backend",
"multiProject": "Manage multiple projects in one place"
},
"requirements": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"dependencies": [
"express",
"ws",
"fs-extra"
]
}