| name | hello-python | |||||||
|---|---|---|---|---|---|---|---|---|
| description | Prints hello world using a Python script in a sub-directory. | |||||||
| metadata |
|
|||||||
| user-invocable | true |
When the user wants to run the hello world test:
- Use
python3to execute the script. - The script is located at:
{{skillDir}}/scripts/hello.py - Pass the user's name as an argument.
- "Run the hello python skill"
- "Greet Kanbo using the python script"
python3 {{skillDir}}/scripts/hello.py "{{name}}"
- Ensure that
{{skillDir}}is correctly resolved to the absolute path of the skill directory. - The script
hello.pyshould be placed in thescriptssub-directory within the skill directory.