mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-02 17:31:05 -07:00
feat(cli): add support for Antigravity (teleportation) sessions
This commit is contained in:
@@ -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
|
||||
|
||||
20
packages/core/src/teleportation/index.ts
Normal file
20
packages/core/src/teleportation/index.ts
Normal 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';
|
||||
Reference in New Issue
Block a user