@skillcap/gdh 0.19.5 → 0.20.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.
- package/INSTALL-BUNDLE.json +1 -1
- package/RELEASE-SPAN-UPDATE-CONTRACTS.json +131 -0
- package/node_modules/@gdh/adapters/dist/index.d.ts.map +1 -1
- package/node_modules/@gdh/adapters/dist/index.js +44 -1
- package/node_modules/@gdh/adapters/dist/index.js.map +1 -1
- package/node_modules/@gdh/adapters/dist/skill-rendering.d.ts +1 -1
- package/node_modules/@gdh/adapters/dist/skill-rendering.d.ts.map +1 -1
- package/node_modules/@gdh/adapters/dist/skill-rendering.js +51 -16
- package/node_modules/@gdh/adapters/dist/skill-rendering.js.map +1 -1
- package/node_modules/@gdh/adapters/package.json +8 -8
- package/node_modules/@gdh/authoring/package.json +2 -2
- package/node_modules/@gdh/cli/dist/bridge-session.d.ts +21 -0
- package/node_modules/@gdh/cli/dist/bridge-session.d.ts.map +1 -0
- package/node_modules/@gdh/cli/dist/bridge-session.js +442 -0
- package/node_modules/@gdh/cli/dist/bridge-session.js.map +1 -0
- package/node_modules/@gdh/cli/dist/index.d.ts.map +1 -1
- package/node_modules/@gdh/cli/dist/index.js +44 -1
- package/node_modules/@gdh/cli/dist/index.js.map +1 -1
- package/node_modules/@gdh/cli/dist/migrate.d.ts +13 -0
- package/node_modules/@gdh/cli/dist/migrate.d.ts.map +1 -1
- package/node_modules/@gdh/cli/dist/migrate.js +20 -0
- package/node_modules/@gdh/cli/dist/migrate.js.map +1 -1
- package/node_modules/@gdh/cli/package.json +10 -10
- package/node_modules/@gdh/core/dist/index.d.ts +11 -2
- package/node_modules/@gdh/core/dist/index.d.ts.map +1 -1
- package/node_modules/@gdh/core/dist/index.js +2 -2
- package/node_modules/@gdh/core/dist/index.js.map +1 -1
- package/node_modules/@gdh/core/package.json +1 -1
- package/node_modules/@gdh/docs/dist/guidance.d.ts.map +1 -1
- package/node_modules/@gdh/docs/dist/guidance.js +10 -0
- package/node_modules/@gdh/docs/dist/guidance.js.map +1 -1
- package/node_modules/@gdh/docs/package.json +2 -2
- package/node_modules/@gdh/mcp/dist/bridge-tools.d.ts +15 -0
- package/node_modules/@gdh/mcp/dist/bridge-tools.d.ts.map +1 -0
- package/node_modules/@gdh/mcp/dist/bridge-tools.js +111 -0
- package/node_modules/@gdh/mcp/dist/bridge-tools.js.map +1 -0
- package/node_modules/@gdh/mcp/dist/index.d.ts +3 -2
- package/node_modules/@gdh/mcp/dist/index.d.ts.map +1 -1
- package/node_modules/@gdh/mcp/dist/index.js +13 -44
- package/node_modules/@gdh/mcp/dist/index.js.map +1 -1
- package/node_modules/@gdh/mcp/package.json +8 -8
- package/node_modules/@gdh/observability/package.json +2 -2
- package/node_modules/@gdh/runtime/dist/bridge-broker-client.d.ts +32 -0
- package/node_modules/@gdh/runtime/dist/bridge-broker-client.d.ts.map +1 -0
- package/node_modules/@gdh/runtime/dist/bridge-broker-client.js +118 -0
- package/node_modules/@gdh/runtime/dist/bridge-broker-client.js.map +1 -0
- package/node_modules/@gdh/runtime/dist/bridge-broker.d.ts +78 -0
- package/node_modules/@gdh/runtime/dist/bridge-broker.d.ts.map +1 -0
- package/node_modules/@gdh/runtime/dist/bridge-broker.js +587 -0
- package/node_modules/@gdh/runtime/dist/bridge-broker.js.map +1 -0
- package/node_modules/@gdh/runtime/dist/index.d.ts +3 -0
- package/node_modules/@gdh/runtime/dist/index.d.ts.map +1 -1
- package/node_modules/@gdh/runtime/dist/index.js +3 -0
- package/node_modules/@gdh/runtime/dist/index.js.map +1 -1
- package/node_modules/@gdh/runtime/package.json +2 -2
- package/node_modules/@gdh/scan/package.json +3 -3
- package/node_modules/@gdh/verify/package.json +7 -7
- package/package.json +11 -11
|
@@ -1,4 +1,25 @@
|
|
|
1
1
|
const PREVIEW_HEADER_LITERAL = "Preview (dry-run) — not applied";
|
|
2
|
+
function invocationForAgent(agent, skillName) {
|
|
3
|
+
if (agent === "codex") {
|
|
4
|
+
return `$${skillName}`;
|
|
5
|
+
}
|
|
6
|
+
if (agent === "cursor") {
|
|
7
|
+
return skillName;
|
|
8
|
+
}
|
|
9
|
+
return `/${skillName}`;
|
|
10
|
+
}
|
|
11
|
+
function positionalExampleForAgent(agent, skillName) {
|
|
12
|
+
return `${invocationForAgent(agent, skillName)} 0.6.0`;
|
|
13
|
+
}
|
|
14
|
+
function updateApprovalInstruction(agent) {
|
|
15
|
+
if (agent === "claude") {
|
|
16
|
+
return "Ask for explicit approval before apply using `AskUserQuestion`; the approval text must name the target, target version, and that GDH will rewrite managed surfaces.";
|
|
17
|
+
}
|
|
18
|
+
if (agent === "codex") {
|
|
19
|
+
return "Ask for explicit approval before apply using `request_user_input` when available; otherwise ask a direct approve/abort question in chat. The approval text must name the target, target version, and that GDH will rewrite managed surfaces.";
|
|
20
|
+
}
|
|
21
|
+
return "Ask for explicit approval before apply with a direct approve/abort question in chat. The approval text must name the target, target version, and that GDH will rewrite managed surfaces.";
|
|
22
|
+
}
|
|
2
23
|
const ONBOARD_TERMS = [
|
|
3
24
|
"`target`: the Godot project root GDH should inspect or manage.",
|
|
4
25
|
"`onboard`: first-time GDH setup that writes durable `.gdh/` project truth, generated agent surfaces, and derived `.gdh-state/` inventory.",
|
|
@@ -107,12 +128,14 @@ export const GDH_SKILL_DEFINITIONS = {
|
|
|
107
128
|
],
|
|
108
129
|
process: (version) => [
|
|
109
130
|
`Run \`${pin(version)} status\` and parse the stdout JSON. Treat stderr/prose as context only; do not infer readiness from it.`,
|
|
110
|
-
"
|
|
131
|
+
"Say `GDH Status` and use these compact sections in order: `Readiness`, `Lifecycle`, `Capabilities`, `Runtime Knowledge`, `Runtime Bridge Broker`, `Recovery`, and `Recommended Next Step`.",
|
|
132
|
+
"Populate those sections from these exact fields: `readiness`, `projectLifecycle.state`, `projectLifecycle.blockingReasons`, `projectLifecycle.coupledReasons`, `recoveryHints`, notable `capabilities`, `runtimeKnowledge.state`, `runtimeBridgeBroker.state`, `runtimeBridgeBroker.summary`, and one agent-chosen `recommendedNextStep` derived from those fields.",
|
|
111
133
|
"Remember status is cache-consuming, not cache-writing: it reads `.gdh-state/inventory.json` when usable and falls back to a live scan when the cache is missing, corrupt, or schema-mismatched.",
|
|
112
134
|
"Use `recoveryHints` as the first source for action routing. If a blocking reason has no recovery hint, report the reason literally and avoid inventing a command.",
|
|
113
135
|
`Run \`${pin(version)} migrate\` as a dry-run only when \`projectLifecycle.coupledReasons\` is non-empty, \`projectLifecycle.state\` is not \`compatible\`, or the status payload otherwise indicates pending migration work.`,
|
|
114
136
|
`${PREVIEW_HEADER_LITERAL} — migrate output at this step describes planned actions ("would delete ...") not applied ones ("deleted").`,
|
|
115
137
|
"Surface degraded/unavailable capabilities, including operational/diagnostic capability fields when present.",
|
|
138
|
+
"When `runtimeBridgeBroker.state` is `stale` or `incompatible`, route recovery through `runtimeBridgeBroker.cleanupCommand` / gdh bridge session prune; do not recommend gdh bridge repair unless project lifecycle or bridge status reports runtime bridge surface drift.",
|
|
116
139
|
"Do not treat capability availability as validation evidence. If the user needs code validity evidence, route to `/gdh-check`.",
|
|
117
140
|
"Suggest one most productive next step based on the structured fields; do not claim GDH emitted a top-level `nextStep` field.",
|
|
118
141
|
],
|
|
@@ -140,7 +163,8 @@ export const GDH_SKILL_DEFINITIONS = {
|
|
|
140
163
|
"Treat the inventory cache as `.gdh-state/inventory.json`; do not assume the user or agent already knows that term.",
|
|
141
164
|
"If `persisted` is non-null, check `persisted.mode`: `create`, `unchanged`, or `overwrite`, and report `persisted.relativePath`.",
|
|
142
165
|
"If `persisted` is `null`, explain that no onboarded ancestor was found, so the scan was stdout-only and no cache was written.",
|
|
143
|
-
"
|
|
166
|
+
"Say `GDH Scan` and use these compact sections in order: `Projects`, `Inventory Evidence`, `Cache`, and `Recommended Next Step`.",
|
|
167
|
+
"Summarize detected projects, key inventory evidence, persistence result, cache path when present, and one next step (`/gdh-onboard`, `/gdh-status`, or none).",
|
|
144
168
|
],
|
|
145
169
|
rules: () => [
|
|
146
170
|
"Do not edit the persisted inventory directly.",
|
|
@@ -165,12 +189,14 @@ export const GDH_SKILL_DEFINITIONS = {
|
|
|
165
189
|
`Run \`${pin(version)} migrate\` to preview pending migrations (this is a dry-run; the stdout JSON \`mode\` field will be \`"preview"\`).`,
|
|
166
190
|
"Parse stdout JSON as the source of truth. If the command exits non-zero but stdout contains JSON, still classify that JSON; treat stderr or prose as context only.",
|
|
167
191
|
'Confirm `mode` is `"preview"`. If stdout is not parseable JSON or the mode is missing, stop and report that the migration contract could not be read.',
|
|
192
|
+
"Say `GDH Migration Preview` for the dry-run and use these compact sections in order: `State`, `Compatibility`, `Actions`, `Terminal`, and `Recommended Next Step`.",
|
|
168
193
|
"Summarize `state`, `changedActionCount`, `actionCounts`, `compatibility.blockingReasons`, `compatibility.coupledReasons`, and `terminal.state`.",
|
|
194
|
+
"When `brokerTransition` is present, summarize it explicitly: pre-broker active sessions are unrecoverable, post-broker sessions are reconnectable, `.gdh-state/` stays untracked, and broker support alone does not require gdh bridge repair.",
|
|
169
195
|
'Summarize each `actions[]` entry using its exact `id`, `kind`, `state`, `relativePath`, `summary`, `reasons`, `command`, `validationCommands`, and `manualSteps` fields when present. In preview, use "would" verb forms: "would delete", "would create", "would refresh".',
|
|
170
196
|
"If preview `state` is `noop` or `changedActionCount` is `0` and `terminal.state` is `healthy`, say no migration apply is needed and stop.",
|
|
171
197
|
"If preview `state` is `blocked`, do not offer or run migrate apply. Surface `terminal.summary`, reasons, `terminal.commands`, `terminal.validationCommands`, and `terminal.manualSteps`; run only exact surfaced auto-applicable commands if the user approves them, and do not invent `/gdh-update` or repo-local repair steps.",
|
|
172
198
|
`Otherwise, offer to run \`${pin(version)} migrate --apply\` if the user explicitly approves. Do not treat the preview as already applied.`,
|
|
173
|
-
'After apply, parse stdout JSON again, confirm `mode` is `"applied"`, and switch to past-tense summaries only for actions whose returned `state` is `applied`.',
|
|
199
|
+
'After apply, parse stdout JSON again, confirm `mode` is `"applied"`, say `GDH Migration Result`, and switch to past-tense summaries only for actions whose returned `state` is `applied`.',
|
|
174
200
|
"After apply, classify the outcome from `terminal.state`, not from stderr, action count alone, or prose summaries.",
|
|
175
201
|
"If `terminal.state` is `healthy`, confirm no further migration action is required and stop.",
|
|
176
202
|
"If `terminal.state` is `follow_up_required`, run the surfaced `terminal.commands`, then run the surfaced `terminal.validationCommands`, and confirm the follow-up results before stopping.",
|
|
@@ -193,18 +219,27 @@ export const GDH_SKILL_DEFINITIONS = {
|
|
|
193
219
|
objective: "Update this project's GDH pinning to npm latest and re-bake every managed surface at the new pin.",
|
|
194
220
|
terms: UPDATE_TERMS,
|
|
195
221
|
versionMode: "latest",
|
|
196
|
-
claudeTools: ["Read", "Bash"],
|
|
222
|
+
claudeTools: ["Read", "Bash", "AskUserQuestion"],
|
|
197
223
|
claudeManualOnly: true,
|
|
198
|
-
|
|
224
|
+
userQuestions: [
|
|
225
|
+
"Ask exactly once before apply, after the structured preview.",
|
|
226
|
+
"Use the provider-native confirmation mechanism when available: Claude `AskUserQuestion`; Codex `request_user_input` when available, otherwise direct chat; Cursor direct chat.",
|
|
227
|
+
"The confirmation must name the target path, target GDH version, and that GDH will rewrite managed surfaces.",
|
|
228
|
+
"If the user does not clearly approve, stop before apply.",
|
|
229
|
+
],
|
|
230
|
+
process: (_version, agent) => [
|
|
199
231
|
"Preview: run `npx -y @skillcap/gdh@latest self-update [version] --dry-run --target <target>` when the target is not the current directory; omit `[version]` to preview against npm latest.",
|
|
200
232
|
"Parse stdout JSON as the source of truth even if the command exits non-zero; stderr/prose is context only. If stdout JSON is absent or invalid, stop and report that the update contract could not be read.",
|
|
201
233
|
"Read the `preview` field in the stdout JSON. If `preview.state` is `blocked`, surface the issues and stop. If `preview.state` is `noop`, explain the project is already at the target version and stop.",
|
|
202
|
-
"When `preview.state` is `ready`,
|
|
203
|
-
"
|
|
204
|
-
|
|
234
|
+
"When `preview.state` is `ready`, say `GDH Update Preview` and use these compact sections in order: `Version`, `Changelog`, `Migration Work`, `Approval Required`, and `Next Step`.",
|
|
235
|
+
"In that preview, report current version, target version, target path, intervening releases, bounded release highlights from each release, ordered steps, and counts for `mechanical`, `agent_reasoning`, and `manual_review` work.",
|
|
236
|
+
updateApprovalInstruction(agent),
|
|
237
|
+
`Apply: run \`npx -y @skillcap/gdh@latest self-update [version] --target <target>\` when needed (omit \`[version]\` to apply against npm latest; forward whatever positional the user passed to \`${invocationForAgent(agent, "gdh-update")}\`).`,
|
|
205
238
|
"Parse the apply stdout JSON even when the command exits non-zero, because `manual_review_required` and `follow_up_required` can intentionally return a nonzero exit while still carrying the terminal contract.",
|
|
206
|
-
"
|
|
207
|
-
"
|
|
239
|
+
"Confirm the apply stdout JSON includes `result.state` and `terminal.state`. If either field is missing, stop and report that the update contract is incomplete instead of guessing migration state.",
|
|
240
|
+
"Read `terminal.state` in the apply stdout JSON before running extra validation and treat it as the lifecycle/runtime truth. Say `GDH Update Result` and use these compact sections in order: `Version`, `Terminal`, `Actions`, `MCP`, `Drift`, and `Next Step`.",
|
|
241
|
+
"If `migration.brokerTransition` is present, report that old pre-broker active sessions cannot be recovered after update, new broker-backed sessions are reconnectable, and broker metadata/token files stay under ignored `.gdh-state/`.",
|
|
242
|
+
"Only when `result.state` is `updated` and this chat or editor keeps a long-lived GDH MCP session alive, read `mcpCleanup` before trusting MCP follow-up output. If `mcpCleanup` is null, report that stale MCP cleanup could not be inspected and ask the user to restart or refresh the host agent session. If `mcpCleanup.staleOwned` or `mcpCleanup.failedKills` is non-empty, run `npx -y @skillcap/gdh@latest mcp cleanup --target <target>` to inspect target-owned stale servers, then run the same command with `--apply` to stop only stale processes whose command/cwd/target proves ownership. If only `mcpCleanup.unknown` is non-empty, report that ownership cannot be proven and ask the user to restart or refresh the host agent session.",
|
|
208
243
|
"Verify baked pinning after apply or surfaced follow-up commands: run `npx -y @skillcap/gdh@latest verify drift <target>` to confirm every managed skill and hook surface matches the new pin. This does not validate runtime bridge, lifecycle, or code validity.",
|
|
209
244
|
"If `terminal.state` is `healthy`, confirm the update completed and stop.",
|
|
210
245
|
"If `terminal.state` is `follow_up_required`, run the surfaced `terminal.commands`, then run the surfaced `terminal.validationCommands`, and confirm the follow-up results before stopping.",
|
|
@@ -212,7 +247,7 @@ export const GDH_SKILL_DEFINITIONS = {
|
|
|
212
247
|
"If `terminal.state` is `blocked`, surface `terminal.summary` plus the reasons and stop.",
|
|
213
248
|
],
|
|
214
249
|
rules: () => [
|
|
215
|
-
"Do ask for explicit approval after the structured preview and before apply.",
|
|
250
|
+
"Do ask for explicit approval after the structured preview and before apply; do not accept silence, implied approval, or the original update request as apply approval.",
|
|
216
251
|
"Do not invent migration steps from prose docs; use the machine-readable `preview` payload.",
|
|
217
252
|
"Do treat `terminal.state` as the primary apply truth; the additive compatibility fields are not the main follow-through contract.",
|
|
218
253
|
"`terminal.commands` contains only GDH-classified auto-applicable follow-up; project-owned review stays in `terminal.manualSteps`.",
|
|
@@ -302,7 +337,7 @@ export function renderGdhSkill(agent, skillId, pinnedVersion) {
|
|
|
302
337
|
definition.objective.replace("`gdh setup`", `\`${pin(pinnedVersion)} setup\``),
|
|
303
338
|
...(definition.id === "update"
|
|
304
339
|
? [
|
|
305
|
-
|
|
340
|
+
`Treat any positional argument (e.g., \`${positionalExampleForAgent(agent, definition.name)}\`) as an explicit version; otherwise default to npm latest.`,
|
|
306
341
|
]
|
|
307
342
|
: []),
|
|
308
343
|
"",
|
|
@@ -312,7 +347,7 @@ export function renderGdhSkill(agent, skillId, pinnedVersion) {
|
|
|
312
347
|
"## Process",
|
|
313
348
|
"Follow this order:",
|
|
314
349
|
"",
|
|
315
|
-
...definition.process(pinnedVersion).map((step, index) => `${index + 1}. ${step}`),
|
|
350
|
+
...definition.process(pinnedVersion, agent).map((step, index) => `${index + 1}. ${step}`),
|
|
316
351
|
"",
|
|
317
352
|
"## Rules",
|
|
318
353
|
...definition.rules(pinnedVersion).map((rule) => `- ${rule}`),
|
|
@@ -353,12 +388,12 @@ function renderFrontmatter(agent, definition) {
|
|
|
353
388
|
return frontmatter;
|
|
354
389
|
}
|
|
355
390
|
function renderInvocation(agent, definition) {
|
|
356
|
-
const mention = agent
|
|
391
|
+
const mention = invocationForAgent(agent, definition.name);
|
|
357
392
|
const lines = [
|
|
358
|
-
`- This skill is invoked when the user says
|
|
393
|
+
`- This skill is invoked when the user says or mentions \`${mention}\`.`,
|
|
359
394
|
];
|
|
360
395
|
if (definition.id === "update") {
|
|
361
|
-
lines.push(
|
|
396
|
+
lines.push(`- Treat any positional argument (e.g., \`${positionalExampleForAgent(agent, definition.name)}\`) as an explicit version; otherwise default to npm latest.`);
|
|
362
397
|
}
|
|
363
398
|
else {
|
|
364
399
|
lines.push(`- Treat any extra user text as additional ${definition.id} context.`);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"skill-rendering.js","sourceRoot":"","sources":["../src/skill-rendering.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"skill-rendering.js","sourceRoot":"","sources":["../src/skill-rendering.ts"],"names":[],"mappings":"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"}
|
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
}
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@gdh/authoring": "0.
|
|
15
|
-
"@gdh/core": "0.
|
|
16
|
-
"@gdh/docs": "0.
|
|
17
|
-
"@gdh/observability": "0.
|
|
18
|
-
"@gdh/runtime": "0.
|
|
19
|
-
"@gdh/scan": "0.
|
|
20
|
-
"@gdh/verify": "0.
|
|
14
|
+
"@gdh/authoring": "0.20.0",
|
|
15
|
+
"@gdh/core": "0.20.0",
|
|
16
|
+
"@gdh/docs": "0.20.0",
|
|
17
|
+
"@gdh/observability": "0.20.0",
|
|
18
|
+
"@gdh/runtime": "0.20.0",
|
|
19
|
+
"@gdh/scan": "0.20.0",
|
|
20
|
+
"@gdh/verify": "0.20.0"
|
|
21
21
|
},
|
|
22
|
-
"version": "0.
|
|
22
|
+
"version": "0.20.0"
|
|
23
23
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { readProjectConfig } from "@gdh/authoring";
|
|
2
|
+
import { ensureRuntimeBridgeBroker, getRuntimeBridgeBrokerSession, inspectRuntimeBridgeBroker, invokeRuntimeBridgeBroker, invokeRuntimeBridgeBrokerEntry, listRuntimeBridgeBrokerEntries, listRuntimeBridgeBrokerSessions, pruneRuntimeBridgeBroker, startRuntimeBridgeBrokerSession, stopAllRuntimeBridgeBrokerSessions, stopRuntimeBridgeBrokerSession } from "@gdh/runtime";
|
|
3
|
+
import type { CliIo } from "./index.js";
|
|
4
|
+
export interface BridgeSessionCommandDependencies {
|
|
5
|
+
readonly resolveEffectiveTargetPath: (targetPath: string) => Promise<string>;
|
|
6
|
+
readonly readProjectConfig: typeof readProjectConfig;
|
|
7
|
+
readonly ensureRuntimeBridgeBroker: typeof ensureRuntimeBridgeBroker;
|
|
8
|
+
readonly inspectRuntimeBridgeBroker: typeof inspectRuntimeBridgeBroker;
|
|
9
|
+
readonly pruneRuntimeBridgeBroker: typeof pruneRuntimeBridgeBroker;
|
|
10
|
+
readonly readBrokerToken: (tokenFilePath: string) => Promise<string>;
|
|
11
|
+
readonly startSession: typeof startRuntimeBridgeBrokerSession;
|
|
12
|
+
readonly listSessions: typeof listRuntimeBridgeBrokerSessions;
|
|
13
|
+
readonly getSession: typeof getRuntimeBridgeBrokerSession;
|
|
14
|
+
readonly listEntries: typeof listRuntimeBridgeBrokerEntries;
|
|
15
|
+
readonly invokeEntry: typeof invokeRuntimeBridgeBrokerEntry;
|
|
16
|
+
readonly invokeBroker: typeof invokeRuntimeBridgeBroker;
|
|
17
|
+
readonly stopSession: typeof stopRuntimeBridgeBrokerSession;
|
|
18
|
+
readonly stopAllSessions: typeof stopAllRuntimeBridgeBrokerSessions;
|
|
19
|
+
}
|
|
20
|
+
export declare function runBridgeSessionCommand(args: readonly string[], io: CliIo, deps?: BridgeSessionCommandDependencies): Promise<number>;
|
|
21
|
+
//# sourceMappingURL=bridge-session.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bridge-session.d.ts","sourceRoot":"","sources":["../src/bridge-session.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,iBAAiB,EAAsB,MAAM,gBAAgB,CAAC;AAMvE,OAAO,EACL,yBAAyB,EACzB,6BAA6B,EAC7B,0BAA0B,EAC1B,yBAAyB,EACzB,8BAA8B,EAC9B,8BAA8B,EAC9B,+BAA+B,EAC/B,wBAAwB,EACxB,+BAA+B,EAC/B,kCAAkC,EAClC,8BAA8B,EAI/B,MAAM,cAAc,CAAC;AAEtB,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAExC,MAAM,WAAW,gCAAgC;IAC/C,QAAQ,CAAC,0BAA0B,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,CAAC,CAAC;IAC7E,QAAQ,CAAC,iBAAiB,EAAE,OAAO,iBAAiB,CAAC;IACrD,QAAQ,CAAC,yBAAyB,EAAE,OAAO,yBAAyB,CAAC;IACrE,QAAQ,CAAC,0BAA0B,EAAE,OAAO,0BAA0B,CAAC;IACvE,QAAQ,CAAC,wBAAwB,EAAE,OAAO,wBAAwB,CAAC;IACnE,QAAQ,CAAC,eAAe,EAAE,CAAC,aAAa,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,CAAC,CAAC;IACrE,QAAQ,CAAC,YAAY,EAAE,OAAO,+BAA+B,CAAC;IAC9D,QAAQ,CAAC,YAAY,EAAE,OAAO,+BAA+B,CAAC;IAC9D,QAAQ,CAAC,UAAU,EAAE,OAAO,6BAA6B,CAAC;IAC1D,QAAQ,CAAC,WAAW,EAAE,OAAO,8BAA8B,CAAC;IAC5D,QAAQ,CAAC,WAAW,EAAE,OAAO,8BAA8B,CAAC;IAC5D,QAAQ,CAAC,YAAY,EAAE,OAAO,yBAAyB,CAAC;IACxD,QAAQ,CAAC,WAAW,EAAE,OAAO,8BAA8B,CAAC;IAC5D,QAAQ,CAAC,eAAe,EAAE,OAAO,kCAAkC,CAAC;CACrE;AAuBD,wBAAsB,uBAAuB,CAC3C,IAAI,EAAE,SAAS,MAAM,EAAE,EACvB,EAAE,EAAE,KAAK,EACT,IAAI,GAAE,gCAA+C,GACpD,OAAO,CAAC,MAAM,CAAC,CAqDjB"}
|