From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=systemreboot.net; s=default; t=1784590713; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=vHdnUYvqz+SzOpazz6Hbr8waEq/v51O7c+TGT0zTHJc=; b=O0bhmVH/djanLvbfdkPSINLyvLKDG4RGZ2G0DYVMCsdsAEKvD+GpezBMnDPInoRd4gfzly yIsu6JF/kT0ZeCrXupFsIn+kEBIX92HjNV5Ta2caHUjSAAsDdOGLBYFptR/nPd/9PUWVW2 tZCjegXxVW72X7Hsg+xGvdsqlrb6Oiz7bVoPEo+mhqraIE93sT0NdkTyFM33zvA2Hh/7mM fIUufsQQ8wxz9SoA1XdQUZLdIsfJlH6+Apw2ZVLlJhMEr/E2oyVtIxE/EFWwKpSvK/CFLQ wdsVdjYWKr2idaDr4nlo8HhH096mcQIAcZBjSSxtbb1d8ejRJfoLAPiIeXGyDA== Received: from localhost ( [192.168.2.1]) by mugam.systemreboot.net (OpenSMTPD) with ESMTPSA id 94142a9b (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Mon, 20 Jul 2026 23:38:33 +0000 (UTC) From: Arun Isaac To: jgart , kaagum@systemreboot.net Subject: Re: [PATCH] Add session/list ACP method handler. In-Reply-To: <20260720143242.1203535-2-jgart@dismail.de> References: <20260720143242.1203535-1-jgart@dismail.de> <20260720143242.1203535-2-jgart@dismail.de> Date: Tue, 21 Jul 2026 00:38:31 +0100 Message-ID: <874ihti64o.fsf@systemreboot.net> MIME-Version: 1.0 Content-Type: text/plain List-Id: Hi jgart, Thanks for the patch! > + ("sessions" > + . ,(list->vector > + (map car (focus > state-sessions state)))))))))) Could you do this using match? In the interest of readability, we avoid car, cdr and company. And, looking at the ACP protocol spec https://agentclientprotocol.com/protocol/v1/session-list#checking-support , we also need to advertise session listing under agentCapabilities. Could you add that too? Thanks! Arun