hello-world

Return a deterministic greeting to validate SkillHarness invocation.

14|1|Updated Mar 6, 2026
One-click install
npx skills add https://github.com/XAIHT/Tlamatini --skill hello-world-xaiht
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: hello-world
Source: https://github.com/XAIHT/Tlamatini/tree/main/Tlamatini/agent/skills_pkg/hello_world
Command: npx skills add https://github.com/XAIHT/Tlamatini --skill hello-world-xaiht

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This smoke-test skill echoes its inputs to confirm the SkillHarness pipeline is wired end-to-end and functioning, providing a safe gate for onboarding more complex skills.

Core Features & Use Cases

  • Accepts an optional who input (default: "world") and returns a deterministic greeting.
  • No side effects, no file I/O, and no network access to keep it safe for quick validation.
  • Use case: CI or local development can run this skill to verify end-to-end invocation before enabling other capabilities.

Quick Start

Invoke the skill with an optional who input to receive a greeting payload.

Frequently Asked Questions about hello-world

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
What is a smoke test for verifying skill invocation in a development pipeline?

A smoke test for skill invocation validates end-to-end pipeline wiring by returning a deterministic greeting, confirming the execution path functions correctly before enabling complex capabilities.

How do I verify SkillHarness wiring returns the correct inputs and outputs?

Verify SkillHarness wiring by invoking the skill with an optional input parameter; it echoes a deterministic greeting payload to confirm the pipeline satisfies non-side-effect execution requirements.

Does this greeting skill require network access or file I/O to run?

No, this greeting skill requires no network access, file I/O, or side effects, making it completely safe for quick validation in local development and CI environments.

Can I use this smoke test skill in CI pipelines for local development validation?

Yes, CI pipelines and local development environments can run this smoke test skill to verify end-to-end invocation safely before onboarding more complex, side-effect-producing skills.

Why use a basic echo test instead of a full integration test for skill onboarding?

An echo test isolates pipeline wiring validation from business logic, providing a safe gate to confirm invocation works before introducing complex, side-effect-prone skills into the environment.

What are the limitations of using a hello-world greeting for pipeline testing?

This greeting test only validates invocation wiring and input echo; it does not test file I/O, network access, or complex processing logic, serving strictly as a basic onboarding gate.