wacht 0.1.0-beta.5

Official Rust SDK for the Wacht platform, providing type-safe API client and authentication middleware
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
use crate::{
    client::WachtClient,
    error::{Error, Result},
    models::{
        AgentDetailsResponse, AiAgent, AiAgentWithDetails, CreateAiAgentRequest, PaginatedResponse,
        SkillFileResponse, SkillScope, SkillTreeResponse, UpdateAiAgentRequest,
    },
};
use reqwest::multipart::{Form, Part};
use serde::Serialize;

#[derive(Debug, Clone, Default, Serialize)]
pub struct ListAgentsOptions {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub limit: Option<i32>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub offset: Option<i32>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub search: Option<String>,
}

#[derive(Debug, Clone)]
pub struct AgentsApi {
    client: WachtClient,
}

impl AgentsApi {
    pub(crate) fn new(client: WachtClient) -> Self {
        Self { client }
    }

    pub fn list_agents(&self) -> ListAgentsBuilder {
        ListAgentsBuilder::new(self.client.clone())
    }

    pub fn fetch_agent(&self, agent_id: impl Into<String>) -> FetchAgentBuilder {
        FetchAgentBuilder::new(self.client.clone(), agent_id)
    }

    pub fn fetch_agent_details(&self, agent_id: impl Into<String>) -> FetchAgentDetailsBuilder {
        FetchAgentDetailsBuilder::new(self.client.clone(), agent_id)
    }
    pub fn list_skill_tree(
        &self,
        agent_id: impl Into<String>,
        scope: SkillScope,
    ) -> ListAgentSkillTreeBuilder {
        ListAgentSkillTreeBuilder::new(self.client.clone(), agent_id, scope)
    }
    pub fn read_skill_file(
        &self,
        agent_id: impl Into<String>,
        scope: SkillScope,
        path: impl Into<String>,
    ) -> ReadAgentSkillFileBuilder {
        ReadAgentSkillFileBuilder::new(self.client.clone(), agent_id, scope, path)
    }
    pub fn import_skill_bundle(
        &self,
        agent_id: impl Into<String>,
        file_name: impl Into<String>,
        file_content: Vec<u8>,
    ) -> ImportAgentSkillBundleBuilder {
        ImportAgentSkillBundleBuilder::new(self.client.clone(), agent_id, file_name, file_content)
    }
    pub fn delete_skill(
        &self,
        agent_id: impl Into<String>,
        skill_slug: impl Into<String>,
    ) -> DeleteAgentSkillBuilder {
        DeleteAgentSkillBuilder::new(self.client.clone(), agent_id, skill_slug)
    }

    pub fn create_agent(&self, request: CreateAiAgentRequest) -> CreateAgentBuilder {
        CreateAgentBuilder::new(self.client.clone(), request)
    }

    pub fn update_agent(
        &self,
        agent_id: impl Into<String>,
        request: UpdateAiAgentRequest,
    ) -> UpdateAgentBuilder {
        UpdateAgentBuilder::new(self.client.clone(), agent_id, request)
    }

    pub fn delete_agent(&self, agent_id: impl Into<String>) -> DeleteAgentBuilder {
        DeleteAgentBuilder::new(self.client.clone(), agent_id)
    }

    pub fn list_sub_agents(&self, agent_id: impl Into<String>) -> ListAgentSubAgentsBuilder {
        ListAgentSubAgentsBuilder::new(self.client.clone(), agent_id)
    }

    pub fn attach_sub_agent(
        &self,
        agent_id: impl Into<String>,
        sub_agent_id: impl Into<String>,
    ) -> AttachSubAgentBuilder {
        AttachSubAgentBuilder::new(self.client.clone(), agent_id, sub_agent_id)
    }

    pub fn detach_sub_agent(
        &self,
        agent_id: impl Into<String>,
        sub_agent_id: impl Into<String>,
    ) -> DetachSubAgentBuilder {
        DetachSubAgentBuilder::new(self.client.clone(), agent_id, sub_agent_id)
    }
}

fn api_error(status: reqwest::StatusCode, prefix: &str, body: String) -> Error {
    Error::api_from_text(status, prefix, &body)
}

#[derive(Debug, Clone, Serialize)]
struct SkillTreeQuery {
    scope: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    path: Option<String>,
}

pub struct ListAgentsBuilder {
    client: WachtClient,
    options: ListAgentsOptions,
}

impl ListAgentsBuilder {
    pub fn new(client: WachtClient) -> Self {
        Self {
            client,
            options: ListAgentsOptions::default(),
        }
    }

    pub fn limit(mut self, limit: i32) -> Self {
        self.options.limit = Some(limit);
        self
    }
    pub fn offset(mut self, offset: i32) -> Self {
        self.options.offset = Some(offset);
        self
    }
    pub fn search(mut self, search: impl Into<String>) -> Self {
        self.options.search = Some(search.into());
        self
    }

    pub async fn send(self) -> Result<PaginatedResponse<AiAgentWithDetails>> {
        let response = self
            .client
            .http_client()
            .get(format!("{}/ai/agents", self.client.config().base_url))
            .query(&self.options)
            .send()
            .await?;
        let status = response.status();
        if status.is_success() {
            Ok(response.json().await?)
        } else {
            Err(api_error(
                status,
                "Failed to list agents",
                response.text().await?,
            ))
        }
    }
}

pub struct FetchAgentBuilder {
    client: WachtClient,
    agent_id: String,
}
impl FetchAgentBuilder {
    pub fn new(client: WachtClient, agent_id: impl Into<String>) -> Self {
        Self {
            client,
            agent_id: agent_id.into(),
        }
    }
    pub async fn send(self) -> Result<AiAgentWithDetails> {
        let response = self
            .client
            .http_client()
            .get(format!(
                "{}/ai/agents/{}",
                self.client.config().base_url,
                self.agent_id
            ))
            .send()
            .await?;
        let status = response.status();
        if status.is_success() {
            Ok(response.json().await?)
        } else {
            Err(api_error(
                status,
                "Failed to fetch agent",
                response.text().await?,
            ))
        }
    }
}

pub struct FetchAgentDetailsBuilder {
    client: WachtClient,
    agent_id: String,
}

pub struct ListAgentSkillTreeBuilder {
    client: WachtClient,
    agent_id: String,
    query: SkillTreeQuery,
}
impl ListAgentSkillTreeBuilder {
    pub fn new(client: WachtClient, agent_id: impl Into<String>, scope: SkillScope) -> Self {
        Self {
            client,
            agent_id: agent_id.into(),
            query: SkillTreeQuery {
                scope: scope.as_str().to_string(),
                path: None,
            },
        }
    }
    pub fn path(mut self, path: impl Into<String>) -> Self {
        self.query.path = Some(path.into());
        self
    }
    pub async fn send(self) -> Result<SkillTreeResponse> {
        let response = self
            .client
            .http_client()
            .get(format!(
                "{}/ai/agents/{}/skills/tree",
                self.client.config().base_url,
                self.agent_id
            ))
            .query(&self.query)
            .send()
            .await?;
        let status = response.status();
        if status.is_success() {
            Ok(response.json().await?)
        } else {
            Err(api_error(
                status,
                "Failed to list agent skill tree",
                response.text().await?,
            ))
        }
    }
}

pub struct ReadAgentSkillFileBuilder {
    client: WachtClient,
    agent_id: String,
    query: SkillTreeQuery,
}
impl ReadAgentSkillFileBuilder {
    pub fn new(
        client: WachtClient,
        agent_id: impl Into<String>,
        scope: SkillScope,
        path: impl Into<String>,
    ) -> Self {
        Self {
            client,
            agent_id: agent_id.into(),
            query: SkillTreeQuery {
                scope: scope.as_str().to_string(),
                path: Some(path.into()),
            },
        }
    }
    pub async fn send(self) -> Result<SkillFileResponse> {
        let response = self
            .client
            .http_client()
            .get(format!(
                "{}/ai/agents/{}/skills/file",
                self.client.config().base_url,
                self.agent_id
            ))
            .query(&self.query)
            .send()
            .await?;
        let status = response.status();
        if status.is_success() {
            Ok(response.json().await?)
        } else {
            Err(api_error(
                status,
                "Failed to read agent skill file",
                response.text().await?,
            ))
        }
    }
}

pub struct ImportAgentSkillBundleBuilder {
    client: WachtClient,
    agent_id: String,
    file_name: String,
    file_content: Vec<u8>,
    replace_existing: bool,
}
impl ImportAgentSkillBundleBuilder {
    pub fn new(
        client: WachtClient,
        agent_id: impl Into<String>,
        file_name: impl Into<String>,
        file_content: Vec<u8>,
    ) -> Self {
        Self {
            client,
            agent_id: agent_id.into(),
            file_name: file_name.into(),
            file_content,
            replace_existing: false,
        }
    }
    pub fn replace_existing(mut self, replace_existing: bool) -> Self {
        self.replace_existing = replace_existing;
        self
    }
    pub async fn send(self) -> Result<SkillTreeResponse> {
        let part = Part::bytes(self.file_content).file_name(self.file_name);
        let form = Form::new()
            .part("file", part)
            .text("replace_existing", self.replace_existing.to_string());
        let response = self
            .client
            .http_client()
            .post(format!(
                "{}/ai/agents/{}/skills",
                self.client.config().base_url,
                self.agent_id
            ))
            .multipart(form)
            .send()
            .await?;
        let status = response.status();
        if status.is_success() {
            Ok(response.json().await?)
        } else {
            Err(api_error(
                status,
                "Failed to import agent skill bundle",
                response.text().await?,
            ))
        }
    }
}

pub struct DeleteAgentSkillBuilder {
    client: WachtClient,
    agent_id: String,
    skill_slug: String,
}
impl DeleteAgentSkillBuilder {
    pub fn new(
        client: WachtClient,
        agent_id: impl Into<String>,
        skill_slug: impl Into<String>,
    ) -> Self {
        Self {
            client,
            agent_id: agent_id.into(),
            skill_slug: skill_slug.into(),
        }
    }
    pub async fn send(self) -> Result<()> {
        let response = self
            .client
            .http_client()
            .delete(format!(
                "{}/ai/agents/{}/skills/{}",
                self.client.config().base_url,
                self.agent_id,
                self.skill_slug
            ))
            .send()
            .await?;
        let status = response.status();
        if status.is_success() {
            Ok(())
        } else {
            Err(api_error(
                status,
                "Failed to delete agent skill",
                response.text().await?,
            ))
        }
    }
}
impl FetchAgentDetailsBuilder {
    pub fn new(client: WachtClient, agent_id: impl Into<String>) -> Self {
        Self {
            client,
            agent_id: agent_id.into(),
        }
    }
    pub async fn send(self) -> Result<AgentDetailsResponse> {
        let response = self
            .client
            .http_client()
            .get(format!(
                "{}/ai/agents/{}/details",
                self.client.config().base_url,
                self.agent_id
            ))
            .send()
            .await?;
        let status = response.status();
        if status.is_success() {
            Ok(response.json().await?)
        } else {
            Err(api_error(
                status,
                "Failed to fetch agent details",
                response.text().await?,
            ))
        }
    }
}

pub struct CreateAgentBuilder {
    client: WachtClient,
    request: CreateAiAgentRequest,
}
impl CreateAgentBuilder {
    pub fn new(client: WachtClient, request: CreateAiAgentRequest) -> Self {
        Self { client, request }
    }
    pub async fn send(self) -> Result<AiAgent> {
        let response = self
            .client
            .http_client()
            .post(format!("{}/ai/agents", self.client.config().base_url))
            .json(&self.request)
            .send()
            .await?;
        let status = response.status();
        if status.is_success() {
            Ok(response.json().await?)
        } else {
            Err(api_error(
                status,
                "Failed to create agent",
                response.text().await?,
            ))
        }
    }
}

pub struct UpdateAgentBuilder {
    client: WachtClient,
    agent_id: String,
    request: UpdateAiAgentRequest,
}
impl UpdateAgentBuilder {
    pub fn new(
        client: WachtClient,
        agent_id: impl Into<String>,
        request: UpdateAiAgentRequest,
    ) -> Self {
        Self {
            client,
            agent_id: agent_id.into(),
            request,
        }
    }
    pub async fn send(self) -> Result<AiAgent> {
        let response = self
            .client
            .http_client()
            .patch(format!(
                "{}/ai/agents/{}",
                self.client.config().base_url,
                self.agent_id
            ))
            .json(&self.request)
            .send()
            .await?;
        let status = response.status();
        if status.is_success() {
            Ok(response.json().await?)
        } else {
            Err(api_error(
                status,
                "Failed to update agent",
                response.text().await?,
            ))
        }
    }
}

pub struct DeleteAgentBuilder {
    client: WachtClient,
    agent_id: String,
}
impl DeleteAgentBuilder {
    pub fn new(client: WachtClient, agent_id: impl Into<String>) -> Self {
        Self {
            client,
            agent_id: agent_id.into(),
        }
    }
    pub async fn send(self) -> Result<()> {
        let response = self
            .client
            .http_client()
            .delete(format!(
                "{}/ai/agents/{}",
                self.client.config().base_url,
                self.agent_id
            ))
            .send()
            .await?;
        let status = response.status();
        if status.is_success() {
            Ok(())
        } else {
            Err(api_error(
                status,
                "Failed to delete agent",
                response.text().await?,
            ))
        }
    }
}

pub struct ListAgentSubAgentsBuilder {
    client: WachtClient,
    agent_id: String,
}
impl ListAgentSubAgentsBuilder {
    pub fn new(client: WachtClient, agent_id: impl Into<String>) -> Self {
        Self {
            client,
            agent_id: agent_id.into(),
        }
    }
    pub async fn send(self) -> Result<PaginatedResponse<AiAgentWithDetails>> {
        let response = self
            .client
            .http_client()
            .get(format!(
                "{}/ai/agents/{}/sub-agents",
                self.client.config().base_url,
                self.agent_id
            ))
            .send()
            .await?;
        let status = response.status();
        if status.is_success() {
            Ok(response.json().await?)
        } else {
            Err(api_error(
                status,
                "Failed to list sub-agents",
                response.text().await?,
            ))
        }
    }
}

pub struct AttachSubAgentBuilder {
    client: WachtClient,
    agent_id: String,
    sub_agent_id: String,
}
impl AttachSubAgentBuilder {
    pub fn new(
        client: WachtClient,
        agent_id: impl Into<String>,
        sub_agent_id: impl Into<String>,
    ) -> Self {
        Self {
            client,
            agent_id: agent_id.into(),
            sub_agent_id: sub_agent_id.into(),
        }
    }
    pub async fn send(self) -> Result<()> {
        let response = self
            .client
            .http_client()
            .post(format!(
                "{}/ai/agents/{}/sub-agents/{}",
                self.client.config().base_url,
                self.agent_id,
                self.sub_agent_id
            ))
            .json(&serde_json::json!({}))
            .send()
            .await?;
        let status = response.status();
        if status.is_success() {
            Ok(())
        } else {
            Err(api_error(
                status,
                "Failed to attach sub-agent",
                response.text().await?,
            ))
        }
    }
}

pub struct DetachSubAgentBuilder {
    client: WachtClient,
    agent_id: String,
    sub_agent_id: String,
}
impl DetachSubAgentBuilder {
    pub fn new(
        client: WachtClient,
        agent_id: impl Into<String>,
        sub_agent_id: impl Into<String>,
    ) -> Self {
        Self {
            client,
            agent_id: agent_id.into(),
            sub_agent_id: sub_agent_id.into(),
        }
    }
    pub async fn send(self) -> Result<()> {
        let response = self
            .client
            .http_client()
            .delete(format!(
                "{}/ai/agents/{}/sub-agents/{}",
                self.client.config().base_url,
                self.agent_id,
                self.sub_agent_id
            ))
            .send()
            .await?;
        let status = response.status();
        if status.is_success() {
            Ok(())
        } else {
            Err(api_error(
                status,
                "Failed to detach sub-agent",
                response.text().await?,
            ))
        }
    }
}