hello-world

Export greet(name) and add(a,b) functions for greeting and arithmetic.

1|Updated Feb 6, 2026
One-click install
npx skills add https://github.com/britrik/skill-vettr --skill hello-world-britrik
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: hello-world
Source: https://github.com/britrik/skill-vettr/tree/main/publish-skill-vettr/test/fixtures/safe-skill
Command: npx skills add https://github.com/britrik/skill-vettr --skill hello-world-britrik

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Provides a minimal, ready-to-use greeting function to reduce boilerplate when starting new interactions.

Core Features & Use Cases

  • Greet: Exposes greet(name) to generate a friendly greeting.
  • Utility: Includes a small add(a, b) helper for basic arithmetic demonstrations.
  • Use Case: Ideal for demos, onboarding chats, and templates that require a basic greeting interaction.

Quick Start

Call greet with a user-provided name to receive a friendly greeting.

Frequently Asked Questions about hello-world

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

FAQPage Schema
How do I add a simple greeting function to a TypeScript onboarding dialog?

To add a greeting function to a TypeScript onboarding dialog, use the exported greet(name) utility which returns a personalized hello-world message for friendly initial interactions.

What is a minimal dependency footprint for a chatbot demo utility in TypeScript?

A minimal dependency footprint for a TypeScript chatbot demo utility means having zero external dependencies, ensuring the greeting and arithmetic functions run without package installation overhead.

How do I generate a personalized greeting for a new user during a chatbot demo?

To generate a personalized greeting for a chatbot demo, call greet(name) with the user's name string to receive a friendly initial interaction message without writing boilerplate code.

Can I use this hello-world utility for basic arithmetic demonstrations in TypeScript?

Yes, you can use this hello-world utility for basic arithmetic demonstrations in TypeScript by calling the included add(a, b) helper function alongside the primary greeting utility.

Does the greet function work without external dependencies in a TypeScript template?

Yes, the greet function works without external dependencies in a TypeScript template, as declared in package.json, making it ideal for reducing boilerplate in new interaction setups.