Skip to content

Commit 86fa1ec

Browse files
RoyLinRoyLin
authored andcommitted
feat(node-sdk): v1.4.5 - Add tool skill kind support
- Add SkillKind::Tool mapping in skill info conversion - Update version to 1.4.5 to align with Python SDK - Node.js SDK already had skill_dirs support, now adds tool kind This brings Node.js SDK feature parity with Python SDK v1.4.5
1 parent 72fb787 commit 86fa1ec

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

sdk/node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "a3s-code-node"
3-
version = "1.4.4"
3+
version = "1.4.5"
44
edition = "2021"
55
authors = ["A3S Lab Team"]
66
license = "MIT"

sdk/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@a3s-lab/code",
3-
"version": "1.4.4",
3+
"version": "1.4.5",
44
"description": "A3S Code - Native AI coding agent library for Node.js",
55
"main": "index.js",
66
"types": "index.d.ts",

sdk/node/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2611,6 +2611,7 @@ pub fn builtin_skills() -> Vec<SkillInfo> {
26112611
kind: match s.kind {
26122612
RustSkillKind::Instruction => "instruction".to_string(),
26132613
RustSkillKind::Persona => "persona".to_string(),
2614+
RustSkillKind::Tool => "tool".to_string(),
26142615
},
26152616
})
26162617
.collect()

0 commit comments

Comments
 (0)