Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/skills-tool/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import {
} from "bash-tool";

// Discover skills and get files
const { loadSkill, skills, files, instructions } = await createSkillTool({
const { skill, skills, files, instructions } = await createSkillTool({
skillsDirectory: "./skills",
});

Expand All @@ -50,7 +50,7 @@ const { tools } = await createBashTool({
const agent = new ToolLoopAgent({
model: "anthropic/claude-haiku-4.5",
tools: {
loadSkill,
skill,
bash: tools.bash,
},
});
Expand Down