making the interactions with LLMs more intuitive and error-tolerant. For instance, rather than simply returning a boolean value, a skill might explain in natural language what happened during its execution, enabling the LLM to better understand the context and correct course if necessary. ...
Ensure that dev dependancies are installed before doing this. Go to project root mkdir docs cd docs sphinx-quickstart Modify/add to docs/conf.py the following: import os import sys sys.path.insert(0, os.path.abspath('..')) extensions = ['sphinx.ext.autodoc', 'sphinx.ext.napoleon'] ht...