luaskills 0.4.5

LuaSkills core runtime library for loading, invoking, and managing Lua skill packages.
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
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
use semver::Version;
use serde::Deserialize;
use serde_json::{Map as JsonMap, Value as JsonValue};
use std::fs;
use std::path::Path;

// ============================================================
// Lua Skill metadata (loaded from skill.yaml only)
// ============================================================

/// Skill-scoped LanceDB logging level.
/// Skill 级 LanceDB 宿主日志级别配置。
#[derive(Deserialize, Debug, Clone, PartialEq, Eq, Default)]
#[serde(rename_all = "snake_case")]
pub enum SkillLanceDbLogLevel {
    /// Disable host-side LanceDB logs except hard failures.
    /// 除硬错误外关闭宿主侧 LanceDB 日志。
    Off,
    /// Emit informational host-side LanceDB logs.
    /// 输出信息级宿主 LanceDB 日志。
    #[default]
    Info,
    /// Emit only warning/error host-side LanceDB logs.
    /// 仅输出告警/错误级宿主 LanceDB 日志。
    Warning,
}

impl SkillLanceDbLogLevel {
    /// Return the stable wire name of the current log level.
    /// 返回当前日志级别对应的稳定名称。
    pub fn as_str(&self) -> &'static str {
        match self {
            Self::Off => "off",
            Self::Info => "info",
            Self::Warning => "warning",
        }
    }
}

/// Skill-scoped SQLite logging level.
/// Skill 级 SQLite 宿主日志级别配置。
#[derive(Deserialize, Debug, Clone, PartialEq, Eq, Default)]
#[serde(rename_all = "snake_case")]
pub enum SkillSqliteLogLevel {
    /// Disable host-side SQLite logs except hard failures.
    /// 除硬错误外关闭宿主侧 SQLite 日志。
    Off,
    /// Emit informational host-side SQLite logs.
    /// 输出信息级宿主 SQLite 日志。
    #[default]
    Info,
    /// Emit only warning/error host-side SQLite logs.
    /// 仅输出告警/错误级宿主 SQLite 日志。
    Warning,
}

impl SkillSqliteLogLevel {
    /// Return the stable wire name of the current log level.
    /// 返回当前日志级别对应的稳定名称。
    pub fn as_str(&self) -> &'static str {
        match self {
            Self::Off => "off",
            Self::Info => "info",
            Self::Warning => "warning",
        }
    }
}

/// Skill-scoped LanceDB configuration object.
/// Skill 级 LanceDB 配置对象。
#[derive(Deserialize, Debug, Clone, Default)]
pub struct SkillLanceDbMeta {
    /// Whether the current skill should receive a dedicated host-managed LanceDB instance.
    /// 当前 skill 是否需要启用宿主管理的专属 LanceDB 实例。
    #[serde(default)]
    pub enable: bool,
    /// Host-side LanceDB log level.
    /// 宿主侧 LanceDB 日志级别。
    #[serde(default)]
    pub log_level: SkillLanceDbLogLevel,
    /// Whether slow-operation logging is enabled.
    /// 是否开启慢操作日志。
    #[serde(default)]
    pub slow_log_enabled: bool,
    /// Slow-operation threshold in milliseconds.
    /// 慢操作阈值(毫秒)。
    #[serde(default = "default_lancedb_slow_log_threshold_ms")]
    pub slow_log_threshold_ms: u64,
}

/// Skill-scoped SQLite configuration object.
/// Skill 级 SQLite 配置对象。
#[derive(Deserialize, Debug, Clone, Default)]
pub struct SkillSqliteMeta {
    /// Whether the current skill should receive a dedicated host-managed SQLite instance.
    /// 当前 skill 是否需要启用宿主管理的专属 SQLite 实例。
    #[serde(default)]
    pub enable: bool,
    /// Host-side SQLite log level.
    /// 宿主侧 SQLite 日志级别。
    #[serde(default)]
    pub log_level: SkillSqliteLogLevel,
    /// Whether slow-operation logging is enabled.
    /// 是否开启慢操作日志。
    #[serde(default)]
    pub slow_log_enabled: bool,
    /// Slow-operation threshold in milliseconds.
    /// 慢操作阈值(毫秒)。
    #[serde(default = "default_sqlite_slow_log_threshold_ms")]
    pub slow_log_threshold_ms: u64,
}

/// Default slow-operation threshold for host-side LanceDB logs.
/// 宿主侧 LanceDB 慢操作日志默认阈值。
fn default_lancedb_slow_log_threshold_ms() -> u64 {
    800
}

/// Default slow-operation threshold for host-side SQLite logs.
/// 宿主侧 SQLite 慢操作日志默认阈值。
fn default_sqlite_slow_log_threshold_ms() -> u64 {
    500
}

/// Help node metadata used by the new help structure.
/// 新 help 结构使用的帮助节点元数据。
#[derive(Deserialize, Debug, Clone, Default)]
pub struct SkillHelpNodeMeta {
    /// Optional node name used by topic/workflow nodes.
    /// 供 topic/workflow 节点使用的可选名称。
    #[serde(default)]
    pub name: String,
    /// Optional human-readable description of the node.
    /// 当前节点的人类可读描述。
    #[serde(default)]
    pub description: String,
    /// Relative file path of the help payload under `help/`.
    /// 位于 `help/` 目录下的帮助载荷相对路径。
    #[serde(default)]
    pub file: String,
}

/// Top-level help metadata declared by a skill.
/// skill 顶层声明的 help 元数据。
#[derive(Deserialize, Debug, Clone, Default)]
pub struct SkillHelpMeta {
    /// Main help node used for skill-level overview.
    /// 用于 skill 级总览的主帮助节点。
    #[serde(default)]
    pub main: SkillHelpNodeMeta,
    /// Topic or workflow help nodes listed under the main help.
    /// 挂在主帮助下的 topic 或 workflow 子节点。
    #[serde(default)]
    pub topics: Vec<SkillHelpNodeMeta>,
}

/// Shared parameter metadata used by tool entries.
/// 工具入口共用的参数元数据。
#[derive(Deserialize, Debug, Clone)]
pub struct SkillParam {
    /// Parameter name.
    /// 参数名称。
    pub name: String,
    /// Parameter type string used by JSON Schema.
    /// JSON Schema 使用的参数类型字符串。
    #[serde(rename = "type")]
    pub param_type: String,
    /// Parameter description.
    /// 参数描述。
    pub description: String,
    /// Whether the parameter is required.
    /// 参数是否必填。
    #[serde(default)]
    pub required: bool,
}

/// Strict top-level entry metadata used by the new LuaSkills package layout.
/// 新 LuaSkills 包结构使用的严格顶层入口元数据。
#[derive(Deserialize, Debug, Clone)]
pub struct SkillToolMeta {
    /// Local entry name used inside the skill namespace.
    /// skill 命名空间内部使用的局部入口名称。
    pub name: String,
    /// Human-readable entry description shown in tools/list.
    /// 展示在 tools/list 中的人类可读描述。
    #[serde(default)]
    pub description: String,
    /// Relative Lua entry filename under `runtime/`.
    /// 位于 `runtime/` 目录下的相对 Lua 入口文件路径。
    pub lua_entry: String,
    /// Lua module registration name.
    /// Lua 模块注册名称。
    pub lua_module: String,
    /// Parameter definitions specific to this entry.
    /// 当前入口独有的参数定义。
    #[serde(default)]
    pub parameters: Vec<SkillParam>,
    /// Optional inline JSON Schema object used as the final AI-facing input schema.
    /// 作为最终面向 AI 输入 schema 的可选内联 JSON Schema 对象。
    #[serde(default)]
    pub input_schema: Option<JsonValue>,
    /// Optional JSON Schema file path under `schemas/` used to define the final AI-facing input schema.
    /// 位于 `schemas/` 目录下、用于定义最终面向 AI 输入 schema 的可选 JSON Schema 文件路径。
    #[serde(default)]
    pub input_schema_file: String,
    /// Optional help topic/workflow reference name.
    /// 可选的帮助 topic/workflow 引用名称。
    #[serde(default)]
    pub help: String,
}

/// Strict skill-level metadata loaded only from skill.yaml.
/// 仅从 skill.yaml 加载的严格 skill 级元数据。
#[derive(Deserialize, Debug, Clone)]
pub struct SkillMeta {
    /// Internal skill name, for example "vulcan-codekit".
    /// 内部 skill 名称,例如 "vulcan-codekit"。
    pub name: String,
    /// Semantic package version declared by the current skill manifest.
    /// 当前技能清单声明的语义化包版本。
    pub version: String,
    /// Whether the current skill is allowed to load. Defaults to enabled when omitted.
    /// 当前 skill 是否允许被加载;省略时默认启用。
    #[serde(default = "default_skill_enable_flag")]
    pub enable: bool,
    /// Debug mode: reload Lua source from disk on each invocation.
    /// 调试模式:每次调用时都从磁盘热加载 Lua 源文件。
    #[serde(default)]
    pub debug: bool,
    /// Structured LanceDB configuration used by the host-managed binding.
    /// 宿主管理的 LanceDB 绑定所使用的结构化配置对象。
    #[serde(default)]
    pub lancedb: SkillLanceDbMeta,
    /// Structured SQLite configuration used by the host-managed binding.
    /// 宿主管理的 SQLite 绑定所使用的结构化配置对象。
    #[serde(default)]
    pub sqlite: SkillSqliteMeta,
    /// Top-level entry declarations used by the strict LuaSkills package layout.
    /// 严格 LuaSkills 包结构使用的顶层入口声明。
    #[serde(default)]
    pub entries: Vec<SkillToolMeta>,
    /// New help metadata used to replace prompt-based guidance.
    /// 用于替代 prompt 说明的新 help 元数据。
    #[serde(default)]
    pub help: SkillHelpMeta,
    /// Stable runtime skill identifier derived from the physical directory name.
    /// 从物理目录名称派生出的稳定运行时技能标识符。
    #[serde(skip)]
    resolved_skill_id: String,
}

/// Return whether one LuaSkills identifier follows the strict lowercase-hyphen rule.
/// 判断某个 LuaSkills 标识符是否满足严格的小写短横线规则。
pub fn is_valid_luaskills_identifier(value: &str) -> bool {
    let trimmed = value.trim();
    if trimmed.is_empty() {
        return false;
    }

    let mut chars = trimmed.chars();
    let Some(first_char) = chars.next() else {
        return false;
    };
    if !first_char.is_ascii_lowercase() {
        return false;
    }
    if trimmed.ends_with('-') {
        return false;
    }

    chars.all(|character| {
        character.is_ascii_lowercase() || character.is_ascii_digit() || character == '-'
    })
}

/// Validate one LuaSkills identifier and return a bilingual error when it is invalid.
/// 校验单个 LuaSkills 标识符,并在非法时返回双语错误文本。
pub fn validate_luaskills_identifier(value: &str, label: &str) -> Result<(), String> {
    if is_valid_luaskills_identifier(value) {
        return Ok(());
    }

    Err(format!("{label} must match ^[a-z]([a-z0-9-]*[a-z0-9])?$"))
}

/// Validate one LuaSkills semantic version string and return an English error when it is invalid.
/// 校验单个 LuaSkills 语义化版本字符串,并在非法时返回英文错误。
pub fn validate_luaskills_version(value: &str, label: &str) -> Result<(), String> {
    let trimmed = value.trim();
    if trimmed.is_empty() {
        return Err(format!("{label} must not be empty"));
    }
    Version::parse(trimmed)
        .map(|_| ())
        .map_err(|error| format!("{label} must be a valid semantic version: {}", error))
}

/// Return the default enabled flag for one skill manifest.
/// 返回单个技能清单的默认启用标记。
fn default_skill_enable_flag() -> bool {
    true
}

/// Validate one relative metadata path against a fixed prefix and reject traversal.
/// 按固定目录前缀校验单个 skill 元数据相对路径,并拒绝路径穿越。
fn validate_skill_relative_path(
    relative_path: &str,
    expected_prefix: &str,
    field_label: &str,
) -> Result<(), String> {
    let trimmed = relative_path.trim();
    if trimmed.is_empty() {
        return Err(format!("{field_label} must not be empty"));
    }

    let path = Path::new(trimmed);
    if path.is_absolute() {
        return Err(format!(
            "{field_label} must be a relative path under {expected_prefix}"
        ));
    }

    let normalized = trimmed.replace('\\', "/");
    let required_prefix = format!("{expected_prefix}/");
    if !normalized.starts_with(&required_prefix) {
        return Err(format!("{field_label} must start with {required_prefix}"));
    }

    for component in path.components() {
        if !matches!(component, std::path::Component::Normal(_)) {
            return Err(format!("{field_label} must not contain parent"));
        }
    }

    Ok(())
}

/// Validate one JSON Schema `type` field used by one AI-facing tool schema node.
/// 校验单个面向 AI 的工具 schema 节点使用的 JSON Schema `type` 字段。
fn validate_tool_schema_type_field(
    object: &JsonMap<String, JsonValue>,
    field_label: &str,
) -> Result<(), String> {
    let Some(type_value) = object.get("type") else {
        return Ok(());
    };
    match type_value {
        JsonValue::String(type_name) => {
            if type_name.trim().is_empty() {
                return Err(format!("{field_label}.type must not be empty"));
            }
        }
        JsonValue::Array(items) => {
            if items.is_empty() {
                return Err(format!("{field_label}.type must not be an empty array"));
            }
            for (index, item) in items.iter().enumerate() {
                let type_name = item
                    .as_str()
                    .ok_or_else(|| format!("{field_label}.type[{index}] must be one string"))?;
                if type_name.trim().is_empty() {
                    return Err(format!("{field_label}.type[{index}] must not be empty"));
                }
            }
        }
        _ => {
            return Err(format!(
                "{field_label}.type must be one string or one string array"
            ));
        }
    }
    Ok(())
}

/// Validate one JSON Schema string-name array such as `required`.
/// 校验单个 JSON Schema 字符串名称数组,例如 `required`。
fn validate_tool_schema_name_array(value: &JsonValue, field_label: &str) -> Result<(), String> {
    let items = value
        .as_array()
        .ok_or_else(|| format!("{field_label} must be an array of strings"))?;
    for (index, item) in items.iter().enumerate() {
        let item_text = item
            .as_str()
            .ok_or_else(|| format!("{field_label}[{index}] must be one string"))?;
        if item_text.trim().is_empty() {
            return Err(format!("{field_label}[{index}] must not be empty"));
        }
    }
    Ok(())
}

/// Validate one JSON Schema array of nested schema nodes.
/// 校验单个由嵌套 schema 节点组成的 JSON Schema 数组。
fn validate_tool_schema_node_array(value: &JsonValue, field_label: &str) -> Result<(), String> {
    let items = value
        .as_array()
        .ok_or_else(|| format!("{field_label} must be an array of schema objects"))?;
    if items.is_empty() {
        return Err(format!("{field_label} must not be empty"));
    }
    for (index, item) in items.iter().enumerate() {
        validate_tool_schema_node(item, &format!("{field_label}[{index}]"))?;
    }
    Ok(())
}

/// Validate one JSON Schema object-map whose values are nested schema nodes.
/// 校验单个值为嵌套 schema 节点的 JSON Schema 对象映射。
fn validate_tool_schema_object_map(value: &JsonValue, field_label: &str) -> Result<(), String> {
    let object = value
        .as_object()
        .ok_or_else(|| format!("{field_label} must be an object"))?;
    for (name, item) in object {
        if name.trim().is_empty() {
            return Err(format!(
                "{field_label} must not contain empty property names"
            ));
        }
        validate_tool_schema_node(item, &format!("{field_label}.{}", name))?;
    }
    Ok(())
}

/// Validate one JSON Schema node used inside one AI-facing tool input schema tree.
/// 校验单个面向 AI 的工具输入 schema 树中使用的 JSON Schema 节点。
fn validate_tool_schema_node(schema: &JsonValue, field_label: &str) -> Result<(), String> {
    let object = schema
        .as_object()
        .ok_or_else(|| format!("{field_label} must be one JSON object schema"))?;

    validate_tool_schema_type_field(object, field_label)?;

    if let Some(properties) = object.get("properties") {
        validate_tool_schema_object_map(properties, &format!("{field_label}.properties"))?;
    }
    if let Some(pattern_properties) = object.get("patternProperties") {
        validate_tool_schema_object_map(
            pattern_properties,
            &format!("{field_label}.patternProperties"),
        )?;
    }
    if let Some(definitions) = object.get("$defs").or_else(|| object.get("definitions")) {
        validate_tool_schema_object_map(definitions, &format!("{field_label}.$defs"))?;
    }
    if let Some(required) = object.get("required") {
        validate_tool_schema_name_array(required, &format!("{field_label}.required"))?;
    }
    if let Some(enum_values) = object.get("enum") {
        enum_values
            .as_array()
            .ok_or_else(|| format!("{field_label}.enum must be an array"))?;
    }
    if let Some(items) = object.get("items") {
        match items {
            JsonValue::Object(_) => {
                validate_tool_schema_node(items, &format!("{field_label}.items"))?;
            }
            JsonValue::Array(_) => {
                validate_tool_schema_node_array(items, &format!("{field_label}.items"))?;
            }
            _ => {
                return Err(format!(
                    "{field_label}.items must be one schema object or one schema array"
                ));
            }
        }
    }
    if let Some(prefix_items) = object.get("prefixItems") {
        validate_tool_schema_node_array(prefix_items, &format!("{field_label}.prefixItems"))?;
    }
    if let Some(contains) = object.get("contains") {
        validate_tool_schema_node(contains, &format!("{field_label}.contains"))?;
    }
    if let Some(property_names) = object.get("propertyNames") {
        validate_tool_schema_node(property_names, &format!("{field_label}.propertyNames"))?;
    }
    if let Some(additional_properties) = object.get("additionalProperties") {
        match additional_properties {
            JsonValue::Bool(_) => {}
            JsonValue::Object(_) => validate_tool_schema_node(
                additional_properties,
                &format!("{field_label}.additionalProperties"),
            )?,
            _ => {
                return Err(format!(
                    "{field_label}.additionalProperties must be one boolean or one schema object"
                ));
            }
        }
    }
    for keyword in ["oneOf", "anyOf", "allOf"] {
        if let Some(value) = object.get(keyword) {
            validate_tool_schema_node_array(value, &format!("{field_label}.{keyword}"))?;
        }
    }
    if let Some(not_schema) = object.get("not") {
        validate_tool_schema_node(not_schema, &format!("{field_label}.not"))?;
    }
    if let Some(if_schema) = object.get("if") {
        validate_tool_schema_node(if_schema, &format!("{field_label}.if"))?;
    }
    if let Some(then_schema) = object.get("then") {
        validate_tool_schema_node(then_schema, &format!("{field_label}.then"))?;
    }
    if let Some(else_schema) = object.get("else") {
        validate_tool_schema_node(else_schema, &format!("{field_label}.else"))?;
    }

    Ok(())
}

/// Validate one final entry input schema before it is exposed to hosts and models.
/// 在把最终入口输入 schema 暴露给宿主与模型之前进行校验。
fn validate_entry_input_schema_root(schema: &JsonValue, field_label: &str) -> Result<(), String> {
    validate_tool_schema_node(schema, field_label)?;
    let object = schema
        .as_object()
        .ok_or_else(|| format!("{field_label} must be one JSON object schema"))?;
    match object.get("type") {
        Some(JsonValue::String(type_name)) if type_name == "object" => Ok(()),
        Some(_) => Err(format!("{field_label}.type must be \"object\"")),
        None => Err(format!(
            "{field_label}.type must be present and equal to \"object\""
        )),
    }
}

/// Build one legacy object-style input schema from the flat `parameters` list.
/// 基于扁平 `parameters` 列表构造单个旧版对象式输入 schema。
fn build_entry_input_schema_from_parameters(parameters: &[SkillParam]) -> JsonValue {
    let mut properties = JsonMap::new();
    let mut required = Vec::new();
    for parameter in parameters {
        properties.insert(
            parameter.name.clone(),
            build_parameter_schema_fragment(parameter),
        );
        if parameter.required {
            required.push(JsonValue::String(parameter.name.clone()));
        }
    }

    let mut schema = JsonMap::new();
    schema.insert("type".to_string(), JsonValue::String("object".to_string()));
    schema.insert("properties".to_string(), JsonValue::Object(properties));
    if !required.is_empty() {
        schema.insert("required".to_string(), JsonValue::Array(required));
    }
    JsonValue::Object(schema)
}

/// Build one simple property schema fragment from one legacy flat parameter descriptor.
/// 基于单个旧版扁平参数描述构造简单属性 schema 片段。
fn build_parameter_schema_fragment(parameter: &SkillParam) -> JsonValue {
    let mut schema = JsonMap::new();
    schema.insert(
        "type".to_string(),
        JsonValue::String(parameter.param_type.clone()),
    );
    if !parameter.description.trim().is_empty() {
        schema.insert(
            "description".to_string(),
            JsonValue::String(parameter.description.clone()),
        );
    }
    JsonValue::Object(schema)
}

/// Derive one readable legacy parameter type string from one JSON Schema property node.
/// 从单个 JSON Schema 属性节点推导可读的旧版参数类型字符串。
fn derive_parameter_type_from_schema(schema: &JsonValue) -> String {
    let Some(object) = schema.as_object() else {
        return "schema".to_string();
    };
    if let Some(type_name) = object.get("type").and_then(JsonValue::as_str) {
        return type_name.to_string();
    }
    if let Some(type_items) = object.get("type").and_then(JsonValue::as_array) {
        let names: Vec<String> = type_items
            .iter()
            .filter_map(JsonValue::as_str)
            .map(ToString::to_string)
            .collect();
        if !names.is_empty() {
            return names.join(" | ");
        }
    }
    if object.contains_key("properties") {
        return "object".to_string();
    }
    if object.contains_key("items") || object.contains_key("prefixItems") {
        return "array".to_string();
    }
    if object.contains_key("oneOf") || object.contains_key("anyOf") || object.contains_key("allOf")
    {
        return "union".to_string();
    }
    "schema".to_string()
}

/// Derive legacy flat parameter descriptors from the top-level object properties of one schema.
/// 从单个 schema 的顶层对象属性中推导旧版扁平参数描述。
fn derive_legacy_parameters_from_input_schema(schema: &JsonValue) -> Vec<SkillParam> {
    let Some(object) = schema.as_object() else {
        return Vec::new();
    };
    let Some(properties) = object.get("properties").and_then(JsonValue::as_object) else {
        return Vec::new();
    };
    let required_names = object
        .get("required")
        .and_then(JsonValue::as_array)
        .map(|items| {
            items
                .iter()
                .filter_map(JsonValue::as_str)
                .map(ToString::to_string)
                .collect::<Vec<String>>()
        })
        .unwrap_or_default();

    properties
        .iter()
        .map(|(name, property_schema)| SkillParam {
            name: name.clone(),
            param_type: derive_parameter_type_from_schema(property_schema),
            description: property_schema
                .as_object()
                .and_then(|item| item.get("description"))
                .and_then(JsonValue::as_str)
                .unwrap_or_default()
                .to_string(),
            required: required_names
                .iter()
                .any(|required_name| required_name == name),
        })
        .collect()
}

/// Load one external JSON Schema file referenced by one skill entry.
/// 加载单个 skill 入口引用的外部 JSON Schema 文件。
fn load_entry_input_schema_file(
    skill_dir: &Path,
    relative_path: &str,
    entry_name: &str,
) -> Result<JsonValue, String> {
    validate_skill_relative_path(relative_path, "schemas", "entry.input_schema_file")?;
    let schema_path = skill_dir.join(relative_path);
    let schema_text = fs::read_to_string(&schema_path).map_err(|error| {
        format!(
            "skill entry {} input_schema_file {} read failed: {}",
            entry_name,
            schema_path.display(),
            error
        )
    })?;
    serde_json::from_str(&schema_text).map_err(|error| {
        format!(
            "skill entry {} input_schema_file {} parse failed: {}",
            entry_name,
            schema_path.display(),
            error
        )
    })
}

impl SkillMeta {
    /// Return the effective LanceDB configuration.
    /// 返回生效的 LanceDB 配置。
    pub fn effective_lancedb(&self) -> SkillLanceDbMeta {
        self.lancedb.clone()
    }

    /// Return the effective SQLite configuration.
    /// 返回生效的 SQLite 配置。
    pub fn effective_sqlite(&self) -> SkillSqliteMeta {
        self.sqlite.clone()
    }

    /// Bind the stable runtime skill identifier derived from the physical directory name.
    /// 绑定从物理目录名称派生出的稳定运行时技能标识符。
    pub fn bind_directory_skill_id(&mut self, skill_id: String) {
        self.resolved_skill_id = skill_id;
    }

    /// Resolve every entry input schema into one final object schema before runtime export.
    /// 在运行时导出之前,把每个入口输入 schema 解析为最终对象 schema。
    pub fn resolve_entry_input_schemas(&mut self, skill_dir: &Path) -> Result<(), String> {
        for tool in &mut self.entries {
            tool.resolve_input_schema(skill_dir)?;
        }
        Ok(())
    }

    /// Return the effective skill id used by canonical entry names.
    /// 返回用于 canonical 入口名的生效 skill id。
    pub fn effective_skill_id(&self) -> &str {
        self.resolved_skill_id.trim()
    }

    /// Return the semantic package version declared by the current skill.
    /// 返回当前技能声明的语义化包版本。
    pub fn version(&self) -> &str {
        self.version.trim()
    }

    /// Return whether the manifest itself allows the skill to load.
    /// 返回当前清单本身是否允许技能被加载。
    pub fn is_enabled(&self) -> bool {
        self.enable
    }

    /// Iterate over all top-level entries.
    /// 遍历当前 skill 下的全部顶层入口。
    pub fn entries(&self) -> impl Iterator<Item = &SkillToolMeta> {
        self.entries.iter()
    }

    /// Build the unresolved base name of one entry before conflict indexing.
    /// 构建单个入口在冲突编号前的未解析基础名称。
    pub fn tool_base_name(&self, tool: &SkillToolMeta) -> String {
        format!("{}-{}", self.effective_skill_id(), tool.name.trim())
    }

    /// Find one entry by its strict local name.
    /// 根据严格局部入口名查找单个入口。
    pub fn find_tool_by_local_name(&self, tool_name: &str) -> Option<&SkillToolMeta> {
        self.entries().find(|tool| tool.name.trim() == tool_name)
    }

    /// Return the main help node declared by the skill.
    /// 返回 skill 声明的主帮助节点。
    pub fn main_help(&self) -> &SkillHelpNodeMeta {
        &self.help.main
    }

    /// Iterate over all topic or workflow help nodes declared by the skill.
    /// 遍历当前 skill 声明的全部 topic 或 workflow 帮助节点。
    pub fn help_topics(&self) -> impl Iterator<Item = &SkillHelpNodeMeta> {
        self.help.topics.iter()
    }

    /// Find one help topic or workflow node by its declared name.
    /// 根据声明名称查找单个 help topic 或 workflow 节点。
    pub fn find_help_topic(&self, topic_name: &str) -> Option<&SkillHelpNodeMeta> {
        self.help_topics()
            .find(|topic| topic.name.trim() == topic_name)
    }

    /// Return all entries that reference one help topic/workflow name.
    /// 返回引用某个 help topic/workflow 名称的全部入口。
    pub fn entries_for_help_topic<'a>(
        &'a self,
        topic_name: &'a str,
    ) -> impl Iterator<Item = &'a SkillToolMeta> + 'a {
        self.entries()
            .filter(move |tool| tool.help.trim() == topic_name)
    }
}

impl SkillToolMeta {
    /// Resolve the final AI-facing input schema for one entry from inline schema, file, or legacy parameters.
    /// 基于内联 schema、外部文件或旧版参数,为单个入口解析最终面向 AI 的输入 schema。
    pub fn resolve_input_schema(&mut self, skill_dir: &Path) -> Result<(), String> {
        let entry_name = self.name.trim().to_string();
        let has_inline_input_schema = self.input_schema.is_some();
        let schema_file = self.input_schema_file.trim().to_string();
        if has_inline_input_schema && !schema_file.is_empty() {
            return Err(format!(
                "skill entry {} must not declare both input_schema and input_schema_file",
                entry_name
            ));
        }

        let resolved_input_schema = if !schema_file.is_empty() {
            load_entry_input_schema_file(skill_dir, &schema_file, &entry_name)?
        } else if let Some(schema) = self.input_schema.clone() {
            schema
        } else {
            build_entry_input_schema_from_parameters(&self.parameters)
        };

        validate_entry_input_schema_root(
            &resolved_input_schema,
            &format!("skill entry {} input_schema", entry_name),
        )?;

        if self.parameters.is_empty() {
            self.parameters = derive_legacy_parameters_from_input_schema(&resolved_input_schema);
        }
        self.input_schema = Some(resolved_input_schema);
        Ok(())
    }

    /// Return the resolved AI-facing input schema for one entry.
    /// 返回单个入口已解析完成、面向 AI 的输入 schema。
    pub fn resolved_input_schema(&self) -> &JsonValue {
        self.input_schema
            .as_ref()
            .expect("entry input schema must be resolved before use")
    }
}

#[cfg(test)]
mod tests {
    use super::{
        SkillMeta, SkillParam, build_entry_input_schema_from_parameters,
        derive_legacy_parameters_from_input_schema, is_valid_luaskills_identifier,
        validate_luaskills_identifier, validate_luaskills_version,
    };
    use serde_json::json;
    use std::fs;

    /// Build one unique temporary directory path for manifest tests.
    /// 为 manifest 测试构造单个唯一临时目录路径。
    fn make_manifest_test_dir(label: &str) -> std::path::PathBuf {
        let nonce = std::time::SystemTime::now()
            .duration_since(std::time::UNIX_EPOCH)
            .unwrap_or_default()
            .as_nanos();
        std::env::temp_dir().join(format!("luaskills_manifest_{label}_{nonce}"))
    }

    /// Verify that legal lowercase-hyphen identifiers are accepted.
    /// 验证合法的小写短横线标识符会被接受。
    #[test]
    fn valid_luaskills_identifiers_are_accepted() {
        assert!(is_valid_luaskills_identifier("vulcan-codekit"));
        assert!(is_valid_luaskills_identifier("codekit2"));
        assert!(is_valid_luaskills_identifier("vulcan-runtime-tools"));
    }

    /// Verify that invalid identifiers are rejected by both helper functions.
    /// 验证非法标识符会被两个辅助函数共同拒绝。
    #[test]
    fn invalid_luaskills_identifiers_are_rejected() {
        for candidate in [
            "",
            "2codekit",
            "Vulcan-codekit",
            "vulcan_codekit",
            "vulcan-codekit-",
            "__demo",
        ] {
            assert!(!is_valid_luaskills_identifier(candidate));
            assert!(validate_luaskills_identifier(candidate, "skill_id").is_err());
        }
    }

    /// Verify that semantic package versions are accepted only when they parse cleanly.
    /// 验证语义化包版本仅在可被正确解析时才会被接受。
    #[test]
    fn semantic_skill_versions_are_validated() {
        assert!(validate_luaskills_version("0.1.0", "version").is_ok());
        assert!(validate_luaskills_version("1.2.3-beta.1", "version").is_ok());
        assert!(validate_luaskills_version("", "version").is_err());
        assert!(validate_luaskills_version("v1.0.0", "version").is_err());
        assert!(validate_luaskills_version("1", "version").is_err());
    }

    /// Verify legacy flat parameters project into one object-style input schema.
    /// 验证旧版扁平参数会被投影为对象式输入 schema。
    #[test]
    fn legacy_parameters_project_to_input_schema() {
        let schema = build_entry_input_schema_from_parameters(&[
            SkillParam {
                name: "path".to_string(),
                param_type: "string".to_string(),
                description: "Absolute file path.".to_string(),
                required: true,
            },
            SkillParam {
                name: "recursive".to_string(),
                param_type: "boolean".to_string(),
                description: "Whether to recurse.".to_string(),
                required: false,
            },
        ]);

        assert_eq!(schema["type"], "object");
        assert_eq!(schema["properties"]["path"]["type"], "string");
        assert_eq!(schema["properties"]["recursive"]["type"], "boolean");
        assert_eq!(schema["required"], json!(["path"]));
    }

    /// Verify top-level schema properties can be projected back into legacy flat parameters.
    /// 验证顶层 schema 属性能够反向投影回旧版扁平参数。
    #[test]
    fn input_schema_projects_back_to_legacy_parameters() {
        let parameters = derive_legacy_parameters_from_input_schema(&json!({
            "type": "object",
            "properties": {
                "nodes": {
                    "type": "array",
                    "description": "Node selector list."
                },
                "strict": {
                    "type": "boolean",
                    "description": "Enable strict validation."
                }
            },
            "required": ["nodes"]
        }));

        assert_eq!(parameters.len(), 2);
        assert_eq!(parameters[0].name, "nodes");
        assert_eq!(parameters[0].param_type, "array");
        assert!(parameters[0].required);
        assert_eq!(parameters[1].name, "strict");
        assert_eq!(parameters[1].param_type, "boolean");
        assert!(!parameters[1].required);
    }

    /// Verify one external JSON Schema file becomes the resolved entry input schema.
    /// 验证单个外部 JSON Schema 文件会成为已解析的入口输入 schema。
    #[test]
    fn skill_meta_resolves_external_entry_input_schema_file() {
        let skill_dir = make_manifest_test_dir("schema_file");
        fs::create_dir_all(skill_dir.join("schemas")).expect("create schemas dir");
        fs::write(
            skill_dir.join("schemas").join("search.input.schema.json"),
            serde_json::to_string_pretty(&json!({
                "type": "object",
                "properties": {
                    "nodes": {
                        "type": "array",
                        "items": {
                            "type": "object",
                            "properties": {
                                "file": { "type": "string" },
                                "structural_path": { "type": "string" }
                            },
                            "required": ["file", "structural_path"]
                        }
                    }
                },
                "required": ["nodes"]
            }))
            .expect("serialize schema file"),
        )
        .expect("write schema file");

        let mut meta: SkillMeta = serde_yaml::from_str(
            r#"
name: demo-skill
version: 0.1.0
enable: true
entries:
  - name: search
    description: Demo search.
    lua_entry: runtime/search.lua
    lua_module: demo_search
    input_schema_file: schemas/search.input.schema.json
"#,
        )
        .expect("parse manifest");
        meta.bind_directory_skill_id("demo-skill".to_string());
        meta.resolve_entry_input_schemas(&skill_dir)
            .expect("resolve entry input schemas");

        let tool = meta
            .find_tool_by_local_name("search")
            .expect("search entry");
        assert_eq!(tool.resolved_input_schema()["type"], "object");
        assert_eq!(tool.resolved_input_schema()["required"], json!(["nodes"]));
        assert_eq!(tool.parameters.len(), 1);
        assert_eq!(tool.parameters[0].name, "nodes");
        assert_eq!(tool.parameters[0].param_type, "array");

        fs::remove_dir_all(&skill_dir).expect("cleanup schema file test dir");
    }

    /// Verify invalid root input schema types are rejected during resolution.
    /// 验证非法根输入 schema 类型会在解析阶段被拒绝。
    #[test]
    fn skill_meta_rejects_non_object_entry_input_schema() {
        let skill_dir = make_manifest_test_dir("invalid_schema");
        fs::create_dir_all(&skill_dir).expect("create invalid schema dir");

        let mut meta: SkillMeta = serde_yaml::from_str(
            r#"
name: demo-skill
version: 0.1.0
enable: true
entries:
  - name: search
    description: Demo search.
    lua_entry: runtime/search.lua
    lua_module: demo_search
    input_schema:
      type: array
"#,
        )
        .expect("parse invalid manifest");
        meta.bind_directory_skill_id("demo-skill".to_string());
        let error = meta
            .resolve_entry_input_schemas(&skill_dir)
            .expect_err("non-object root schema should fail");
        assert!(error.contains("input_schema.type must be \"object\""));

        fs::remove_dir_all(&skill_dir).expect("cleanup invalid schema dir");
    }
}