feat(cli): add support for Antigravity (teleportation) sessions

This commit is contained in:
Sehoon Shon
2026-02-16 15:22:30 -05:00
parent 2009fbbd92
commit 71487c6fbe
8 changed files with 476 additions and 77 deletions

View File

@@ -221,6 +221,8 @@ export * from './telemetry/constants.js';
export { sessionId, createSessionId } from './utils/session.js';
export * from './utils/compatibility.js';
export * from './utils/browser.js';
export * from './teleportation/index.js';
export { Storage } from './config/storage.js';
// Export hooks system

View File

@@ -0,0 +1,20 @@
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
export interface AgyTrajectory {
trajectoryId: string;
cascadeId: string;
trajectoryType: number;
steps: unknown[];
}
export * from './teleporter.js';
export { convertAgyToCliRecord } from './converter.js';
export {
loadAgySession,
listAgySessions,
type AgySessionInfo,
} from './discovery.js';