@biswaviraj/cc-setup 1.0.5 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +21 -0
- package/package.json +6 -5
package/dist/index.js
CHANGED
|
@@ -45,6 +45,27 @@ var BUILTIN_PLUGINS = [
|
|
|
45
45
|
label: "MongoDB",
|
|
46
46
|
hint: "database ops, schema design, queries",
|
|
47
47
|
install: "mongodb"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
value: "reviewloop",
|
|
51
|
+
label: "Reviewloop",
|
|
52
|
+
hint: "loop a PR to all-clear across every reviewer (Greptile, CodeRabbit, Copilot, humans)",
|
|
53
|
+
install: "reviewloop@agent-skills",
|
|
54
|
+
marketplace: "BiswaViraj/agent-skills"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
value: "ciloop",
|
|
58
|
+
label: "Ciloop",
|
|
59
|
+
hint: "drive failing CI back to green \u2014 reproduce locally, fix, push, re-watch",
|
|
60
|
+
install: "ciloop@agent-skills",
|
|
61
|
+
marketplace: "BiswaViraj/agent-skills"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
value: "standup",
|
|
65
|
+
label: "Standup",
|
|
66
|
+
hint: "paste-ready daily standup from your org-wide PRs",
|
|
67
|
+
install: "standup@agent-skills",
|
|
68
|
+
marketplace: "BiswaViraj/agent-skills"
|
|
48
69
|
}
|
|
49
70
|
];
|
|
50
71
|
var BUILTIN_MCP = [];
|
package/package.json
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@biswaviraj/cc-setup",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Add your preferred Claude Code plugins and MCP servers to any project in seconds",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"cc-setup": "./dist/index.js"
|
|
8
8
|
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "tsup",
|
|
11
|
+
"prepublishOnly": "tsup"
|
|
12
|
+
},
|
|
9
13
|
"files": [
|
|
10
14
|
"dist"
|
|
11
15
|
],
|
|
@@ -35,8 +39,5 @@
|
|
|
35
39
|
"@types/node": "^25.6.0",
|
|
36
40
|
"tsup": "^8.0.0",
|
|
37
41
|
"typescript": "^6.0.0"
|
|
38
|
-
},
|
|
39
|
-
"scripts": {
|
|
40
|
-
"build": "tsup"
|
|
41
42
|
}
|
|
42
|
-
}
|
|
43
|
+
}
|