replicas-engine 0.1.751 → 0.1.754
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/src/asp-host-OB2X6EIN.js +18 -0
- package/dist/src/{chunk-7BMG23BX.js → chunk-2PJZNPYN.js} +6 -4
- package/dist/src/{chunk-NZRMKTVA.js → chunk-BMC4R5IZ.js} +2 -0
- package/dist/src/{chunk-GQTP5TPD.js → chunk-EYRVU2KX.js} +4 -2
- package/dist/src/{chunk-Z6P6S5HL.js → chunk-FLDA7BX3.js} +2 -0
- package/dist/src/{chunk-MNVK5OPD.js → chunk-GQFXO5TG.js} +2 -0
- package/dist/src/{chunk-SFWEF25L.js → chunk-HHIELO4H.js} +3 -1
- package/dist/src/{chunk-OVCVFBIB.js → chunk-HJWLVQZ6.js} +4 -2
- package/dist/src/{chunk-VZR2BGSF.js → chunk-LAK7IDRF.js} +3 -1
- package/dist/src/{chunk-JQ4OOC6O.js → chunk-UEL4VSCX.js} +4 -2
- package/dist/src/{chunk-WYE7EXGQ.js → chunk-UHBYG6JY.js} +3 -1
- package/dist/src/{chunk-Y6VZZNT3.js → chunk-UP57BRAF.js} +3 -1
- package/dist/src/{chunk-2RB7SIP3.js → chunk-UZSNFLDQ.js} +2 -0
- package/dist/src/{chunk-5KSXSK7Y.js → chunk-VEQXQN22.js} +2 -0
- package/dist/src/command-protection-hook.js +7 -5
- package/dist/src/deepseek-command-protection-plugin.js +8 -6
- package/dist/src/headless-agent.js +6 -4
- package/dist/src/index.js +16 -14
- package/dist/src/{mcp-panel-VYAKFUWR.js → mcp-panel-IBIVWX27.js} +6 -4
- package/dist/src/{mcp-setup-panel-TSN2X3T7.js → mcp-setup-panel-RG6Z4BOM.js} +6 -4
- package/dist/src/post-tool-pr-hook.js +6 -4
- package/dist/src/relay-mcp.js +4 -2
- package/dist/src/{webapi-FTLM32C4.js → webapi-PVO3G6K3.js} +3 -1
- package/package.json +1 -1
- package/dist/src/asp-host-GSBR46MV.js +0 -16
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { createRequire as __createRequire } from 'node:module';
|
|
3
|
+
const require = __createRequire(import.meta.url);
|
|
4
|
+
import {
|
|
5
|
+
getCodexAspHost,
|
|
6
|
+
restartCodexAspHost,
|
|
7
|
+
restartCodexAspHostIfRunning
|
|
8
|
+
} from "./chunk-2PJZNPYN.js";
|
|
9
|
+
import "./chunk-EYRVU2KX.js";
|
|
10
|
+
import "./chunk-UEL4VSCX.js";
|
|
11
|
+
import "./chunk-UZSNFLDQ.js";
|
|
12
|
+
import "./chunk-GQFXO5TG.js";
|
|
13
|
+
import "./chunk-VEQXQN22.js";
|
|
14
|
+
export {
|
|
15
|
+
getCodexAspHost,
|
|
16
|
+
restartCodexAspHost,
|
|
17
|
+
restartCodexAspHostIfRunning
|
|
18
|
+
};
|
|
@@ -1,20 +1,22 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
import { createRequire as __createRequire } from 'node:module';
|
|
3
|
+
const require = __createRequire(import.meta.url);
|
|
2
4
|
import {
|
|
3
5
|
ENGINE_ENV,
|
|
4
6
|
monolithRequest,
|
|
5
7
|
setAgentCredentialSnapshot
|
|
6
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-EYRVU2KX.js";
|
|
7
9
|
import {
|
|
8
10
|
AppServerProcess,
|
|
9
11
|
buildCodexAgentEnv
|
|
10
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-UEL4VSCX.js";
|
|
11
13
|
import {
|
|
12
14
|
CODEX_AUTH_ENV_KEYS,
|
|
13
15
|
CODEX_AUTH_ENV_KEYS_BY_METHOD,
|
|
14
16
|
codexAuthEnvFromResponse,
|
|
15
17
|
createErrorResult,
|
|
16
18
|
createSuccessResult
|
|
17
|
-
} from "./chunk-
|
|
19
|
+
} from "./chunk-GQFXO5TG.js";
|
|
18
20
|
|
|
19
21
|
// src/managers/codex-token-manager.ts
|
|
20
22
|
import { promises as fs } from "fs";
|
|
@@ -230,7 +232,7 @@ var CodexTokenManager = class extends BaseRefreshManager {
|
|
|
230
232
|
const data = await response.json();
|
|
231
233
|
await this.applyCredentialsResponse(data);
|
|
232
234
|
if (restartOnChange && CODEX_AUTH_ENV_KEYS.some((key, index) => process.env[key] !== previousEnv[index])) {
|
|
233
|
-
const { restartCodexAspHostIfRunning: restartCodexAspHostIfRunning2 } = await import("./asp-host-
|
|
235
|
+
const { restartCodexAspHostIfRunning: restartCodexAspHostIfRunning2 } = await import("./asp-host-OB2X6EIN.js");
|
|
234
236
|
await restartCodexAspHostIfRunning2();
|
|
235
237
|
}
|
|
236
238
|
if (data.scope) {
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
import { createRequire as __createRequire } from 'node:module';
|
|
3
|
+
const require = __createRequire(import.meta.url);
|
|
2
4
|
|
|
3
5
|
// ../node_modules/.bun/pi-mcp-adapter@2.32.1+04b0d7b0bc944965/node_modules/pi-mcp-adapter/ui-stream-types.ts
|
|
4
6
|
import { z } from "zod";
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
import { createRequire as __createRequire } from 'node:module';
|
|
3
|
+
const require = __createRequire(import.meta.url);
|
|
2
4
|
import {
|
|
3
5
|
isRecord as isRecord2
|
|
4
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-UZSNFLDQ.js";
|
|
5
7
|
import {
|
|
6
8
|
REPLICAS_RUNTIME_ENV_ALIASES,
|
|
7
9
|
agentCredentialSnapshotSchema,
|
|
@@ -13,7 +15,7 @@ import {
|
|
|
13
15
|
isValidRelayBaseProvider,
|
|
14
16
|
parsePosixEnvFile,
|
|
15
17
|
readReplicasRuntimeEnv
|
|
16
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-GQFXO5TG.js";
|
|
17
19
|
|
|
18
20
|
// src/engine-env.ts
|
|
19
21
|
import { readFileSync as readFileSync2 } from "fs";
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
import { createRequire as __createRequire } from 'node:module';
|
|
3
|
+
const require = __createRequire(import.meta.url);
|
|
2
4
|
import {
|
|
3
5
|
matchesKey
|
|
4
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-BMC4R5IZ.js";
|
|
5
7
|
|
|
6
8
|
// ../node_modules/.bun/pi-mcp-adapter@2.32.1+04b0d7b0bc944965/node_modules/pi-mcp-adapter/panel-keys.ts
|
|
7
9
|
function configuredSaveKeys(keybindings) {
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
import { createRequire as __createRequire } from 'node:module';
|
|
3
|
+
const require = __createRequire(import.meta.url);
|
|
2
4
|
import {
|
|
3
5
|
monolithRequest
|
|
4
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-EYRVU2KX.js";
|
|
5
7
|
import {
|
|
6
8
|
extractCommandProtectionCommandText,
|
|
7
9
|
findGitCommitSignals,
|
|
8
10
|
findPrMergeSignals
|
|
9
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-GQFXO5TG.js";
|
|
10
12
|
|
|
11
13
|
// src/services/command-protection-service.ts
|
|
12
14
|
var DEFAULT_COMMAND_PROTECTION_BLOCK_MESSAGE = "Blocked by Replicas command protection.";
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
import { createRequire as __createRequire } from 'node:module';
|
|
3
|
+
const require = __createRequire(import.meta.url);
|
|
2
4
|
import {
|
|
3
5
|
mayCreatePullRequest
|
|
4
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-GQFXO5TG.js";
|
|
5
7
|
|
|
6
8
|
// src/services/post-tool-pr-notifier.ts
|
|
7
9
|
async function notifyPostToolUse(toolName, toolInput) {
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
import { createRequire as __createRequire } from 'node:module';
|
|
3
|
+
const require = __createRequire(import.meta.url);
|
|
2
4
|
import {
|
|
3
5
|
HOOK_EXEC_MAX_BUFFER_BYTES,
|
|
4
6
|
isVersionBelow
|
|
5
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-GQFXO5TG.js";
|
|
6
8
|
|
|
7
9
|
// src/utils/codex-agent-env.ts
|
|
8
10
|
function buildCodexAgentEnv(source = process.env) {
|
|
@@ -239,7 +241,7 @@ var DEFAULT_CODEX_ARGS = [
|
|
|
239
241
|
var MIN_CODEX_CLI_VERSION = "0.153.3";
|
|
240
242
|
var CODEX_UPGRADE_TIMEOUT_MS = 12e4;
|
|
241
243
|
var codexCliVersionEnsured = null;
|
|
242
|
-
var ENGINE_PACKAGE_VERSION = "0.1.
|
|
244
|
+
var ENGINE_PACKAGE_VERSION = "0.1.754";
|
|
243
245
|
var INITIALIZE_METHOD = "initialize";
|
|
244
246
|
var INITIALIZED_NOTIFICATION = "initialized";
|
|
245
247
|
var ACCOUNT_LOGIN_START_METHOD = "account/login/start";
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
import { createRequire as __createRequire } from 'node:module';
|
|
3
|
+
const require = __createRequire(import.meta.url);
|
|
2
4
|
import {
|
|
3
5
|
getAgentDir,
|
|
4
6
|
getAgentPath,
|
|
5
7
|
getConfigDirName,
|
|
6
8
|
isServerDisabled,
|
|
7
9
|
toStringRecord
|
|
8
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-BMC4R5IZ.js";
|
|
9
11
|
|
|
10
12
|
// ../node_modules/.bun/pi-mcp-adapter@2.32.1+04b0d7b0bc944965/node_modules/pi-mcp-adapter/config.ts
|
|
11
13
|
import { existsSync as existsSync3, readFileSync as readFileSync3, writeFileSync, mkdirSync, renameSync } from "fs";
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
import { createRequire as __createRequire } from 'node:module';
|
|
3
|
+
const require = __createRequire(import.meta.url);
|
|
2
4
|
import {
|
|
3
5
|
createToolSelectorCandidateIndex,
|
|
4
6
|
extractToolUiStreamMode,
|
|
@@ -14,7 +16,7 @@ import {
|
|
|
14
16
|
resolveConfigPath,
|
|
15
17
|
resolveServerUrl,
|
|
16
18
|
resolveToolPrefix
|
|
17
|
-
} from "./chunk-
|
|
19
|
+
} from "./chunk-BMC4R5IZ.js";
|
|
18
20
|
|
|
19
21
|
// ../node_modules/.bun/pi-mcp-adapter@2.32.1+04b0d7b0bc944965/node_modules/pi-mcp-adapter/resource-tools.ts
|
|
20
22
|
function resourceNameToToolName(name) {
|
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
import { createRequire as __createRequire } from 'node:module';
|
|
3
|
+
const require = __createRequire(import.meta.url);
|
|
2
4
|
import {
|
|
3
5
|
evaluateCommandProtection
|
|
4
|
-
} from "./chunk-
|
|
5
|
-
import "./chunk-
|
|
6
|
+
} from "./chunk-HJWLVQZ6.js";
|
|
7
|
+
import "./chunk-EYRVU2KX.js";
|
|
6
8
|
import {
|
|
7
9
|
isRecord
|
|
8
|
-
} from "./chunk-
|
|
9
|
-
import "./chunk-
|
|
10
|
-
import "./chunk-
|
|
10
|
+
} from "./chunk-UZSNFLDQ.js";
|
|
11
|
+
import "./chunk-GQFXO5TG.js";
|
|
12
|
+
import "./chunk-VEQXQN22.js";
|
|
11
13
|
|
|
12
14
|
// src/command-protection-hook.ts
|
|
13
15
|
var provider = process.argv[2];
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
import { createRequire as __createRequire } from 'node:module';
|
|
3
|
+
const require = __createRequire(import.meta.url);
|
|
2
4
|
import {
|
|
3
5
|
evaluateCommandProtection
|
|
4
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-HJWLVQZ6.js";
|
|
5
7
|
import {
|
|
6
8
|
notifyPostToolUse
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-
|
|
10
|
-
import "./chunk-
|
|
11
|
-
import "./chunk-
|
|
9
|
+
} from "./chunk-LAK7IDRF.js";
|
|
10
|
+
import "./chunk-EYRVU2KX.js";
|
|
11
|
+
import "./chunk-UZSNFLDQ.js";
|
|
12
|
+
import "./chunk-GQFXO5TG.js";
|
|
13
|
+
import "./chunk-VEQXQN22.js";
|
|
12
14
|
|
|
13
15
|
// src/deepseek-command-protection-plugin.ts
|
|
14
16
|
function replicasCommandProtection(context) {
|
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
import { createRequire as __createRequire } from 'node:module';
|
|
3
|
+
const require = __createRequire(import.meta.url);
|
|
2
4
|
import {
|
|
3
5
|
putPresignedFile,
|
|
4
6
|
recoverCompletedTurn
|
|
5
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-FLDA7BX3.js";
|
|
6
8
|
import {
|
|
7
9
|
AppServerProcess,
|
|
8
10
|
buildCodexAgentEnv
|
|
9
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-UEL4VSCX.js";
|
|
10
12
|
import {
|
|
11
13
|
AGENT,
|
|
12
14
|
getMemoryOutputSafetyViolation,
|
|
13
15
|
headlessAgentRequestSchema
|
|
14
|
-
} from "./chunk-
|
|
15
|
-
import "./chunk-
|
|
16
|
+
} from "./chunk-GQFXO5TG.js";
|
|
17
|
+
import "./chunk-VEQXQN22.js";
|
|
16
18
|
|
|
17
19
|
// src/headless-agent.ts
|
|
18
20
|
import { createHash } from "crypto";
|
package/dist/src/index.js
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
import { createRequire as __createRequire } from 'node:module';
|
|
3
|
+
const require = __createRequire(import.meta.url);
|
|
2
4
|
import {
|
|
3
5
|
cloneMcpConfig,
|
|
4
6
|
ensureCompatibilityImports,
|
|
@@ -15,7 +17,7 @@ import {
|
|
|
15
17
|
writeProjectServerDisabledOverride,
|
|
16
18
|
writeSharedServerEntry,
|
|
17
19
|
writeStarterSharedConfig
|
|
18
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-UHBYG6JY.js";
|
|
19
21
|
import {
|
|
20
22
|
RESOURCE_MIME_TYPE,
|
|
21
23
|
buildAllowAttribute,
|
|
@@ -37,7 +39,7 @@ import {
|
|
|
37
39
|
serializePrompts,
|
|
38
40
|
serializeResources,
|
|
39
41
|
serializeTools
|
|
40
|
-
} from "./chunk-
|
|
42
|
+
} from "./chunk-UP57BRAF.js";
|
|
41
43
|
import {
|
|
42
44
|
MCP_STATUS_EVENT,
|
|
43
45
|
MCP_STATUS_SNAPSHOT_VERSION,
|
|
@@ -84,12 +86,12 @@ import {
|
|
|
84
86
|
truncateAtWord,
|
|
85
87
|
truncateToWidth,
|
|
86
88
|
visibleWidth
|
|
87
|
-
} from "./chunk-
|
|
89
|
+
} from "./chunk-BMC4R5IZ.js";
|
|
88
90
|
import {
|
|
89
91
|
evaluateCommandProtection,
|
|
90
92
|
extractToolCommand,
|
|
91
93
|
reportCommandProtectionBlock
|
|
92
|
-
} from "./chunk-
|
|
94
|
+
} from "./chunk-HJWLVQZ6.js";
|
|
93
95
|
import {
|
|
94
96
|
ACCOUNT_RATE_LIMITS_UPDATED_METHOD,
|
|
95
97
|
AGENT_MESSAGE_DELTA_METHOD,
|
|
@@ -111,7 +113,7 @@ import {
|
|
|
111
113
|
dispatchAspNotification,
|
|
112
114
|
putPresignedFile,
|
|
113
115
|
recoverCompletedTurn
|
|
114
|
-
} from "./chunk-
|
|
116
|
+
} from "./chunk-FLDA7BX3.js";
|
|
115
117
|
import {
|
|
116
118
|
BaseRefreshManager,
|
|
117
119
|
CodexAspAuthMethodChangedError,
|
|
@@ -122,23 +124,23 @@ import {
|
|
|
122
124
|
recordCredentialFallback,
|
|
123
125
|
recordExhaustedCredential,
|
|
124
126
|
restartCodexAspHost
|
|
125
|
-
} from "./chunk-
|
|
127
|
+
} from "./chunk-2PJZNPYN.js";
|
|
126
128
|
import {
|
|
127
129
|
ENGINE_ENV,
|
|
128
130
|
IS_WARMING_MODE,
|
|
129
131
|
monolithRequest,
|
|
130
132
|
monolithService,
|
|
131
133
|
setAgentCredentialSnapshot
|
|
132
|
-
} from "./chunk-
|
|
134
|
+
} from "./chunk-EYRVU2KX.js";
|
|
133
135
|
import {
|
|
134
136
|
AspClient,
|
|
135
137
|
SUBPROCESS_MAX_BUFFER,
|
|
136
138
|
execAsync,
|
|
137
139
|
execFileAsync
|
|
138
|
-
} from "./chunk-
|
|
140
|
+
} from "./chunk-UEL4VSCX.js";
|
|
139
141
|
import {
|
|
140
142
|
isRecord as isRecord2
|
|
141
|
-
} from "./chunk-
|
|
143
|
+
} from "./chunk-UZSNFLDQ.js";
|
|
142
144
|
import {
|
|
143
145
|
ACCEPTED_USER_MESSAGE_SOURCE,
|
|
144
146
|
AGENT,
|
|
@@ -328,13 +330,13 @@ import {
|
|
|
328
330
|
spawnRelaySubagentRequestSchema,
|
|
329
331
|
stripAgentDiagnosticErrors,
|
|
330
332
|
withTimeout
|
|
331
|
-
} from "./chunk-
|
|
333
|
+
} from "./chunk-GQFXO5TG.js";
|
|
332
334
|
import {
|
|
333
335
|
__commonJS,
|
|
334
336
|
__export,
|
|
335
337
|
__require,
|
|
336
338
|
__toESM
|
|
337
|
-
} from "./chunk-
|
|
339
|
+
} from "./chunk-VEQXQN22.js";
|
|
338
340
|
|
|
339
341
|
// ../node_modules/.bun/isexe@2.0.0/node_modules/isexe/windows.js
|
|
340
342
|
var require_windows = __commonJS({
|
|
@@ -48976,7 +48978,7 @@ async function openMcpSetup(state, pi, ctx, configOverridePath, mode = "setup",
|
|
|
48976
48978
|
}
|
|
48977
48979
|
const discovery = getMcpDiscoverySummary(configOverridePath, ctx.cwd, options);
|
|
48978
48980
|
const onboardingState = loadOnboardingState();
|
|
48979
|
-
const { createMcpSetupPanel } = await import("./mcp-setup-panel-
|
|
48981
|
+
const { createMcpSetupPanel } = await import("./mcp-setup-panel-RG6Z4BOM.js");
|
|
48980
48982
|
let configChanged = false;
|
|
48981
48983
|
const callbacks = {
|
|
48982
48984
|
previewImports: (imports) => previewCompatibilityImports(imports, configOverridePath),
|
|
@@ -49103,7 +49105,7 @@ async function openMcpPanel(state, pi, ctx, configOverridePath, onDirectToolsCon
|
|
|
49103
49105
|
const { lines: noticeLines, fingerprint } = buildSharedConfigNoticeLines(configPath, ctx.cwd);
|
|
49104
49106
|
let overlayHandle;
|
|
49105
49107
|
const callbacks = buildMcpPanelCallbacks(state, config, ctx, () => overlayHandle);
|
|
49106
|
-
const { createMcpPanel } = await import("./mcp-panel-
|
|
49108
|
+
const { createMcpPanel } = await import("./mcp-panel-IBIVWX27.js");
|
|
49107
49109
|
let configChanged = false;
|
|
49108
49110
|
await new Promise((resolve7) => {
|
|
49109
49111
|
ctx.ui.custom(
|
|
@@ -49175,7 +49177,7 @@ async function openMcpAuthPanel(state, pi, ctx, configOverridePath) {
|
|
|
49175
49177
|
const provenanceMap = getServerProvenance(configPath, ctx.cwd);
|
|
49176
49178
|
let overlayHandle;
|
|
49177
49179
|
const callbacks = buildMcpPanelCallbacks(state, config, ctx, () => overlayHandle);
|
|
49178
|
-
const { createMcpPanel } = await import("./mcp-panel-
|
|
49180
|
+
const { createMcpPanel } = await import("./mcp-panel-IBIVWX27.js");
|
|
49179
49181
|
await new Promise((resolve7) => {
|
|
49180
49182
|
ctx.ui.custom(
|
|
49181
49183
|
(tui, _theme, keybindings, done) => {
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
import { createRequire as __createRequire } from 'node:module';
|
|
3
|
+
const require = __createRequire(import.meta.url);
|
|
2
4
|
import {
|
|
3
5
|
createPanelKeys
|
|
4
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-HHIELO4H.js";
|
|
5
7
|
import {
|
|
6
8
|
isServerCacheValid,
|
|
7
9
|
isUiToolVisibleToModel,
|
|
8
10
|
resourceNameToToolName
|
|
9
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-UP57BRAF.js";
|
|
10
12
|
import {
|
|
11
13
|
getToolNameCandidates,
|
|
12
14
|
isServerDisabled,
|
|
@@ -17,8 +19,8 @@ import {
|
|
|
17
19
|
stripOscSequences,
|
|
18
20
|
truncateToWidth,
|
|
19
21
|
visibleWidth
|
|
20
|
-
} from "./chunk-
|
|
21
|
-
import "./chunk-
|
|
22
|
+
} from "./chunk-BMC4R5IZ.js";
|
|
23
|
+
import "./chunk-VEQXQN22.js";
|
|
22
24
|
|
|
23
25
|
// ../node_modules/.bun/pi-mcp-adapter@2.32.1+04b0d7b0bc944965/node_modules/pi-mcp-adapter/mcp-panel.ts
|
|
24
26
|
import { copyToClipboard } from "@earendil-works/pi-coding-agent";
|
|
@@ -1,17 +1,19 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
import { createRequire as __createRequire } from 'node:module';
|
|
3
|
+
const require = __createRequire(import.meta.url);
|
|
2
4
|
import {
|
|
3
5
|
createPanelKeys
|
|
4
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-HHIELO4H.js";
|
|
5
7
|
import {
|
|
6
8
|
KNOWN_SERVER_PRESETS
|
|
7
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-UHBYG6JY.js";
|
|
8
10
|
import {
|
|
9
11
|
getConfigDirName,
|
|
10
12
|
matchesKey,
|
|
11
13
|
truncateToWidth,
|
|
12
14
|
visibleWidth
|
|
13
|
-
} from "./chunk-
|
|
14
|
-
import "./chunk-
|
|
15
|
+
} from "./chunk-BMC4R5IZ.js";
|
|
16
|
+
import "./chunk-VEQXQN22.js";
|
|
15
17
|
|
|
16
18
|
// ../node_modules/.bun/pi-mcp-adapter@2.32.1+04b0d7b0bc944965/node_modules/pi-mcp-adapter/mcp-setup-panel.ts
|
|
17
19
|
var DEFAULT_THEME = {
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
import { createRequire as __createRequire } from 'node:module';
|
|
3
|
+
const require = __createRequire(import.meta.url);
|
|
2
4
|
import {
|
|
3
5
|
notifyPostToolUse
|
|
4
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-LAK7IDRF.js";
|
|
5
7
|
import {
|
|
6
8
|
isRecord
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-
|
|
9
|
+
} from "./chunk-UZSNFLDQ.js";
|
|
10
|
+
import "./chunk-GQFXO5TG.js";
|
|
11
|
+
import "./chunk-VEQXQN22.js";
|
|
10
12
|
|
|
11
13
|
// src/post-tool-pr-hook.ts
|
|
12
14
|
async function main() {
|
package/dist/src/relay-mcp.js
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
import { createRequire as __createRequire } from 'node:module';
|
|
3
|
+
const require = __createRequire(import.meta.url);
|
|
2
4
|
import {
|
|
3
5
|
messageRelaySubagentRequestSchema,
|
|
4
6
|
spawnRelaySubagentRequestSchema
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
+
} from "./chunk-GQFXO5TG.js";
|
|
8
|
+
import "./chunk-VEQXQN22.js";
|
|
7
9
|
|
|
8
10
|
// src/relay-mcp.ts
|
|
9
11
|
import { parseArgs } from "util";
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
import { createRequire as __createRequire } from 'node:module';
|
|
3
|
+
const require = __createRequire(import.meta.url);
|
|
2
4
|
import {
|
|
3
5
|
__export
|
|
4
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-VEQXQN22.js";
|
|
5
7
|
|
|
6
8
|
// ../node_modules/.bun/jose@6.2.3/node_modules/jose/dist/webapi/util/base64url.js
|
|
7
9
|
var base64url_exports = {};
|
package/package.json
CHANGED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
import {
|
|
3
|
-
getCodexAspHost,
|
|
4
|
-
restartCodexAspHost,
|
|
5
|
-
restartCodexAspHostIfRunning
|
|
6
|
-
} from "./chunk-7BMG23BX.js";
|
|
7
|
-
import "./chunk-GQTP5TPD.js";
|
|
8
|
-
import "./chunk-JQ4OOC6O.js";
|
|
9
|
-
import "./chunk-2RB7SIP3.js";
|
|
10
|
-
import "./chunk-MNVK5OPD.js";
|
|
11
|
-
import "./chunk-5KSXSK7Y.js";
|
|
12
|
-
export {
|
|
13
|
-
getCodexAspHost,
|
|
14
|
-
restartCodexAspHost,
|
|
15
|
-
restartCodexAspHostIfRunning
|
|
16
|
-
};
|