jasonharmongit/skills

jh-create-skill

Guides users through creating effective Agent Skills for Cursor.

First seen Jun 23, 2026

Installation

$ npx skills add jasonharmongit/skills --skill jh-create-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 jasonharmongit/skills · top by installs.

npx skills add jasonharmongit/skills

Browse all from jasonharmongit/skills

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

Skill metadata

Parsed from SKILL.md frontmatter.

More metadata
dependencies
writing-for-agents
dependents
refine-skill

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,857 B
  • docs SUMMARY.md 87 B

History

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

SKILL.md

Structure

File structure

skill-name/
├── SKILL.md
├── reference.md      # optional
├── examples.md       # optional
└── scripts/          # optional

Frontmatter

---
name: your-skill-name
description: Brief high-level description of what this skill does.
disable-model-invocation: true
metadata:
  dependencies: other-skill
  dependents: downstream-skill
---
  • name: kebab-case, max 64 chars, lowercase letters, numbers, hyphens only.
  • description: A single sentence giving a very high-level summary of what the skill does. Do not include specifics about how the skill works, when to invoke it, or trigger terms.
  • metadata:

- dependencies: skills this one tells the agent to read and follow (` skill-name skill , skill-name , or a link to skill-name/SKILL.md). Skill-to-skill only - not reference files, hooks, or sub-paths. - dependents: the reverse. Keep both sides in sync. - Comma-separated name` values. Omit empty fields. - Do not infer dependencies from artifact names or shared tooling unless the body explicitly names the skill.

Content

Read the writing-for-agents skill and follow it - this skill covers skill-specific mechanics only.

  • Do not include any kind of header. No title, no description, no starting section, no introduction, no preface.
  • List a skill in dependencies only when this body routes the agent through that skill's workflow; an isolated fact or rule stays inline here.
  • When a skill is listed, remove from this body any step or rule that dependency already owns - do not restate it.