We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8815b01 commit b56c646Copy full SHA for b56c646
1 file changed
veadk/tools/skills_tools/register_skills_tool.py
@@ -68,7 +68,7 @@ def register_skills_tool(
68
try:
69
skill = frontmatter.load(str(skill_readme))
70
skill_name = skill.get("name", "")
71
- # skill_description = skill.get("description", "")
+ skill_description = skill.get("description", "")
72
except Exception as e:
73
logger.error(
74
f"Failed to get skill name and description from {skill_readme}: {e}"
@@ -146,6 +146,8 @@ def register_skills_tool(
146
]
147
148
request_body = {
149
+ "Name": skill_name,
150
+ "Description": skill_description,
151
"TosUrl": tos_url,
152
"SkillSpaces": skill_space_ids_list,
153
}
0 commit comments