From bcf5a4995d164fb705aca7ac41a8537c8fb8dc11 Mon Sep 17 00:00:00 2001 From: Casey Brooks Date: Tue, 14 Apr 2026 19:07:02 +0000 Subject: [PATCH] feat(agents): add init script name --- proto/agynio/api/agents/v1/agents.proto | 3 +++ 1 file changed, 3 insertions(+) diff --git a/proto/agynio/api/agents/v1/agents.proto b/proto/agynio/api/agents/v1/agents.proto index ce61874..b86555f 100644 --- a/proto/agynio/api/agents/v1/agents.proto +++ b/proto/agynio/api/agents/v1/agents.proto @@ -624,6 +624,7 @@ message InitScript { string mcp_id = 5; string hook_id = 6; } + string name = 7; } message CreateInitScriptRequest { @@ -634,6 +635,7 @@ message CreateInitScriptRequest { string mcp_id = 4; string hook_id = 5; } + string name = 6; } message CreateInitScriptResponse { @@ -652,6 +654,7 @@ message UpdateInitScriptRequest { string id = 1; // UUID optional string script = 2; optional string description = 3; + optional string name = 4; } message UpdateInitScriptResponse {