Skip to content

Latest commit

 

History

History
83 lines (52 loc) · 1.63 KB

File metadata and controls

83 lines (52 loc) · 1.63 KB

Skill Template

Use this as a starting point for a new skill inside the platform folder that owns it.

Name

skill-name

Intent

Describe the user problem this skill solves and the result it should produce.

Trigger When

  • Situation 1
  • Situation 2
  • Situation 3

Do Not Use When

  • Nearby case that should use a different skill
  • Case where manual handling is better

Workflow

  1. Gather the minimum context needed to do the task well.
  2. Apply the repeatable process for the skill.
  3. Return the result in the expected format.
  4. Verify the result against the stated constraints.

Constraints

  • Do not fabricate missing facts.
  • Keep the workflow aligned with the real task.
  • Follow the rules of the platform that owns this skill.

Help Response

If the user is not sure how to use this skill or asks for examples:

  • explain what the skill can do in plain language
  • state the minimum useful input
  • show at least 2 realistic example prompts
  • offer the fastest next prompt the user can send

References

  • Related repo path or docs
  • Related standards or installation notes

Examples

Example 1

Input:

Replace with a realistic sample prompt or request.

Expected behavior:

  • Outcome 1
  • Outcome 2

Example 2

Input:

Replace with a second realistic sample prompt or request.

Expected behavior:

  • Outcome 1
  • Outcome 2

Validation Checklist

  • The skill matches the real files and workflow it depends on.
  • The skill handles a standard request correctly.
  • The skill refuses or redirects an out-of-scope request.