MCPcopy Create free account
hub / github.com/codeaashu/claude-code / runIt2

Function runIt2

src/utils/swarm/backends/ITermBackend.ts:36–40  ·  view source on GitHub ↗

* Runs an it2 CLI command and returns the result.

(
  args: string[],
)

Source from the content-addressed store, hash-verified

34 * Runs an it2 CLI command and returns the result.
35 */
36function runIt2(
37 args: string[],
38): Promise<{ stdout: string; stderr: string; code: number }> {
39 return execFileNoThrow(IT2_COMMAND, args)
40}
41
42/**
43 * Parses the session ID from `it2 session split` output.

Callers 3

sendCommandToPaneMethod · 0.85
killPaneMethod · 0.85

Calls 1

execFileNoThrowFunction · 0.85

Tested by

no test coverage detected