Simplest example, one-line execution
python hello_world.pyExecute skills directly without LLM
python direct_execution.pyView tool definitions in different formats (Claude vs OpenAI)
python tool_definitions.pyfrom skilllite import chat
result = chat("Your request", skills_dir=".skills")
print(result)from skilllite import run_skill
result = run_skill("./.skills/calculator", '{"operation": "add", "a": 15, "b": 27}')
print(result["text"])如需 LangChain 集成,请使用
pip install langchain-skilllite,参见 04. LangChain Integration。