-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
47 lines (47 loc) · 1.35 KB
/
Copy pathplugin.json
File metadata and controls
47 lines (47 loc) · 1.35 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
{
"$schema": "https://claude.ai/schemas/plugin/v1",
"name": "ccplugin",
"displayName": "CCProjects Workspace Plugin",
"version": "0.1.0",
"description": "Beads-integrated workspace management for Claude Code: hooks, skills, agents, and an MCP server for multi-project coordination.",
"author": "JannikRoesch",
"license": "MIT",
"homepage": "https://github.com/JannikRoesch/CCPlugin",
"keywords": ["workspace", "beads", "multi-project", "claude-code", "productivity"],
"engines": {
"claude-code": ">=1.0.0",
"node": ">=18.0.0"
},
"components": {
"skills": "dist/skills/",
"agents": "dist/agents/",
"hooks": {
"SessionStart": "dist/hooks/session-start.js",
"PreCompact": "dist/hooks/pre-compact.js",
"PreToolUse": [
{ "matcher": "Bash", "handler": "dist/hooks/pre-tool-use.js" }
],
"PostToolUse": [
{ "matcher": "Write|Edit|MultiEdit", "handler": "dist/hooks/post-tool-use.js" }
],
"Stop": "dist/hooks/stop.js",
"Notification": "dist/hooks/notification.js"
},
"mcp": {
"server": "dist/mcp/server.js",
"transport": "stdio"
}
},
"install": {
"script": "scripts/install.sh",
"uninstall": "scripts/uninstall.sh"
},
"permissions": {
"allow": [
"Bash(git *)",
"Bash(bd *)",
"Bash(pnpm *)",
"Bash(node *)"
]
}
}