hello-world

Scaffold new skills with a standardized folder structure and SKILL.md frontmatter.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/gabrielwithappy/agent-starter --skill hello-world-gabrielwithappy
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: hello-world
Source: https://github.com/gabrielwithappy/agent-starter/tree/main/.github/skills/hello-world
Command: npx skills add https://github.com/gabrielwithappy/agent-starter --skill hello-world-gabrielwithappy

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This skill provides a minimal, well-structured template to help developers bootstrap new skills quickly, ensuring consistent documentation and folder layout.

Core Features & Use Cases

  • Demonstrates required directory structure (root SKILL.md with name/description; scripts/hello.py) and how to reference resources.
  • Serves as a reference skeleton for creating new skills and validating frontmatter and usage patterns.
  • Use Case: A developer creates a new skill by copying this skeleton and updating the frontmatter and scripts accordingly.

Quick Start

Run the Python script at scripts/hello.py by passing your message as a command-line argument to print it back.

Frequently Asked Questions about hello-world

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

FAQPage Schema
How do I scaffold a new Python skill with the correct folder structure?

To scaffold a new Python skill, use a ready-made template that provides a standardized folder structure, including a root SKILL.md and a scripts directory, enabling quick bootstrapping and consistent documentation for developers.

What is the required directory structure for creating a skill?

The required directory structure for creating a skill includes a root SKILL.md file with name and description, an optional scripts directory for Python files, and references or assets directories, ensuring proper layout for discovery and validation.

How do I validate YAML frontmatter when building a skill template?

You validate YAML frontmatter when building a skill template by ensuring the SKILL.md file contains the required name and description fields, which enables proper parsing and discovery during the skill creation process.

Can I use this skill scaffold to bootstrap a team's standardized skill creation process?

Yes, you can use this skill scaffold to bootstrap a team's standardized skill creation process. It provides a minimal, well-structured template that ensures consistent documentation, folder layout, and metadata validation across multiple new skills.

What is the best way to reference resources in a Python skill skeleton?

The best way to reference resources in a Python skill skeleton is to place them in the optional references or assets directories alongside the scripts folder, ensuring standardized paths and easy access within the SKILL.md documentation.

Does the skill template require any external dependencies to run the Python scripts?

No, the skill template does not require any external dependencies to run the Python scripts. It provides a minimal, self-contained scaffold with a scripts/hello.py file that can be executed directly by passing a command-line argument.