From 60d66c2f8d1b52527dfde26da3dccca34d573b41 Mon Sep 17 00:00:00 2001 From: bochencwx Date: Fri, 26 Jun 2026 16:14:50 +0800 Subject: [PATCH] =?UTF-8?q?bugfix:=20=E4=BF=AE=E5=A4=8D=20skill=5Frun=5Fen?= =?UTF-8?q?v=20=E8=B0=83=E7=94=A8=E7=AD=BE=E5=90=8D=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E5=AF=BC=E8=87=B4=20skill=20=E7=8E=AF=E5=A2=83=E5=8F=98?= =?UTF-8?q?=E9=87=8F=E6=B3=A8=E5=85=A5=E9=9D=99=E9=BB=98=E5=A4=B1=E6=95=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- trpc_agent_sdk/skills/tools/_skill_run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trpc_agent_sdk/skills/tools/_skill_run.py b/trpc_agent_sdk/skills/tools/_skill_run.py index ca106c6..7b148e8 100644 --- a/trpc_agent_sdk/skills/tools/_skill_run.py +++ b/trpc_agent_sdk/skills/tools/_skill_run.py @@ -770,7 +770,7 @@ async def _run_program( # Inject skill-specific env from repository (e.g. api_key → primary_env) repository = self._get_repository(ctx) try: - skill_env: dict[str, str] = repository.skill_run_env(ctx, input_data.skill) + skill_env: dict[str, str] = repository.skill_run_env(input_data.skill) for k, v in skill_env.items(): k = k.strip() if not k or not v.strip():