@windyroad/risk-scorer 0.18.6 → 0.18.7-preview.1031

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.
@@ -310,5 +310,5 @@
310
310
  }
311
311
  },
312
312
  "name": "wr-risk-scorer",
313
- "version": "0.18.6"
313
+ "version": "0.18.7"
314
314
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wr-risk-scorer",
3
- "version": "0.18.6",
3
+ "version": "0.18.7",
4
4
  "description": "Pipeline risk scoring, commit/push gates, and secret leak detection",
5
5
  "author": {
6
6
  "name": "Windy Road Technology",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@windyroad/risk-scorer",
3
- "version": "0.18.6",
3
+ "version": "0.18.7-preview.1031",
4
4
  "description": "Pipeline risk scoring, commit/push gates, and secret leak detection",
5
5
  "scripts": {
6
6
  "prepack": "node scripts/sync-codex-skills.mjs --pack",
@@ -1,6 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  import {
4
+ copyFileSync,
4
5
  existsSync,
5
6
  mkdirSync,
6
7
  readdirSync,
@@ -81,6 +82,14 @@ function writeGenerated(sourceRoot, targetRoot) {
81
82
  mkdirSync(dirname(path), { recursive: true });
82
83
  writeFileSync(path, text, "utf8");
83
84
  }
85
+ for (const entry of readdirSync(sourceRoot, { withFileTypes: true })) {
86
+ if (!entry.isDirectory()) continue;
87
+ const source = join(sourceRoot, entry.name, "agents", "openai.yaml");
88
+ if (!existsSync(source)) continue;
89
+ const target = join(targetRoot, entry.name, "agents", "openai.yaml");
90
+ mkdirSync(dirname(target), { recursive: true });
91
+ copyFileSync(source, target);
92
+ }
84
93
  return generated.length;
85
94
  }
86
95
 
@@ -0,0 +1,3 @@
1
+ interface:
2
+ display_name: "WR Risk Scorer: Assess External Comms"
3
+ short_description: "Review outbound prose for confidential information"
@@ -0,0 +1,3 @@
1
+ interface:
2
+ display_name: "WR Risk Scorer: Assess Inbound Report"
3
+ short_description: "Review inbound reports for request and fix risk"
@@ -0,0 +1,3 @@
1
+ interface:
2
+ display_name: "WR Risk Scorer: Assess Release"
3
+ short_description: "Assess commit, push, and release risk"
@@ -0,0 +1,3 @@
1
+ interface:
2
+ display_name: "WR Risk Scorer: Assess WIP"
3
+ short_description: "Assess accumulated uncommitted work risk"
@@ -0,0 +1,3 @@
1
+ interface:
2
+ display_name: "WR Risk Scorer: Bootstrap Catalog"
3
+ short_description: "Build the standing-risk catalog from reports"
@@ -0,0 +1,3 @@
1
+ interface:
2
+ display_name: "WR Risk Scorer: Create Risk"
3
+ short_description: "Create a standing risk register entry"
@@ -0,0 +1,3 @@
1
+ interface:
2
+ display_name: "WR Risk Scorer: External Comms"
3
+ short_description: "Run the external communications risk reviewer"
@@ -0,0 +1,3 @@
1
+ interface:
2
+ display_name: "WR Risk Scorer: Pipeline"
3
+ short_description: "Run the pipeline risk scorer"
@@ -0,0 +1,3 @@
1
+ interface:
2
+ display_name: "WR Risk Scorer: Update Policy"
3
+ short_description: "Create or update the project risk policy"
@@ -0,0 +1,3 @@
1
+ interface:
2
+ display_name: "WR Risk Scorer: WIP"
3
+ short_description: "Run the accumulated work risk scorer"