aif-hello-world

Responds with a greeting to verify extension-provided skills work.

1.1k|96|Updated Feb 6, 2026
One-click install
npx skills add https://github.com/lee-to/ai-factory --skill aif-hello-world
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: aif-hello-world
Source: https://github.com/lee-to/ai-factory/tree/main/examples/extensions/aif-ext-hello/skills/aif-hello-world
Command: npx skills add https://github.com/lee-to/ai-factory --skill aif-hello-world

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It provides a minimal way to confirm that the AI Factory extension system correctly loads and invokes skills supplied by third-party extensions.

Core Features & Use Cases

  • Extension Verification: Confirms that skills bundled inside an extension are discovered and invocable by the AI agent.
  • Greeting Response: Replies with a friendly greeting when invoked, signaling the extension pipeline is functioning.
  • Use Case: After installing the aif-ext-hello extension, invoke the skill to check that extension-provided skills are registered before building more complex custom extensions.

Quick Start

Invoke the aif-hello-world skill or say hello to confirm the extension system is working.

Frequently Asked Questions about aif-hello-world

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

FAQPage Schema
How do I test an AI Factory extension skill?

Invoke the skill by name, such as /aif-hello-world, or simply say hello in your AI agent. A successful greeting response confirms the extension system loaded the skill correctly.

What is the aif-hello-world skill used for?

It is a demonstration skill bundled with the aif-ext-hello example extension. Its only purpose is to verify that extension-provided skills are discovered and executed by the AI agent.

Can I create my own extension skills for AI Factory?

Yes. Create a directory containing a SKILL.md file with name and description in the YAML frontmatter, plus instructions in the body. Place it in your extension's skills directory following the aif-ext-hello example structure.

Why is my extension skill not being invoked?

Check that the SKILL.md file exists at the skill directory root and contains valid YAML frontmatter with both name and description fields. Also confirm the extension is installed and registered with your AI agent configuration.