zeptoclaw 0.7.3

Ultra-lightweight personal AI assistant
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
//! Generic NVS (Non-Volatile Storage) tools for ESP32.
//!
//! NVS is ESP-IDF's flash-based key-value store, used by any board with
//! `has_nvs: true` in its [`BoardProfile`].  These tools do **not** require
//! a `BoardProfile` reference — NVS operations do not need pin validation.
//!
//! # Protocol
//!
//! Commands are sent via [`SerialTransport::request`] as newline-delimited JSON:
//!
//! - `nvs_get`    — read a value by namespace + key
//! - `nvs_set`    — write a value by namespace + key
//! - `nvs_delete` — delete a key from a namespace
//!
//! # ESP-IDF constraints
//!
//! - Namespace and key names are limited to 15 bytes (NVS_KEY_NAME_MAX_SIZE).
//! - Names may contain only alphanumeric characters, `_`, and `-`.
//!
//! This module is only compiled when the `hardware` feature is enabled.

use super::serial::SerialTransport;
use crate::error::{Result, ZeptoError};
use crate::tools::{Tool, ToolCategory, ToolContext, ToolOutput};
use async_trait::async_trait;
use serde_json::{json, Value};
use std::sync::Arc;

// ---------------------------------------------------------------------------
// Constants (ESP-IDF limits)
// ---------------------------------------------------------------------------

/// Maximum length of an NVS key or namespace name (ESP-IDF NVS_KEY_NAME_MAX_SIZE).
pub const MAX_KEY_LEN: usize = 15;

/// Maximum length of an NVS namespace name (same limit as key).
pub const MAX_NAMESPACE_LEN: usize = 15;

/// Maximum length of an NVS string value (ESP-IDF NVS blob limit for strings).
pub const MAX_VALUE_LEN: usize = 4000;

/// Default NVS namespace used when the caller omits the parameter.
const DEFAULT_NAMESPACE: &str = "config";

// ---------------------------------------------------------------------------
// Shared validation
// ---------------------------------------------------------------------------

/// Validate an NVS namespace or key string.
///
/// Rules (mirror ESP-IDF constraints):
/// - Must not be empty.
/// - Must not exceed `max_len` bytes.
/// - May only contain ASCII alphanumeric characters, `_`, or `-`.
fn validate_nvs_string(value: &str, field: &str, max_len: usize) -> Result<()> {
    if value.is_empty() {
        return Err(ZeptoError::Tool(format!("NVS {field} must not be empty")));
    }
    if value.len() > max_len {
        return Err(ZeptoError::Tool(format!(
            "NVS {field} '{}' exceeds maximum length of {} bytes (got {})",
            value,
            max_len,
            value.len()
        )));
    }
    if !value
        .chars()
        .all(|c| c.is_ascii_alphanumeric() || c == '_' || c == '-')
    {
        return Err(ZeptoError::Tool(format!(
            "NVS {field} '{}' contains invalid characters; only alphanumeric, '_', and '-' are allowed",
            value
        )));
    }
    Ok(())
}

// ---------------------------------------------------------------------------
// NvsGetTool
// ---------------------------------------------------------------------------

/// Tool: read a value from NVS by namespace and key.
pub struct NvsGetTool {
    pub(crate) transport: Arc<SerialTransport>,
}

#[async_trait]
impl Tool for NvsGetTool {
    fn name(&self) -> &str {
        "nvs_get"
    }

    fn description(&self) -> &str {
        "Read a value from ESP32 NVS (non-volatile flash storage) by namespace and key. \
         Returns the stored string value, or an error if the key does not exist."
    }

    fn compact_description(&self) -> &str {
        "Read NVS key value"
    }

    fn category(&self) -> ToolCategory {
        ToolCategory::Hardware
    }

    fn parameters(&self) -> Value {
        json!({
            "type": "object",
            "properties": {
                "namespace": {
                    "type": "string",
                    "description": "NVS namespace (default: \"config\", max 15 chars, alphanumeric/_/-)"
                },
                "key": {
                    "type": "string",
                    "description": "NVS key name (required, max 15 chars, alphanumeric/_/-)"
                }
            },
            "required": ["key"]
        })
    }

    async fn execute(&self, args: Value, _ctx: &ToolContext) -> Result<ToolOutput> {
        let namespace = args
            .get("namespace")
            .and_then(|v| v.as_str())
            .unwrap_or(DEFAULT_NAMESPACE);
        let key = args
            .get("key")
            .and_then(|v| v.as_str())
            .ok_or_else(|| ZeptoError::Tool("Missing required parameter 'key'".into()))?;

        validate_nvs_string(namespace, "namespace", MAX_NAMESPACE_LEN)?;
        validate_nvs_string(key, "key", MAX_KEY_LEN)?;

        let result = self
            .transport
            .request("nvs_get", json!({ "namespace": namespace, "key": key }))
            .await?;

        Ok(ToolOutput::llm_only(result))
    }
}

// ---------------------------------------------------------------------------
// NvsSetTool
// ---------------------------------------------------------------------------

/// Tool: write a value to NVS by namespace and key.
pub struct NvsSetTool {
    pub(crate) transport: Arc<SerialTransport>,
}

#[async_trait]
impl Tool for NvsSetTool {
    fn name(&self) -> &str {
        "nvs_set"
    }

    fn description(&self) -> &str {
        "Write a string value to ESP32 NVS (non-volatile flash storage). \
         Creates the key if it does not exist; overwrites if it does."
    }

    fn compact_description(&self) -> &str {
        "Write NVS key value"
    }

    fn category(&self) -> ToolCategory {
        ToolCategory::Hardware
    }

    fn parameters(&self) -> Value {
        json!({
            "type": "object",
            "properties": {
                "namespace": {
                    "type": "string",
                    "description": "NVS namespace (default: \"config\", max 15 chars, alphanumeric/_/-)"
                },
                "key": {
                    "type": "string",
                    "description": "NVS key name (required, max 15 chars, alphanumeric/_/-)"
                },
                "value": {
                    "type": "string",
                    "description": "String value to store in NVS"
                }
            },
            "required": ["key", "value"]
        })
    }

    async fn execute(&self, args: Value, _ctx: &ToolContext) -> Result<ToolOutput> {
        let namespace = args
            .get("namespace")
            .and_then(|v| v.as_str())
            .unwrap_or(DEFAULT_NAMESPACE);
        let key = args
            .get("key")
            .and_then(|v| v.as_str())
            .ok_or_else(|| ZeptoError::Tool("Missing required parameter 'key'".into()))?;
        let value = args
            .get("value")
            .and_then(|v| v.as_str())
            .ok_or_else(|| ZeptoError::Tool("Missing required parameter 'value'".into()))?;

        validate_nvs_string(namespace, "namespace", MAX_NAMESPACE_LEN)?;
        validate_nvs_string(key, "key", MAX_KEY_LEN)?;

        if value.len() > MAX_VALUE_LEN {
            return Err(ZeptoError::Tool(format!(
                "NVS value exceeds maximum length of {} bytes (got {})",
                MAX_VALUE_LEN,
                value.len()
            )));
        }

        let result = self
            .transport
            .request(
                "nvs_set",
                json!({ "namespace": namespace, "key": key, "value": value }),
            )
            .await?;

        Ok(ToolOutput::llm_only(result))
    }
}

// ---------------------------------------------------------------------------
// NvsDeleteTool
// ---------------------------------------------------------------------------

/// Tool: delete a key from NVS.
pub struct NvsDeleteTool {
    pub(crate) transport: Arc<SerialTransport>,
}

#[async_trait]
impl Tool for NvsDeleteTool {
    fn name(&self) -> &str {
        "nvs_delete"
    }

    fn description(&self) -> &str {
        "Delete a key from ESP32 NVS (non-volatile flash storage). \
         Returns an error if the namespace or key does not exist."
    }

    fn compact_description(&self) -> &str {
        "Delete NVS key"
    }

    fn category(&self) -> ToolCategory {
        ToolCategory::Hardware
    }

    fn parameters(&self) -> Value {
        json!({
            "type": "object",
            "properties": {
                "namespace": {
                    "type": "string",
                    "description": "NVS namespace (default: \"config\", max 15 chars, alphanumeric/_/-)"
                },
                "key": {
                    "type": "string",
                    "description": "NVS key name to delete (required, max 15 chars, alphanumeric/_/-)"
                }
            },
            "required": ["key"]
        })
    }

    async fn execute(&self, args: Value, _ctx: &ToolContext) -> Result<ToolOutput> {
        let namespace = args
            .get("namespace")
            .and_then(|v| v.as_str())
            .unwrap_or(DEFAULT_NAMESPACE);
        let key = args
            .get("key")
            .and_then(|v| v.as_str())
            .ok_or_else(|| ZeptoError::Tool("Missing required parameter 'key'".into()))?;

        validate_nvs_string(namespace, "namespace", MAX_NAMESPACE_LEN)?;
        validate_nvs_string(key, "key", MAX_KEY_LEN)?;

        let result = self
            .transport
            .request("nvs_delete", json!({ "namespace": namespace, "key": key }))
            .await?;

        Ok(ToolOutput::llm_only(result))
    }
}

// ---------------------------------------------------------------------------
// Tests
// ---------------------------------------------------------------------------

#[cfg(test)]
mod tests {
    use super::*;

    // -----------------------------------------------------------------------
    // validate_nvs_string — valid inputs
    // -----------------------------------------------------------------------

    #[test]
    fn test_validate_nvs_string_valid_key() {
        assert!(validate_nvs_string("wifi_ssid", "key", MAX_KEY_LEN).is_ok());
        assert!(validate_nvs_string("k", "key", MAX_KEY_LEN).is_ok());
        assert!(validate_nvs_string("key-1", "key", MAX_KEY_LEN).is_ok());
        assert!(validate_nvs_string("KEY_123", "key", MAX_KEY_LEN).is_ok());
    }

    #[test]
    fn test_validate_nvs_string_exactly_max_len() {
        // 15 chars — at the limit, should pass.
        let at_limit = "a".repeat(MAX_KEY_LEN);
        assert_eq!(at_limit.len(), MAX_KEY_LEN);
        assert!(validate_nvs_string(&at_limit, "key", MAX_KEY_LEN).is_ok());
    }

    // -----------------------------------------------------------------------
    // validate_nvs_string — empty string
    // -----------------------------------------------------------------------

    #[test]
    fn test_validate_nvs_string_empty_key() {
        let err = validate_nvs_string("", "key", MAX_KEY_LEN).unwrap_err();
        let msg = err.to_string();
        assert!(
            msg.contains("empty"),
            "expected 'empty' in error, got: {msg}"
        );
    }

    #[test]
    fn test_validate_nvs_string_empty_namespace() {
        let err = validate_nvs_string("", "namespace", MAX_NAMESPACE_LEN).unwrap_err();
        let msg = err.to_string();
        assert!(
            msg.contains("empty"),
            "expected 'empty' in error, got: {msg}"
        );
    }

    // -----------------------------------------------------------------------
    // validate_nvs_string — too long
    // -----------------------------------------------------------------------

    #[test]
    fn test_validate_nvs_string_too_long_key() {
        // 16 chars — one over the limit.
        let too_long = "a".repeat(MAX_KEY_LEN + 1);
        let err = validate_nvs_string(&too_long, "key", MAX_KEY_LEN).unwrap_err();
        let msg = err.to_string();
        assert!(
            msg.contains("exceeds") || msg.contains("maximum"),
            "expected length error, got: {msg}"
        );
    }

    #[test]
    fn test_validate_nvs_string_too_long_namespace() {
        let too_long = "n".repeat(MAX_NAMESPACE_LEN + 1);
        let err = validate_nvs_string(&too_long, "namespace", MAX_NAMESPACE_LEN).unwrap_err();
        let msg = err.to_string();
        assert!(
            msg.contains("exceeds") || msg.contains("maximum"),
            "expected length error, got: {msg}"
        );
    }

    // -----------------------------------------------------------------------
    // validate_nvs_string — invalid characters
    // -----------------------------------------------------------------------

    #[test]
    fn test_validate_nvs_string_invalid_chars_space() {
        let err = validate_nvs_string("my key", "key", MAX_KEY_LEN).unwrap_err();
        let msg = err.to_string();
        assert!(
            msg.contains("invalid"),
            "expected 'invalid' in error, got: {msg}"
        );
    }

    #[test]
    fn test_validate_nvs_string_invalid_chars_dot() {
        let err = validate_nvs_string("my.key", "key", MAX_KEY_LEN).unwrap_err();
        let msg = err.to_string();
        assert!(
            msg.contains("invalid"),
            "expected 'invalid' in error, got: {msg}"
        );
    }

    #[test]
    fn test_validate_nvs_string_invalid_chars_slash() {
        let err = validate_nvs_string("my/key", "key", MAX_KEY_LEN).unwrap_err();
        let msg = err.to_string();
        assert!(
            msg.contains("invalid"),
            "expected 'invalid' in error, got: {msg}"
        );
    }

    #[test]
    fn test_validate_nvs_string_invalid_chars_at() {
        let err = validate_nvs_string("key@host", "key", MAX_KEY_LEN).unwrap_err();
        let msg = err.to_string();
        assert!(
            msg.contains("invalid"),
            "expected 'invalid' in error, got: {msg}"
        );
    }

    // -----------------------------------------------------------------------
    // Constants
    // -----------------------------------------------------------------------

    #[test]
    fn test_max_key_len_is_15() {
        assert_eq!(MAX_KEY_LEN, 15);
    }

    #[test]
    fn test_max_namespace_len_is_15() {
        assert_eq!(MAX_NAMESPACE_LEN, 15);
    }

    #[test]
    fn test_max_value_len_is_4000() {
        assert_eq!(MAX_VALUE_LEN, 4000);
    }

    // -----------------------------------------------------------------------
    // Parameter schema tests (no SerialTransport needed)
    // -----------------------------------------------------------------------

    fn get_parameters() -> Value {
        json!({
            "type": "object",
            "properties": {
                "namespace": {
                    "type": "string",
                    "description": "NVS namespace (default: \"config\", max 15 chars, alphanumeric/_/-)"
                },
                "key": {
                    "type": "string",
                    "description": "NVS key name (required, max 15 chars, alphanumeric/_/-)"
                }
            },
            "required": ["key"]
        })
    }

    fn set_parameters() -> Value {
        json!({
            "type": "object",
            "properties": {
                "namespace": {
                    "type": "string",
                    "description": "NVS namespace (default: \"config\", max 15 chars, alphanumeric/_/-)"
                },
                "key": {
                    "type": "string",
                    "description": "NVS key name (required, max 15 chars, alphanumeric/_/-)"
                },
                "value": {
                    "type": "string",
                    "description": "String value to store in NVS"
                }
            },
            "required": ["key", "value"]
        })
    }

    fn delete_parameters() -> Value {
        json!({
            "type": "object",
            "properties": {
                "namespace": {
                    "type": "string",
                    "description": "NVS namespace (default: \"config\", max 15 chars, alphanumeric/_/-)"
                },
                "key": {
                    "type": "string",
                    "description": "NVS key name to delete (required, max 15 chars, alphanumeric/_/-)"
                }
            },
            "required": ["key"]
        })
    }

    #[test]
    fn test_nvs_get_parameter_schema() {
        let schema = get_parameters();
        assert_eq!(schema["type"], "object");
        assert!(schema["properties"]["namespace"].is_object());
        assert!(schema["properties"]["key"].is_object());
        let required = schema["required"].as_array().unwrap();
        assert!(required.contains(&json!("key")));
        assert!(
            !required.contains(&json!("namespace")),
            "namespace is optional"
        );
    }

    #[test]
    fn test_nvs_set_parameter_schema() {
        let schema = set_parameters();
        assert_eq!(schema["type"], "object");
        assert!(schema["properties"]["namespace"].is_object());
        assert!(schema["properties"]["key"].is_object());
        assert!(schema["properties"]["value"].is_object());
        let required = schema["required"].as_array().unwrap();
        assert!(required.contains(&json!("key")));
        assert!(required.contains(&json!("value")));
        assert!(
            !required.contains(&json!("namespace")),
            "namespace is optional"
        );
    }

    #[test]
    fn test_nvs_delete_parameter_schema() {
        let schema = delete_parameters();
        assert_eq!(schema["type"], "object");
        assert!(schema["properties"]["namespace"].is_object());
        assert!(schema["properties"]["key"].is_object());
        let required = schema["required"].as_array().unwrap();
        assert!(required.contains(&json!("key")));
        assert!(
            !required.contains(&json!("namespace")),
            "namespace is optional"
        );
    }

    // -----------------------------------------------------------------------
    // Underscore and hyphen are valid
    // -----------------------------------------------------------------------

    #[test]
    fn test_validate_nvs_string_allows_underscore_and_hyphen() {
        assert!(validate_nvs_string("my_key", "key", MAX_KEY_LEN).is_ok());
        assert!(validate_nvs_string("my-key", "key", MAX_KEY_LEN).is_ok());
        assert!(validate_nvs_string("a_b-c", "key", MAX_KEY_LEN).is_ok());
    }

    // -----------------------------------------------------------------------
    // Error message contains field name
    // -----------------------------------------------------------------------

    #[test]
    fn test_validate_nvs_string_error_mentions_field() {
        let err = validate_nvs_string("", "namespace", MAX_NAMESPACE_LEN).unwrap_err();
        let msg = err.to_string();
        assert!(
            msg.contains("namespace"),
            "error should mention field name, got: {msg}"
        );

        let err2 = validate_nvs_string("", "key", MAX_KEY_LEN).unwrap_err();
        let msg2 = err2.to_string();
        assert!(
            msg2.contains("key"),
            "error should mention field name, got: {msg2}"
        );
    }
}