@postman-cse/cse-toold 4.13.5 → 5.0.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/package.json +5 -5
- package/src/live-gates.js +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@postman-cse/cse-toold",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "CSE tools daemon: signed Node SEA launcher mediating MCP traffic for Claude/Codex/Droid; pure-JS cred store plus signed cse-se-unwrap helper own credential custody",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
"bin/"
|
|
23
23
|
],
|
|
24
24
|
"optionalDependencies": {
|
|
25
|
-
"@postman-cse/cse-toold-darwin-arm64": "
|
|
26
|
-
"@postman-cse/cse-toold-linux-arm64": "
|
|
27
|
-
"@postman-cse/cse-toold-linux-x64": "
|
|
28
|
-
"@postman-cse/cse-toold-win32-arm64": "
|
|
25
|
+
"@postman-cse/cse-toold-darwin-arm64": "5.0.0",
|
|
26
|
+
"@postman-cse/cse-toold-linux-arm64": "5.0.0",
|
|
27
|
+
"@postman-cse/cse-toold-linux-x64": "5.0.0",
|
|
28
|
+
"@postman-cse/cse-toold-win32-arm64": "5.0.0"
|
|
29
29
|
}
|
|
30
30
|
}
|
package/src/live-gates.js
CHANGED
|
@@ -9,7 +9,7 @@ const { resolveCoreBinary } = require('./index');
|
|
|
9
9
|
|
|
10
10
|
const REQUIRED_SKILLS = [
|
|
11
11
|
'cse-intake',
|
|
12
|
-
'cse-
|
|
12
|
+
'cse-forecast',
|
|
13
13
|
'cse-engagement-finder',
|
|
14
14
|
'war-room-prep',
|
|
15
15
|
'one-on-one-prep',
|
|
@@ -19,9 +19,9 @@ const REQUIRED_SKILLS = [
|
|
|
19
19
|
|
|
20
20
|
const SKILL_QUERIES = {
|
|
21
21
|
'cse-intake': 'customer pain requirements next steps sponsor hints',
|
|
22
|
-
'cse-
|
|
22
|
+
'cse-forecast': 'portfolio stage risk stalled ownership next steps',
|
|
23
23
|
'cse-engagement-finder': 'governance migration blockers platform initiative',
|
|
24
|
-
'war-room-prep': '
|
|
24
|
+
'war-room-prep': 'builder artifacts shipped PRs customer builds outcomes',
|
|
25
25
|
'one-on-one-prep': 'recent customer calls blockers technical questions',
|
|
26
26
|
'cse-bandwidth': 'active work blockers workload customer implementation',
|
|
27
27
|
'cse-case-study': 'validation success criteria rollout adoption outcomes',
|
|
@@ -283,7 +283,7 @@ function runSkill(argv) {
|
|
|
283
283
|
function runnerSmoke(argv) {
|
|
284
284
|
const args = parseArgs(argv);
|
|
285
285
|
const runner = requireArg(args, 'runner');
|
|
286
|
-
const skill = String(args.skill || 'cse-
|
|
286
|
+
const skill = String(args.skill || 'cse-forecast');
|
|
287
287
|
const out = args.out && String(args.out);
|
|
288
288
|
const listed = parseToolOutput(runCseToold(['kepler', 'mcp-list-tools']));
|
|
289
289
|
const tools = Array.isArray(listed.tools) ? listed.tools : [];
|