agentsclimarketplace

Patronum dev setup

Skill emaarco/hogwarts/plugins/agento-patronum/.claude/skills/patronum-dev-setup

Set up the agento-patronum development environment. Check prerequisites, install docs dependencies, validate plugin structure.From its SKILL.md

Install
npx -y skills add emaarco/hogwarts --skill patronum-dev-setup

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.4 KB, 312 tokens by cl100k_base, as published. Nobody here has run it

Skill: patronum-dev-setup

Set up the local development environment for agento-patronum.

Steps

1. Check prerequisites

Verify the following tools are available:

which bash    # Required: shell scripts
which jq      # Required: JSON processing (CRITICAL)
which node    # Required: VitePress docs
which npm     # Required: VitePress docs

jq is critical — without it, the hook cannot function. If missing, provide install instructions:

# macOS
brew install jq

# Linux
apt install jq  # Debian/Ubuntu
yum install jq  # RHEL/CentOS

# WSL
apt install jq

If any tool is missing, tell the user how to install it and do not proceed.

2. Install docs dependencies

cd docs && npm install

3. Validate plugin structure

Run all validation checks:

# JSON validity
jq empty .claude-plugin/plugin.json
jq empty hooks/hooks.json
jq empty defaults/patronum.json

# Bash syntax
for f in scripts/patronum-*.sh; do
  bash -n "$f" && echo "$f OK"
done

4. Run self-test

CLAUDE_PLUGIN_ROOT="$(pwd)" bash scripts/patronum-verify.sh

5. Report

Summarize what was checked and whether everything passed.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,629. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.