MCPcopy Create free account
hub / github.com/openai/plugins / isShellEvent

Function isShellEvent

plugins/plugin-eval/src/core/benchmark-events.js:134–141  ·  view source on GitHub ↗
(event)

Source from the content-addressed store, hash-verified

132}
133
134function isShellEvent(event) {
135 const type = typeof event?.type === "string" ? event.type : "";
136 return Boolean(
137 extractShellCommand(event) ||
138 type.includes("exec_command") ||
139 type.includes("shell"),
140 );
141}
142
143function isToolEvent(event) {
144 const type = typeof event?.type === "string" ? event.type : "";

Callers 1

summarizeCodexEventsFunction · 0.85

Calls 1

extractShellCommandFunction · 0.85

Tested by

no test coverage detected