constructor(
options: { realpath?: (fsPath: string) => Promise<string> },
@IAgentConfigurationService private readonly _configService: IAgentConfigurationService,
@ILogService private readonly _logService: ILogService,
) {
super();
this._realpath = options?.realpath ?? realpath;
this._commandAutoApprover = this._register(new CommandAutoApprover(this._logService));
}
/**