Files
vscode/cli/src/commands.rs
T
Connor PeetandCopilot ab22c19a1f agentHost: unify local endpoint discovery
Publish editor and standalone agent hosts through a shared user-data registry with cross-process locking. Update CLI discovery and management commands to work across all registered hosts without the legacy lockfile.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-07-30 14:37:59 -07:00

22 lines
637 B
Rust

/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
mod context;
pub mod agent;
pub mod agent_discovery;
pub mod agent_host;
pub mod agent_kill;
pub mod agent_logs;
pub mod agent_ps;
pub mod agent_stop;
pub mod args;
pub mod output;
pub mod serve_web;
pub mod tunnels;
pub mod update;
pub mod version;
pub use context::CommandContext;