Syntic

Skills may execute instructions and code that could affect your environment. Marketplace scans reduce risk but do not guarantee safety. Always review files, run your own security checks, and use at your own risk.

EngineeringFree Safe

write-a-skill

Security Scan Summary

Status: Safe

Source: Syntic Skills registry

Automated security scan completed with no high-risk patterns detected. Manual review is still required.

About This Skill

Use when creating new agent skills with proper structure, progressive disclosure, and bundled resources.

Downloadable SKILL.md

Download SKILL.md and place it in your Syntic skills folder. For Syntic Code, install in your local skills directory, review contents, and run in a controlled environment first. Acknowledge the risk notice above to enable the download.

SKILL.md
---
name: write-a-skill
description: Use when creating new agent skills with proper structure, progressive disclosure, and bundled resources.
category: Engineering
version: 1.0.0
tools: []
---

# Writing Skills

Derived from Matt Pocock's write-a-skill methodology (MIT). Author skills with concise instructions, progressive disclosure, and bundled utility scripts.

## Process

1. **Gather requirements:**
   - What task/domain does the skill cover?
   - What specific use cases should it handle?
   - Does it need executable scripts or just instructions?
   - Any reference materials to include?

2. **Draft the skill** with concise instructions and any required utility scripts or reference files.

3. **Review with user** and iterate until it covers their use cases and is clear.

## Skill Structure

```
skill-name/
├── SKILL.md           # Main instructions (required)
├── REFERENCE.md       # Detailed docs (if needed)
├── EXAMPLES.md        # Usage examples (if needed)
└── scripts/           # Utility scripts (if needed)
    └── helper.js
```

## Description Requirements

The description is the only thing an agent sees when deciding which skill to load. Give the agent just enough info to know: (1) what capability this skill provides, (2) when/why to trigger it (specific keywords, contexts, file types).

**Format:** Max 1024 chars, third person, first sentence = what it does, second sentence = "Use when [specific triggers]"

**Good example:** "Extract text and tables from PDF files, fill forms, merge documents. Use when working with PDF files or when user mentions PDFs, forms, or document extraction."

## When to Add Scripts

Add utility scripts when: operation is deterministic (validation, formatting), same code would be generated repeatedly, or errors need explicit handling.

## When to Split Files

Split into separate files when: SKILL.md exceeds 100 lines, content has distinct domains, or advanced features are rarely needed.

## Review Checklist

After drafting, verify: Description includes triggers ("Use when..."), SKILL.md under 100 lines, no time-sensitive info, consistent terminology, concrete examples included, references one level deep.

Bundle Download

Includes SKILL.md and bundled support files where provided. Risk acknowledgement is required.

Install Targets

Syntic App

  1. 1. Create a dedicated folder for this skill in your local skills library.
  2. 2. Place SKILL.md into that folder.
  3. 3. Restart Syntic and invoke this skill on matching tasks.

Syntic Code (CLI)

  1. 1. Save SKILL.md in your local Syntic Code skills directory.
  2. 2. Keep related files in the same skill folder.
  3. 3. Run in a safe environment and validate outputs.

Source

https://github.com/alirezarezvani/claude-skills/blob/main/engineering/write-a-skill/skills/write-a-skill/SKILL.md

Open Source Link
Engineering

Related Skills