From 469e679de405332bb0705db5bc23d223b67dce7b Mon Sep 17 00:00:00 2001 From: Anas Khan <83116240+anxkhn@users.noreply.github.com> Date: Sun, 5 Jul 2026 11:29:22 +0530 Subject: [PATCH] docs: list bash in get_skill_tools Returns docstring get_skill_tools returns five tools (skills, read_file, write_file, edit_file, bash), but the Returns docstring only listed the first four, omitting the bash execution tool. Add bash so the docstring reflects the full toolset actually granted. Signed-off-by: Anas Khan <83116240+anxkhn@users.noreply.github.com> --- python/packages/kagent-openai/src/kagent/openai/tools/_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/packages/kagent-openai/src/kagent/openai/tools/_tools.py b/python/packages/kagent-openai/src/kagent/openai/tools/_tools.py index 7893389f5f..a554b38931 100644 --- a/python/packages/kagent-openai/src/kagent/openai/tools/_tools.py +++ b/python/packages/kagent-openai/src/kagent/openai/tools/_tools.py @@ -180,6 +180,6 @@ def get_skill_tools(skills_directory: str | Path = "/skills") -> list[FunctionTo skills_directory: Path to the directory containing skills. Returns: - A list of FunctionTool instances: skills tool, read_file, write_file, edit_file + A list of FunctionTool instances: skills tool, read_file, write_file, edit_file, and bash """ return [get_skill_tool(skills_directory), read_file, write_file, edit_file, bash]