@windyroad/risk-scorer 0.17.0 → 0.17.1
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/.claude-plugin/plugin.json +1 -1
- package/.codex-plugin/plugin.json +43 -0
- package/bin/install.mjs +5 -4
- package/package.json +2 -1
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "wr-risk-scorer",
|
|
3
|
+
"version": "0.17.1",
|
|
4
|
+
"description": "Pipeline risk scoring, commit/push gates, and secret leak detection",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Windy Road Technology",
|
|
7
|
+
"url": "https://windyroad.com.au"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/windyroad/agent-plugins/tree/main/packages/risk-scorer",
|
|
10
|
+
"repository": "https://github.com/windyroad/agent-plugins",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"risk",
|
|
14
|
+
"pipeline",
|
|
15
|
+
"governance",
|
|
16
|
+
"secret-leak-detection",
|
|
17
|
+
"codex",
|
|
18
|
+
"claude-code"
|
|
19
|
+
],
|
|
20
|
+
"skills": "./skills/",
|
|
21
|
+
"interface": {
|
|
22
|
+
"displayName": "Windy Road Risk Scorer",
|
|
23
|
+
"shortDescription": "Score pipeline risk and guard risky changes",
|
|
24
|
+
"longDescription": "Pipeline risk scoring, commit and push gates, release risk checks, and secret leak detection for AI coding workflows.",
|
|
25
|
+
"developerName": "Windy Road Technology",
|
|
26
|
+
"category": "Developer Tools",
|
|
27
|
+
"capabilities": [
|
|
28
|
+
"Interactive",
|
|
29
|
+
"Read",
|
|
30
|
+
"Write"
|
|
31
|
+
],
|
|
32
|
+
"websiteURL": "https://windyroad.com.au",
|
|
33
|
+
"privacyPolicyURL": "https://windyroad.com.au/privacy",
|
|
34
|
+
"termsOfServiceURL": "https://windyroad.com.au/terms",
|
|
35
|
+
"defaultPrompt": [
|
|
36
|
+
"Assess release risk for the current changes",
|
|
37
|
+
"Review this outbound message for secret leaks",
|
|
38
|
+
"Update this project's risk policy"
|
|
39
|
+
],
|
|
40
|
+
"brandColor": "#B45309",
|
|
41
|
+
"screenshots": []
|
|
42
|
+
}
|
|
43
|
+
}
|
package/bin/install.mjs
CHANGED
|
@@ -21,6 +21,7 @@ Options:
|
|
|
21
21
|
--update Update this plugin and its skills
|
|
22
22
|
--uninstall Remove this plugin
|
|
23
23
|
--scope Installation scope: project (default) or user
|
|
24
|
+
--runtime Runtime to install for: claude (default), codex, or both
|
|
24
25
|
--dry-run Show what would be done without executing
|
|
25
26
|
--help, -h Show this help
|
|
26
27
|
`);
|
|
@@ -32,12 +33,12 @@ if (flags.dryRun) {
|
|
|
32
33
|
console.log("[dry-run mode — no commands will be executed]\n");
|
|
33
34
|
}
|
|
34
35
|
|
|
35
|
-
utils.checkPrerequisites();
|
|
36
|
+
utils.checkPrerequisites({ runtime: flags.runtime });
|
|
36
37
|
|
|
37
38
|
if (flags.uninstall) {
|
|
38
|
-
utils.uninstallPackage(PLUGIN);
|
|
39
|
+
utils.uninstallPackage(PLUGIN, { runtime: flags.runtime });
|
|
39
40
|
} else if (flags.update) {
|
|
40
|
-
utils.updatePackage(PLUGIN, { scope: flags.scope });
|
|
41
|
+
utils.updatePackage(PLUGIN, { scope: flags.scope, runtime: flags.runtime });
|
|
41
42
|
} else {
|
|
42
|
-
utils.installPackage(PLUGIN, { deps: DEPS, scope: flags.scope });
|
|
43
|
+
utils.installPackage(PLUGIN, { deps: DEPS, scope: flags.scope, runtime: flags.runtime });
|
|
43
44
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@windyroad/risk-scorer",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.1",
|
|
4
4
|
"description": "Pipeline risk scoring, commit/push gates, and secret leak detection",
|
|
5
5
|
"bin": {
|
|
6
6
|
"windyroad-risk-scorer": "./bin/install.mjs"
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
"hooks/",
|
|
25
25
|
"skills/",
|
|
26
26
|
".claude-plugin/",
|
|
27
|
+
".codex-plugin/",
|
|
27
28
|
"lib/",
|
|
28
29
|
"scripts/",
|
|
29
30
|
"!skills/*/eval/",
|