home / skills / ontos-ai / skills-evaluator / hello-world
This skill prints Hello World and demonstrates simple predefined output flow for quick validation and learning.
npx playbooks add skill ontos-ai/skills-evaluator --skill hello-worldReview the files below or copy the command above to add this skill to your agents.
---
name: Hello World
description: A simple skill that outputs 'Hello World'.
---
This skill demonstrates the basic functionality of outputting a predefined string. When activated, it will simply display "Hello World".
This skill is a minimal demonstration that outputs the text "Hello World" when invoked. It serves as a meta test and a baseline example to verify that the environment can load and execute a simple JavaScript skill. The implementation is intentionally small to focus on basic integration and behavior validation.
When triggered, the skill runs a straightforward JavaScript handler that returns the predefined string "Hello World". There is no external state, configuration, or side effects; the skill purely emits the static output. Use it to confirm that invocation, routing, and output rendering are working in your agent platform.
Does the skill require configuration or permissions?
No. It returns a static string and does not access external resources or require special permissions.
Can I extend this skill to perform other actions?
Yes. Use the same minimal handler structure as a starting point and add logic, inputs, or side effects as needed.