bash-tool 1.3.8 → 1.3.10
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.
- package/README.md +2 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -191,7 +191,8 @@ const { skill, files, instructions } = await createSkillTool({
|
|
|
191
191
|
skillsDirectory: "./skills",
|
|
192
192
|
});
|
|
193
193
|
|
|
194
|
-
//
|
|
194
|
+
// Providing a bash tool with skills is optional if your skill only has a SKILL.md file
|
|
195
|
+
// and no further files and scripts.
|
|
195
196
|
const { tools } = await createBashTool({
|
|
196
197
|
files,
|
|
197
198
|
extraInstructions: instructions,
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.3.
|
|
6
|
+
"version": "1.3.10",
|
|
7
7
|
"description": "Generic bash tool for AI agents, compatible with AI SDK",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"main": "dist/index.js",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@types/node": "^22.10.0",
|
|
53
53
|
"@vercel/sandbox": "^1.2.0",
|
|
54
54
|
"ai": "^6.0.13",
|
|
55
|
-
"just-bash": "^2.
|
|
55
|
+
"just-bash": "^2.7.0",
|
|
56
56
|
"knip": "^5.80.0",
|
|
57
57
|
"typescript": "^5.7.0",
|
|
58
58
|
"vitest": "^2.1.0"
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"peerDependencies": {
|
|
61
61
|
"@vercel/sandbox": "*",
|
|
62
62
|
"ai": "^6.0.0",
|
|
63
|
-
"just-bash": "^2.
|
|
63
|
+
"just-bash": "^2.7.0"
|
|
64
64
|
},
|
|
65
65
|
"peerDependenciesMeta": {
|
|
66
66
|
"just-bash": {
|