@pinta-ai/pinta-gemini 0.2.1 → 0.3.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.
Files changed (2) hide show
  1. package/dist/index.js +8 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -130,6 +130,12 @@ function asString(v) {
130
130
 
131
131
  // src/core/guard.ts
132
132
  var TIMEOUT_MS = 50;
133
+ function shellCommandText(toolInput) {
134
+ if (!toolInput || typeof toolInput !== "object" || Array.isArray(toolInput)) return void 0;
135
+ const o = toolInput;
136
+ const v = o["command"] ?? o["CommandLine"];
137
+ return typeof v === "string" ? v : void 0;
138
+ }
133
139
  function sleep(ms) {
134
140
  return new Promise(
135
141
  (_, reject) => setTimeout(() => {
@@ -402,7 +408,7 @@ function redact(input, opts = {}) {
402
408
  }
403
409
 
404
410
  // src/core/otlp.ts
405
- var PLUGIN_VERSION = "0.2.1";
411
+ var PLUGIN_VERSION = "0.3.0";
406
412
  var CROCKFORD = "0123456789ABCDEFGHJKMNPQRSTVWXYZ";
407
413
  function ulidToTraceId(ulid) {
408
414
  if (ulid.length !== 26) throw new Error(`ulidToTraceId: expected 26 chars, got ${ulid.length}`);
@@ -668,7 +674,7 @@ async function main() {
668
674
  const trace = new TraceManager(config);
669
675
  const traceId = isTurnStart(agent, c, ev) ? trace.newTrace(sessionId) : trace.currentTrace(sessionId);
670
676
  if (c.hook === gateEvent(agent)) {
671
- const rawToolInput = typeof c.tool_input === "string" ? c.tool_input : JSON.stringify(c.tool_input ?? null);
677
+ const rawToolInput = shellCommandText(c.tool_input) ?? (typeof c.tool_input === "string" ? c.tool_input : JSON.stringify(c.tool_input ?? null));
672
678
  guard = await evaluateGuard(
673
679
  { spanId: sessionId, toolName: c.tool_name, toolInput: c.tool_input, rawTextFields: { toolInput: rawToolInput } },
674
680
  config.guardEndpoint,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pinta-ai/pinta-gemini",
3
- "version": "0.2.1",
3
+ "version": "0.3.0",
4
4
  "description": "Unified OTLP forwarder + guard adapter for Gemini CLI and Antigravity (agy v1.0.x / 2.0) hooks",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",