Personal Claude Code skills marketplace by devmarkpro.
All skills are prefixed with mk- and follow the Agent Skills specification.
agent-tools/
├── .claude-plugin/
│ └── marketplace.json # Plugin registry
├── scripts/
│ ├── lint-skills.sh # Validate SKILL.md format
│ └── check-version-bump.sh # Detect missing version bumps
├── skills/
│ └── mk-<skill-name>/
│ ├── SKILL.md # Skill definition (<500 lines)
│ └── references/ # Optional supporting docs
├── CONTRIBUTING.md
├── SKILL_TEMPLATE.md
└── README.md
claude plugin marketplace add git@github.com:devmarkpro/mk-agent-tools.git
claude plugin install mk-skills@mk-agent-skillsAdd the plugin entry to your ~/.claude/settings.json:
{
"plugins": [
"git@github.com:devmarkpro/mk-agent-tools.git"
]
}git clone git@github.com:devmarkpro/mk-agent-tools.git
ln -s ~/mk-agent-tools/skills/mk-<skill-name> ~/.claude/skills/mk-<skill-name>| Skill | Description | Tags |
|---|---|---|
| mk-skill-creator | Dual-mode skill factory: create new skills from natural language or audit existing skills against SKILL_SCHEMA v2.0 | swe, tooling, devex, planning |
| mk-humanizer | Remove AI writing patterns from text with focus on technical writing and diagram-as-code | writing, docs, code-review, devex |
| mk-conventional-commits | Write git commit messages following the Conventional Commits v1.0.0 spec | git, swe, devex |
| mk-adr | Create, query, manage, and maintain Architecture Decision Records using the Nygard template | docs, swe, planning, devex |
- Copy
SKILL_TEMPLATE.mdtoskills/mk-<name>/SKILL.md - Fill in frontmatter and content
- Add optional
references/directory for supporting docs - Register in
.claude-plugin/marketplace.json - Run
./scripts/lint-skills.shto validate - Open a PR
---
name: mk-my-skill
description: One-line summary of what this skill does
metadata:
tags:
- relevant-tag
author: devmarkpro
version: "1.0.0"
---See CONTRIBUTING.md for full format details and validation rules.
Skills follow the Agent Skills spec.