Skip to content

Commit 4c32c93

Browse files
committed
fix: change SKILL_SPACE_NAME to SKILL_SPACE_ID
1 parent 264e535 commit 4c32c93

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

veadk/tools/builtin_tools/execute_skills.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,12 +130,12 @@ def execute_skills(
130130
if skills:
131131
cmd.extend(["--skills"] + skills)
132132

133-
skill_space_name = os.getenv("SKILL_SPACE_NAME", "")
134-
if not skill_space_name:
135-
logger.warning("SKILL_SPACE_NAME environment variable is not set")
133+
skill_space_id = os.getenv("SKILL_SPACE_ID", "")
134+
if not skill_space_id:
135+
logger.warning("SKILL_SPACE_ID environment variable is not set")
136136

137137
env_vars = {
138-
"SKILL_SPACE_NAME": skill_space_name,
138+
"SKILL_SPACE_ID": skill_space_id,
139139
"TOOL_USER_SESSION_ID": tool_user_session_id,
140140
}
141141

0 commit comments

Comments
 (0)