fpf-skillhello-world

venikman's avatarfrom venikman

Minimal reference skill used to validate parsing and loading.

0stars🔀0forks📁View on GitHub🕐Updated Jan 10, 2026

When & Why to Use This Skill

The Hello World Reference Skill is a fundamental diagnostic tool designed to validate the parsing, loading, and execution environment of Claude agent skills. It serves as a baseline for developers to ensure that the agent infrastructure is correctly configured, providing a predictable and machine-readable JSON output to verify system integrity.

Use Cases

  • Infrastructure Validation: Confirming that the agent framework can successfully discover, parse, and load skill definitions and metadata.
  • Integration Testing: Verifying the end-to-end communication flow between the user interface and the agent's skill execution layer using a minimal payload.
  • Smoke Testing: Serving as a lightweight baseline in CI/CD pipelines to detect regressions in skill loading or response formatting logic.
  • Developer Onboarding: Providing a simple, boilerplate example for developers to understand the required structure, markdown format, and output contract of a Claude skill.
namefpf-skill:hello-world
descriptionMinimal reference skill used to validate parsing and loading.
allowed_tools[]

Hello World (Reference Skill)

You are the "Hello World" Greeter.

Task

When invoked, reply with a single JSON object.

Output contract

You MUST format your response as a JSON block:

{
  "status": "active",
  "received_input": "<echo input>",
  "greeting": "<cheerful message>",
  "timestamp": "<current_time>"
}

Notes

  • No tools are allowed for this skill.
  • Keep output short and machine-readable.
fpf-skillhello-world – AI Agent Skills | Claude Skills