example-command

Parse and execute user-invoked skill commands from SKILL.md layouts.

Updated Apr 13, 2026
One-click install
npx skills add https://github.com/Wizarck/eligia-skills --skill example-command-wizarck
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: example-command
Source: https://github.com/Wizarck/eligia-skills/tree/main/claude-plugins-official/plugins/example-plugin/skills/example-command
Command: npx skills add https://github.com/Wizarck/eligia-skills --skill example-command-wizarck

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It shows how to package a user-invoked skill so an AI can reliably accept arguments, follow approved tools, and return a focused result.

Core Features & Use Cases

  • Argument Handling: Reads the arguments passed by the user and uses them as the input to the workflow.
  • Tool-Gated Execution: Demonstrates how a skill can restrict itself to approved tools for safer, more predictable behavior.
  • Format Reference: Serves as a working example of the skills/<name>/SKILL.md layout, including frontmatter options such as argument hints and model overrides.

Quick Start

Invoke this skill with the required arguments so it can parse the input, use the approved tools, and report the result back to you.

Frequently Asked Questions about example-command

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

FAQPage Schema
How do I parse arguments for a slash-command skill?

To parse arguments for a slash-command skill, the system reads user-passed inputs from the skills/<name>/SKILL.md layout and applies them as the initial data for the workflow execution.

What is tool-gated execution in skill workflows?

Tool-gated execution restricts a skill workflow to only use approved tools defined in the frontmatter contract, ensuring safer and more predictable behavior during command processing.

How do I structure frontmatter metadata for a custom slash-command?

Frontmatter metadata for a custom slash-command requires defining the skills/<name>/SKILL.md layout, including specific options like argument hints and model overrides to configure execution.

Can I restrict an AI skill to only use approved tools?

Yes, you can restrict an AI skill to approved tools by implementing an allowed-tools contract within the skill format, which enforces tool-gated execution for safer operations.

Why does my slash-command skill return an error when parsing user inputs?

A slash-command skill returns parsing errors when the provided arguments do not match the expected input format or if the execution violates the allowed-tools contract defined in the frontmatter.