@node9/proxy 2.6.2 → 2.7.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/dist/cli.js +221 -145
- package/dist/cli.mjs +1009 -934
- package/dist/dashboard.mjs +159 -116
- package/dist/scan-ink.mjs +2 -2
- package/package.json +1 -1
package/dist/scan-ink.mjs
CHANGED
|
@@ -45,7 +45,7 @@ var LABEL_W = 16;
|
|
|
45
45
|
function CostPanel({ summary, width }) {
|
|
46
46
|
const total = summary.stats.totalCostUSD;
|
|
47
47
|
return /* @__PURE__ */ jsxs3(Box3, { borderStyle: "round", borderColor: "gray", paddingX: 1, flexDirection: "column", width, children: [
|
|
48
|
-
/* @__PURE__ */ jsx3(Text3, { bold: true, children: "COST" }),
|
|
48
|
+
/* @__PURE__ */ jsx3(Text3, { bold: true, children: "COST \xB7 API value" }),
|
|
49
49
|
/* @__PURE__ */ jsxs3(Box3, { children: [
|
|
50
50
|
/* @__PURE__ */ jsx3(Box3, { width: LABEL_W, children: /* @__PURE__ */ jsx3(Text3, { children: "Total" }) }),
|
|
51
51
|
/* @__PURE__ */ jsx3(Text3, { bold: true, children: formatCost(total) })
|
|
@@ -1791,7 +1791,7 @@ function StaticScorecard({ input, rangeLabel, now }) {
|
|
|
1791
1791
|
if (reviewCount > 0) parts.push(`${reviewCount} op${reviewCount !== 1 ? "s" : ""} flagged`);
|
|
1792
1792
|
if (loopCount > 0)
|
|
1793
1793
|
parts.push(
|
|
1794
|
-
`${loopCount} loop${loopCount !== 1 ? "s" : ""}${wastedCalls > 0 ? ` \xB7 ${wastedCalls}
|
|
1794
|
+
`${loopCount} loop${loopCount !== 1 ? "s" : ""}${wastedCalls > 0 ? ` \xB7 ${wastedCalls} repeat calls (${wastePct}% of all calls)` : ""}`
|
|
1795
1795
|
);
|
|
1796
1796
|
return /* @__PURE__ */ jsxs11(Fragment2, { children: [
|
|
1797
1797
|
/* @__PURE__ */ jsx11(SeverityBand, { label: `Medium (${parts.join(" \xB7 ")})`, width }),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@node9/proxy",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.1",
|
|
4
4
|
"description": "The Sudo Command for AI Agents. Execution Security for Claude Code, Codex, Gemini, Cursor, Opencode, Pi, and any MCP server.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|