myagent-ai 1.23.4 → 1.23.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/main.py +1 -1
- package/package.json +1 -1
package/main.py
CHANGED
|
@@ -453,7 +453,7 @@ class MyAgentApp:
|
|
|
453
453
|
skill_guides_dir.mkdir(parents=True, exist_ok=True)
|
|
454
454
|
|
|
455
455
|
# 扫描项目 skills/ 目录下的 SKILL.md
|
|
456
|
-
project_skills_dir = Path(__file__).parent
|
|
456
|
+
project_skills_dir = Path(__file__).parent / "skills"
|
|
457
457
|
if not project_skills_dir.exists():
|
|
458
458
|
self.logger.warning(f"skills 目录不存在: {project_skills_dir}")
|
|
459
459
|
return
|