Community skills marketplace for Claude Code
npx claudepluginhub micahyoung/agent-skillsParse, explore, and edit Gramps XML (.gramps) genealogy files. Use this skill whenever the user mentions a .gramps file, Gramps XML data, family trees, ancestry, genealogy research, lineage, ancestors, descendants, pedigree charts, or wants to look up relatives, trace family connections, or correct/update genealogical records.
A community skills marketplace for Claude Code. Browse and install skills to extend Claude Code with new capabilities.
/plugin marketplace add <repo-url>
/plugin marketplace search <query>
/plugin install <skill-name>
Each skill lives in its own directory under skills/:
skills/
└── your-skill/
├── .claude-plugin/
│ └── plugin.json
└── skills/
└── your-skill/
└── SKILL.md
Skills use the Agent Skills spec with YAML frontmatter:
---
name: your-skill
description: Short description of what the skill does
version: 1.0.0
---
# Your Skill
Instructions for Claude Code when this skill is activated.
Each skill needs a .claude-plugin/plugin.json that describes the plugin:
{
"name": "your-skill",
"description": "What your skill does",
"version": "1.0.0",
"skills": [
{
"name": "your-skill",
"path": "skills/your-skill/SKILL.md"
}
]
}
skills/SKILL.md and plugin.json