@1claw/sdk 0.44.1 → 0.44.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5227,6 +5227,28 @@ export interface paths {
5227
5227
  patch?: never;
5228
5228
  trace?: never;
5229
5229
  };
5230
+ "/v1/agents/org-directory": {
5231
+ parameters: {
5232
+ query?: never;
5233
+ header?: never;
5234
+ path?: never;
5235
+ cookie?: never;
5236
+ };
5237
+ /**
5238
+ * List org agents
5239
+ * @description List agents within the caller's organization for sub-agent discovery.
5240
+ * Returns agents with their capabilities, enabling agent-to-agent
5241
+ * coordination and discovery within an org. Requires authentication.
5242
+ */
5243
+ get: operations["listOrgDirectory"];
5244
+ put?: never;
5245
+ post?: never;
5246
+ delete?: never;
5247
+ options?: never;
5248
+ head?: never;
5249
+ patch?: never;
5250
+ trace?: never;
5251
+ };
5230
5252
  "/v1/agents/{agent_id}/discovery": {
5231
5253
  parameters: {
5232
5254
  query?: never;
@@ -5277,6 +5299,11 @@ export interface paths {
5277
5299
  * Send chat message
5278
5300
  * @description Send a message to an agent and receive a response via Shroud LLM.
5279
5301
  * Supports SSE streaming when Accept: text/event-stream is set.
5302
+ *
5303
+ * Agents can call this endpoint on other agents within the same
5304
+ * organization for inter-agent communication (agent-to-agent chat).
5305
+ * The caller must be authenticated and belong to the same org as
5306
+ * the target agent.
5280
5307
  */
5281
5308
  post: operations["sendChatMessage"];
5282
5309
  delete?: never;
@@ -9057,6 +9084,25 @@ export interface components {
9057
9084
  page: number;
9058
9085
  per_page: number;
9059
9086
  };
9087
+ OrgDirectoryAgent: {
9088
+ /** Format: uuid */
9089
+ id: string;
9090
+ name: string;
9091
+ public_description?: string | null;
9092
+ public_tags?: string[];
9093
+ a2a_url?: string | null;
9094
+ mcp_url?: string | null;
9095
+ intents_api_enabled: boolean;
9096
+ execution_intents_enabled: boolean;
9097
+ memory_enabled: boolean;
9098
+ shroud_enabled: boolean;
9099
+ };
9100
+ OrgDirectoryResponse: {
9101
+ agents: components["schemas"]["OrgDirectoryAgent"][];
9102
+ total: number;
9103
+ page: number;
9104
+ page_size: number;
9105
+ };
9060
9106
  UpdateDiscoveryRequest: {
9061
9107
  discoverable?: boolean;
9062
9108
  public_description?: string;
@@ -16375,6 +16421,34 @@ export interface operations {
16375
16421
  };
16376
16422
  };
16377
16423
  };
16424
+ listOrgDirectory: {
16425
+ parameters: {
16426
+ query?: {
16427
+ /** @description Search query to filter agents by name or description */
16428
+ q?: string;
16429
+ /** @description Comma-separated tag filter */
16430
+ tags?: string;
16431
+ page?: number;
16432
+ page_size?: number;
16433
+ };
16434
+ header?: never;
16435
+ path?: never;
16436
+ cookie?: never;
16437
+ };
16438
+ requestBody?: never;
16439
+ responses: {
16440
+ /** @description Org agent directory listing */
16441
+ 200: {
16442
+ headers: {
16443
+ [name: string]: unknown;
16444
+ };
16445
+ content: {
16446
+ "application/json": components["schemas"]["OrgDirectoryResponse"];
16447
+ };
16448
+ };
16449
+ 401: components["responses"]["Unauthorized"];
16450
+ };
16451
+ };
16378
16452
  updateDiscoverySettings: {
16379
16453
  parameters: {
16380
16454
  query?: never;