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.
Files changed (2) hide show
  1. package/main.py +1 -1
  2. 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.parent / "skills"
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myagent-ai",
3
- "version": "1.23.4",
3
+ "version": "1.23.5",
4
4
  "description": "本地桌面端执行型AI助手 - Open Interpreter 风格 | Local Desktop Execution-Oriented AI Assistant",
5
5
  "main": "main.py",
6
6
  "bin": {