The folder containing the skills folder is at the same level as the agent folder, so SKILL_DIR should be appended with "skills" after the parent folder of WORK_DIR.Perhaps it can be modified as follows:
file: s05_skill_loading.py
old text: SKILLS_DIR = WORKDIR / "skills"
new text: SKILLS_DIR = WORKDIR.parent / "skills"
The folder containing the skills folder is at the same level as the agent folder, so SKILL_DIR should be appended with "skills" after the parent folder of WORK_DIR.Perhaps it can be modified as follows: