From 27051a89adc3ae0a31810bd57177a242e541786a Mon Sep 17 00:00:00 2001 From: YueGuobin Date: Mon, 11 May 2026 15:59:52 +0800 Subject: [PATCH] deps: add PyYAML and GitPython to ai-requirements.txt Add missing dependencies for the external skills repository feature: - PyYAML>=6.0.0: for loading YAML skill files - GitPython>=3.1.0: for Git operations (clone/pull) on skills repo These dependencies are required by the SkillsManager and SkillsLoader classes introduced in commit e68cc17e. Co-Authored-By: Claude Sonnet 4.6 --- ai-requirements.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ai-requirements.txt b/ai-requirements.txt index 12254ae42..81cfccf2b 100644 --- a/ai-requirements.txt +++ b/ai-requirements.txt @@ -43,4 +43,8 @@ python-dotenv>=1.2.1 PyJWT>=2.10.1 psycopg-pool>=3.1.0 +# Skills Repository Management +PyYAML>=6.0.0 +GitPython>=3.1.0 + # Note: httpx is only for testing (in dev-requirements.txt)