namespace OnDeviceAgent.AgentCore { public interface IToolPropertyAccessor { string Get(string toolName, string key); bool TryGet(string toolName, string key, out string value); } }