@open-agent-toolkit/cli 0.1.45 → 0.1.48
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/assets/agents/oat-phase-implementer.md +202 -191
- package/assets/agents/oat-reviewer.md +12 -2
- package/assets/config/dispatch-matrix-recommendation.json +120 -13
- package/assets/docs/cli-utilities/config-and-local-state.md +7 -0
- package/assets/docs/cli-utilities/configuration.md +183 -84
- package/assets/docs/cli-utilities/workflow-gates.md +161 -27
- package/assets/docs/contributing/skills.md +14 -8
- package/assets/docs/provider-sync/config.md +5 -1
- package/assets/docs/provider-sync/manifest-and-drift.md +6 -1
- package/assets/docs/provider-sync/providers.md +42 -5
- package/assets/docs/provider-sync/scope-and-surface.md +3 -2
- package/assets/docs/reference/cli-reference.md +3 -1
- package/assets/docs/reference/oat-directory-structure.md +27 -26
- package/assets/docs/workflows/projects/artifacts.md +31 -1
- package/assets/docs/workflows/projects/dispatch-ceiling.md +235 -174
- package/assets/docs/workflows/projects/implementation-execution.md +283 -253
- package/assets/docs/workflows/projects/lifecycle.md +26 -5
- package/assets/docs/workflows/projects/reviews.md +27 -2
- package/assets/migration/pjm-restructure.md +1 -1
- package/assets/public-package-versions.json +4 -4
- package/assets/skills/oat-project-implement/SKILL.md +347 -178
- package/assets/skills/oat-project-import-plan/SKILL.md +173 -16
- package/assets/skills/oat-project-next/SKILL.md +2 -2
- package/assets/skills/oat-project-plan/SKILL.md +122 -92
- package/assets/skills/oat-project-plan-writing/SKILL.md +246 -15
- package/assets/skills/oat-project-quick-start/SKILL.md +156 -94
- package/assets/skills/oat-project-review-provide/SKILL.md +94 -22
- package/dist/commands/config/index.d.ts +2 -2
- package/dist/commands/config/index.d.ts.map +1 -1
- package/dist/commands/config/index.js +129 -53
- package/dist/commands/doctor/index.d.ts +2 -2
- package/dist/commands/doctor/index.d.ts.map +1 -1
- package/dist/commands/doctor/index.js +102 -31
- package/dist/commands/gate/index.d.ts +7 -1
- package/dist/commands/gate/index.d.ts.map +1 -1
- package/dist/commands/gate/index.js +544 -67
- package/dist/commands/gate/review-verdict.d.ts +16 -0
- package/dist/commands/gate/review-verdict.d.ts.map +1 -1
- package/dist/commands/gate/review-verdict.js +72 -9
- package/dist/commands/project/dispatch-ceiling/index.d.ts.map +1 -1
- package/dist/commands/project/dispatch-ceiling/index.js +586 -23
- package/dist/commands/providers/codex/index.d.ts +4 -0
- package/dist/commands/providers/codex/index.d.ts.map +1 -0
- package/dist/commands/providers/codex/index.js +7 -0
- package/dist/commands/providers/codex/materialize.d.ts +5 -0
- package/dist/commands/providers/codex/materialize.d.ts.map +1 -0
- package/dist/commands/providers/codex/materialize.js +157 -0
- package/dist/commands/providers/index.d.ts +2 -2
- package/dist/commands/providers/index.d.ts.map +1 -1
- package/dist/commands/providers/index.js +4 -2
- package/dist/commands/providers/providers.types.d.ts +23 -0
- package/dist/commands/providers/providers.types.d.ts.map +1 -1
- package/dist/commands/shared/codex-strays.d.ts.map +1 -1
- package/dist/commands/shared/codex-strays.js +11 -1
- package/dist/commands/shared/frontmatter.d.ts +4 -0
- package/dist/commands/shared/frontmatter.d.ts.map +1 -1
- package/dist/commands/shared/frontmatter.js +23 -0
- package/dist/commands/status/index.d.ts +5 -1
- package/dist/commands/status/index.d.ts.map +1 -1
- package/dist/commands/status/index.js +10 -4
- package/dist/commands/sync/index.d.ts.map +1 -1
- package/dist/commands/sync/index.js +10 -3
- package/dist/commands/sync/sync.types.d.ts +5 -1
- package/dist/commands/sync/sync.types.d.ts.map +1 -1
- package/dist/config/dispatch-ceiling-preset.d.ts +4 -0
- package/dist/config/dispatch-ceiling-preset.d.ts.map +1 -1
- package/dist/config/dispatch-ceiling-preset.js +3 -0
- package/dist/config/dispatch-policy-options.d.ts +20 -0
- package/dist/config/dispatch-policy-options.d.ts.map +1 -0
- package/dist/config/dispatch-policy-options.js +96 -0
- package/dist/config/oat-config.d.ts +25 -2
- package/dist/config/oat-config.d.ts.map +1 -1
- package/dist/config/oat-config.js +154 -24
- package/dist/config/resolve.d.ts +8 -0
- package/dist/config/resolve.d.ts.map +1 -1
- package/dist/config/resolve.js +66 -2
- package/dist/engine/index.d.ts +1 -1
- package/dist/engine/index.d.ts.map +1 -1
- package/dist/engine/index.js +1 -1
- package/dist/engine/scanner.d.ts +1 -0
- package/dist/engine/scanner.d.ts.map +1 -1
- package/dist/engine/scanner.js +17 -1
- package/dist/fs/paths.d.ts +4 -0
- package/dist/fs/paths.d.ts.map +1 -1
- package/dist/fs/paths.js +18 -1
- package/dist/providers/ceiling/registry.d.ts +8 -5
- package/dist/providers/ceiling/registry.d.ts.map +1 -1
- package/dist/providers/ceiling/registry.js +25 -7
- package/dist/providers/codex/codec/catalog.d.ts +14 -0
- package/dist/providers/codex/codec/catalog.d.ts.map +1 -0
- package/dist/providers/codex/codec/catalog.js +21 -0
- package/dist/providers/codex/codec/config-merge.d.ts +6 -0
- package/dist/providers/codex/codec/config-merge.d.ts.map +1 -1
- package/dist/providers/codex/codec/config-merge.js +7 -0
- package/dist/providers/codex/codec/materialize.d.ts +16 -0
- package/dist/providers/codex/codec/materialize.d.ts.map +1 -0
- package/dist/providers/codex/codec/materialize.js +58 -0
- package/dist/providers/codex/codec/shared.d.ts +20 -0
- package/dist/providers/codex/codec/shared.d.ts.map +1 -1
- package/dist/providers/codex/codec/shared.js +107 -6
- package/dist/providers/codex/codec/sync-extension.d.ts +7 -1
- package/dist/providers/codex/codec/sync-extension.d.ts.map +1 -1
- package/dist/providers/codex/codec/sync-extension.js +299 -52
- package/dist/providers/identity/availability.d.ts +24 -1
- package/dist/providers/identity/availability.d.ts.map +1 -1
- package/dist/providers/identity/availability.js +253 -19
- package/dist/providers/identity/stamp.d.ts.map +1 -1
- package/dist/providers/identity/stamp.js +4 -0
- package/dist/shared/types.d.ts +1 -0
- package/dist/shared/types.d.ts.map +1 -1
- package/dist/shared/types.js +4 -0
- package/package.json +2 -2
|
@@ -7,17 +7,18 @@ import { createPjmDisabledCheck, runPjmDoctorChecks, } from '../pjm/doctor.js';
|
|
|
7
7
|
import { getSkillVersion } from '../shared/frontmatter.js';
|
|
8
8
|
import { withScopeOption } from '../shared/scope-option.js';
|
|
9
9
|
import { readGlobalOptions, resolveConcreteScopes, } from '../shared/shared.utils.js';
|
|
10
|
-
import { readOatConfig, readOatLocalConfig, readUserConfig, } from '../../config/oat-config.js';
|
|
10
|
+
import { readOatConfig, readOatLocalConfig, readUserConfig, isCodexMaterializedRouteTarget, isWorkflowDispatchCandidateLadder, isWorkflowDispatchFallbackRoute, } from '../../config/oat-config.js';
|
|
11
11
|
import { resolveAssetsRoot } from '../../fs/assets.js';
|
|
12
12
|
import { resolveProjectRoot, resolveScopeRoot } from '../../fs/paths.js';
|
|
13
13
|
import TOML from '@iarna/toml';
|
|
14
14
|
import { loadManifest } from '../../manifest/index.js';
|
|
15
15
|
import { claudeAdapter } from '../../providers/claude/index.js';
|
|
16
16
|
import { codexAdapter } from '../../providers/codex/index.js';
|
|
17
|
+
import { isOatManagedCodexRoleFile } from '../../providers/codex/codec/shared.js';
|
|
17
18
|
import { copilotAdapter } from '../../providers/copilot/index.js';
|
|
18
19
|
import { cursorAdapter } from '../../providers/cursor/index.js';
|
|
19
20
|
import { geminiAdapter } from '../../providers/gemini/index.js';
|
|
20
|
-
import { validateMatrixCell, } from '../../providers/identity/availability.js';
|
|
21
|
+
import { normalizeMatrixCellAvailability, validateMatrixCell, } from '../../providers/identity/availability.js';
|
|
21
22
|
import { formatDoctorResults } from '../../ui/output.js';
|
|
22
23
|
import { Command } from 'commander';
|
|
23
24
|
async function pathExistsDefault(path) {
|
|
@@ -143,24 +144,39 @@ function createDependencies() {
|
|
|
143
144
|
function isRouteTarget(entry) {
|
|
144
145
|
return typeof entry === 'object' && entry !== null && !Array.isArray(entry);
|
|
145
146
|
}
|
|
147
|
+
function formatRouteTargetValue(entry) {
|
|
148
|
+
return [entry.model, entry.effort].filter(Boolean).join('/');
|
|
149
|
+
}
|
|
146
150
|
function addDispatchMatrixCellRefs(refs, layer, provider, path, cell) {
|
|
147
151
|
if (typeof cell === 'string') {
|
|
148
152
|
refs.push({ layer, provider, value: cell, path });
|
|
149
153
|
return;
|
|
150
154
|
}
|
|
151
|
-
|
|
152
|
-
const entryPath = `${path}[${index}]`;
|
|
155
|
+
const addEntry = (entry, entryPath) => {
|
|
153
156
|
if (typeof entry === 'string') {
|
|
154
157
|
refs.push({ layer, provider, value: entry, path: entryPath });
|
|
155
|
-
|
|
158
|
+
return;
|
|
156
159
|
}
|
|
157
160
|
if (!isRouteTarget(entry)) {
|
|
158
|
-
|
|
161
|
+
return;
|
|
162
|
+
}
|
|
163
|
+
const targetProvider = entry.harness ?? provider;
|
|
164
|
+
if (isCodexMaterializedRouteTarget(provider, entry)) {
|
|
165
|
+
if (entry.model && entry.effort) {
|
|
166
|
+
refs.push({
|
|
167
|
+
layer,
|
|
168
|
+
provider: targetProvider,
|
|
169
|
+
value: formatRouteTargetValue(entry),
|
|
170
|
+
path: entryPath,
|
|
171
|
+
target: entry,
|
|
172
|
+
});
|
|
173
|
+
return;
|
|
174
|
+
}
|
|
159
175
|
}
|
|
160
176
|
if (entry.model) {
|
|
161
177
|
refs.push({
|
|
162
178
|
layer,
|
|
163
|
-
provider,
|
|
179
|
+
provider: targetProvider,
|
|
164
180
|
value: entry.model,
|
|
165
181
|
path: `${entryPath}.model`,
|
|
166
182
|
});
|
|
@@ -168,11 +184,27 @@ function addDispatchMatrixCellRefs(refs, layer, provider, path, cell) {
|
|
|
168
184
|
if (entry.effort) {
|
|
169
185
|
refs.push({
|
|
170
186
|
layer,
|
|
171
|
-
provider,
|
|
187
|
+
provider: targetProvider,
|
|
172
188
|
value: entry.effort,
|
|
173
189
|
path: `${entryPath}.effort`,
|
|
174
190
|
});
|
|
175
191
|
}
|
|
192
|
+
};
|
|
193
|
+
if (isWorkflowDispatchCandidateLadder(cell)) {
|
|
194
|
+
for (const [candidateIndex, candidate] of cell.candidates.entries()) {
|
|
195
|
+
const candidatePath = `${path}.candidates[${candidateIndex}]`;
|
|
196
|
+
if (isWorkflowDispatchFallbackRoute(candidate)) {
|
|
197
|
+
for (const [routeIndex, entry] of candidate.route.entries()) {
|
|
198
|
+
addEntry(entry, `${candidatePath}.route[${routeIndex}]`);
|
|
199
|
+
}
|
|
200
|
+
continue;
|
|
201
|
+
}
|
|
202
|
+
addEntry(candidate, candidatePath);
|
|
203
|
+
}
|
|
204
|
+
return;
|
|
205
|
+
}
|
|
206
|
+
for (const [index, entry] of cell.entries()) {
|
|
207
|
+
addEntry(entry, `${path}[${index}]`);
|
|
176
208
|
}
|
|
177
209
|
}
|
|
178
210
|
function collectDispatchMatrixCellRefs(layers) {
|
|
@@ -203,7 +235,12 @@ function collectDispatchMatrixCellRefs(layers) {
|
|
|
203
235
|
}
|
|
204
236
|
function formatDispatchMatrixIssueList(issues) {
|
|
205
237
|
return issues
|
|
206
|
-
.map((issue) =>
|
|
238
|
+
.map((issue) => {
|
|
239
|
+
const suffix = 'message' in issue && typeof issue.message === 'string'
|
|
240
|
+
? `; ${issue.message}`
|
|
241
|
+
: '';
|
|
242
|
+
return `${issue.path}=${issue.value} (${issue.layer} config)${suffix}`;
|
|
243
|
+
})
|
|
207
244
|
.join(', ');
|
|
208
245
|
}
|
|
209
246
|
async function createDispatchMatrixDoctorCheck(scopeRoot, layers, dependencies) {
|
|
@@ -218,18 +255,24 @@ async function createDispatchMatrixDoctorCheck(scopeRoot, layers, dependencies)
|
|
|
218
255
|
}
|
|
219
256
|
const issues = [];
|
|
220
257
|
for (const ref of refs) {
|
|
221
|
-
let
|
|
258
|
+
let result;
|
|
222
259
|
try {
|
|
223
|
-
|
|
260
|
+
result = normalizeMatrixCellAvailability(await dependencies.validateMatrixCell(ref.provider, ref.value, {
|
|
224
261
|
cwd: scopeRoot,
|
|
225
262
|
env: dependencies.processEnv,
|
|
226
|
-
|
|
263
|
+
detailed: true,
|
|
264
|
+
...(ref.target ? { target: ref.target } : {}),
|
|
265
|
+
}));
|
|
227
266
|
}
|
|
228
267
|
catch {
|
|
229
|
-
|
|
268
|
+
result = { availability: 'unvalidated' };
|
|
230
269
|
}
|
|
231
|
-
if (availability !== 'valid') {
|
|
232
|
-
issues.push({
|
|
270
|
+
if (result.availability !== 'valid') {
|
|
271
|
+
issues.push({
|
|
272
|
+
...ref,
|
|
273
|
+
availability: result.availability,
|
|
274
|
+
...(result.message ? { message: result.message } : {}),
|
|
275
|
+
});
|
|
233
276
|
}
|
|
234
277
|
}
|
|
235
278
|
if (issues.length === 0) {
|
|
@@ -250,16 +293,45 @@ async function createDispatchMatrixDoctorCheck(scopeRoot, layers, dependencies)
|
|
|
250
293
|
messageParts.push(`Unvalidated dispatch matrix cells: ${formatDispatchMatrixIssueList(unvalidated)}`);
|
|
251
294
|
}
|
|
252
295
|
const hasUnknown = unknown.length > 0;
|
|
296
|
+
const hasUnvalidated = unvalidated.length > 0;
|
|
253
297
|
return {
|
|
254
298
|
name: 'project:dispatch_matrix',
|
|
255
299
|
description: 'Dispatch matrix cell availability',
|
|
256
|
-
status: hasUnknown ? 'warn' : 'pass',
|
|
300
|
+
status: hasUnknown || hasUnvalidated ? 'warn' : 'pass',
|
|
257
301
|
message: messageParts.join('. '),
|
|
258
302
|
fix: hasUnknown
|
|
259
303
|
? 'Run `oat config set workflow.dispatchCeiling.providers.<provider> <value>` with an available value, or refresh provider assets with `oat sync --scope project`.'
|
|
260
304
|
: undefined,
|
|
261
305
|
};
|
|
262
306
|
}
|
|
307
|
+
function getCodexAgentConfigFile(config) {
|
|
308
|
+
if (!config || typeof config !== 'object' || Array.isArray(config)) {
|
|
309
|
+
return null;
|
|
310
|
+
}
|
|
311
|
+
const configFile = config.config_file;
|
|
312
|
+
return typeof configFile === 'string' && configFile.startsWith('agents/')
|
|
313
|
+
? configFile
|
|
314
|
+
: null;
|
|
315
|
+
}
|
|
316
|
+
function isLikelyOatGeneratedCodexRoleName(roleName) {
|
|
317
|
+
return (roleName === 'oat-phase-implementer' ||
|
|
318
|
+
roleName === 'oat-reviewer' ||
|
|
319
|
+
roleName.startsWith('oat-phase-implementer-') ||
|
|
320
|
+
roleName.startsWith('oat-reviewer-'));
|
|
321
|
+
}
|
|
322
|
+
async function isManagedCodexRoleConfig(scopeRoot, roleName, configFile, dependencies) {
|
|
323
|
+
const absoluteRolePath = join(scopeRoot, '.codex', configFile);
|
|
324
|
+
if (!(await dependencies.pathExists(absoluteRolePath))) {
|
|
325
|
+
return isLikelyOatGeneratedCodexRoleName(roleName);
|
|
326
|
+
}
|
|
327
|
+
try {
|
|
328
|
+
const roleContent = await dependencies.readFile(absoluteRolePath);
|
|
329
|
+
return isOatManagedCodexRoleFile(roleContent, roleName);
|
|
330
|
+
}
|
|
331
|
+
catch {
|
|
332
|
+
return false;
|
|
333
|
+
}
|
|
334
|
+
}
|
|
263
335
|
async function runChecksForScope(scope, scopeRoot, userConfigDir, dependencies) {
|
|
264
336
|
const checks = [];
|
|
265
337
|
const skillsPath = join(scopeRoot, '.agents', 'skills');
|
|
@@ -419,17 +491,18 @@ async function runChecksForScope(scope, scopeRoot, userConfigDir, dependencies)
|
|
|
419
491
|
!Array.isArray(parsedConfig.agents)
|
|
420
492
|
? parsedConfig.agents
|
|
421
493
|
: null;
|
|
422
|
-
const managedRoles =
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
494
|
+
const managedRoles = [];
|
|
495
|
+
const roleConfigFiles = new Map();
|
|
496
|
+
for (const [roleName, roleConfig] of Object.entries(agents ?? {})) {
|
|
497
|
+
const configFile = getCodexAgentConfigFile(roleConfig);
|
|
498
|
+
if (!configFile) {
|
|
499
|
+
continue;
|
|
500
|
+
}
|
|
501
|
+
roleConfigFiles.set(roleName, configFile);
|
|
502
|
+
if (await isManagedCodexRoleConfig(scopeRoot, roleName, configFile, dependencies)) {
|
|
503
|
+
managedRoles.push(roleName);
|
|
428
504
|
}
|
|
429
|
-
|
|
430
|
-
return (typeof configFile === 'string' && configFile.startsWith('agents/'));
|
|
431
|
-
})
|
|
432
|
-
.map(([roleName]) => roleName);
|
|
505
|
+
}
|
|
433
506
|
if (managedRoles.length > 0) {
|
|
434
507
|
const multiAgentEnabled = features?.multi_agent === true || features?.multi_agent === 'true';
|
|
435
508
|
checks.push({
|
|
@@ -445,11 +518,9 @@ async function runChecksForScope(scope, scopeRoot, userConfigDir, dependencies)
|
|
|
445
518
|
});
|
|
446
519
|
const missingRoleFiles = [];
|
|
447
520
|
for (const roleName of managedRoles) {
|
|
448
|
-
const
|
|
449
|
-
|
|
450
|
-
if (typeof configFile !== 'string') {
|
|
521
|
+
const configFile = roleConfigFiles.get(roleName);
|
|
522
|
+
if (!configFile)
|
|
451
523
|
continue;
|
|
452
|
-
}
|
|
453
524
|
const absoluteRolePath = join(scopeRoot, '.codex', configFile);
|
|
454
525
|
if (!(await dependencies.pathExists(absoluteRolePath))) {
|
|
455
526
|
missingRoleFiles.push(configFile);
|
|
@@ -464,7 +535,7 @@ async function runChecksForScope(scope, scopeRoot, userConfigDir, dependencies)
|
|
|
464
535
|
: `Missing codex role files: ${missingRoleFiles.join(', ')}`,
|
|
465
536
|
fix: missingRoleFiles.length === 0
|
|
466
537
|
? undefined
|
|
467
|
-
: 'Regenerate codex roles with `oat sync --scope project
|
|
538
|
+
: 'Regenerate codex roles with `oat sync --scope project`, or materialize a single role with `oat providers codex materialize ...`.',
|
|
468
539
|
});
|
|
469
540
|
}
|
|
470
541
|
}
|
|
@@ -4,6 +4,7 @@ import { type ResolvedConfig } from '../../config/resolve.js';
|
|
|
4
4
|
import { type ModelFamily } from '../../providers/identity/family.js';
|
|
5
5
|
import { type IdentityConfidence, type IdentityProvenance } from '../../providers/identity/provenance.js';
|
|
6
6
|
import { Command } from 'commander';
|
|
7
|
+
import { parseReviewGateVerdict } from './review-verdict.js';
|
|
7
8
|
interface GateCommandDependencies {
|
|
8
9
|
buildCommandContext: (options: GlobalOptions) => CommandContext;
|
|
9
10
|
resolveProjectRoot: (cwd: string) => Promise<string>;
|
|
@@ -15,6 +16,7 @@ interface GateCommandDependencies {
|
|
|
15
16
|
writeUserConfig: (userConfigDir: string, config: UserConfig) => Promise<void>;
|
|
16
17
|
resolveEffectiveConfig: (repoRoot: string, userConfigDir: string, env: NodeJS.ProcessEnv) => Promise<ResolvedConfig>;
|
|
17
18
|
runProcess: (command: string, args: string[], options: ProcessRunOptions) => Promise<ProcessRunResult>;
|
|
19
|
+
parseReviewGateVerdict: typeof parseReviewGateVerdict;
|
|
18
20
|
processEnv: NodeJS.ProcessEnv;
|
|
19
21
|
}
|
|
20
22
|
interface ProcessRunOptions {
|
|
@@ -44,8 +46,10 @@ interface GateProducerIdentity {
|
|
|
44
46
|
confidence: IdentityConfidence;
|
|
45
47
|
family: ModelFamily;
|
|
46
48
|
avoidFamilies: ModelFamily[];
|
|
49
|
+
contributingScopes?: string[];
|
|
50
|
+
contributingStampCount?: number;
|
|
47
51
|
diversityClaimable: boolean;
|
|
48
|
-
source: 'flag' | 'stamp' | 'unknown';
|
|
52
|
+
source: 'flag' | 'stamp' | 'aggregated-stamps' | 'unknown';
|
|
49
53
|
}
|
|
50
54
|
interface GateDiversityMetadata {
|
|
51
55
|
avoid: CrossProviderAvoid;
|
|
@@ -57,6 +61,8 @@ interface GateDiversityMetadata {
|
|
|
57
61
|
family: ModelFamily;
|
|
58
62
|
source: GateProducerIdentity['source'];
|
|
59
63
|
avoidFamilies: ModelFamily[];
|
|
64
|
+
contributingScopes?: string[];
|
|
65
|
+
contributingStampCount?: number;
|
|
60
66
|
};
|
|
61
67
|
reviewer: {
|
|
62
68
|
target: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/commands/gate/index.ts"],"names":[],"mappings":"AAKA,OAAO,EAEL,KAAK,cAAc,EACnB,KAAK,aAAa,EACnB,MAAM,sBAAsB,CAAC;AAQ9B,OAAO,EAQL,KAAK,UAAU,EAIf,KAAK,SAAS,EACd,KAAK,cAAc,EACnB,KAAK,UAAU,EAEhB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/commands/gate/index.ts"],"names":[],"mappings":"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"}
|