rockclaver/systemcraft

write-a-skill

Creates new agent skills with proper structure, progressive disclosure, and bundled resources. Use when the user wants to create, write, or build a new skill.

First seen Apr 1, 2026

Installation

$ npx skills add rockclaver/systemcraft --skill write-a-skill

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from rockclaver/systemcraft · top by installs.

npx skills add rockclaver/systemcraft

Browse all from rockclaver/systemcraft

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,630 B
  • docs SUMMARY.md 179 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 19 installs

SKILL.md

Writing Skills

Process

  • Task/domain, use cases, scripts vs. instructions, ref.
  • Draft SKILL.md; split extra files past 55 lines; add scripts for deterministic ops.
  • Review with the user; iterate.

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

SKILL.md Template

---
name: skill-name
description: Brief description of capability. Use when [specific triggers].
---

# Skill Name

## Quick start

[Minimal working example]

## Workflows

[Step-by-step processes with checklists for complex tasks]

## Advanced features

[Link to separate files: See [REFERENCE.md](REFERENCE.md)]

Description

Third person; what it does, then "Use when [triggers]"; ≤240 chars.

Good:

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.

Bad: Helps with documents. — indistinguishable from others.

Review Checklist

  • Description includes triggers ("Use when...") and is ≤240 chars
  • SKILL.md body is ≤55 lines
  • No time-sensitive info
  • Consistent terminology
  • Concrete examples included
  • References one level deep