Skills template-skill

Reusable template for authoring new Agent Skills with clear triggers, workflow, and I/O contracts.

install
source · Clone the upstream repo
git clone https://github.com/NoizAI/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/NoizAI/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/template-skill" ~/.claude/skills/noizai-skills-template-skill && rm -rf "$T"
manifest: skills/template-skill/SKILL.md
source content

<skill-name>

简体中文 | English

One-line description of what this skill solves.

Triggers

  • trigger keyword 1
  • trigger keyword 2

Use Cases

  • Typical scenario 1
  • Typical scenario 2
  • Typical scenario 3

Inputs

  • Required inputs:
    • field_a
      : Description
    • field_b
      : Description
  • Optional inputs:
    • field_c
      : Description

Outputs

  • Success output format (example)
  • Failure output format (example)

Workflow

  1. Validate input completeness
  2. Build request parameters
  3. Execute core action
  4. Format outputs
  5. Provide retry or fallback strategy on failure

Limitations

  • Clearly define capability boundaries
  • Explain common failure causes

Examples

  • Input example:
    • ...
  • Output example:
    • ...