Custom agent skills, rule files, and instruction files, packaged so the repo can be used directly with npx skills add ....
z2h/
├── skills/ # installable skills
├── rules/ # optional shared rule files
├── instructions/ # optional .instructions.md files
├── plugins/
│ └── z2h-custom/ # plugin metadata for marketplace-style installs
├── .agents/plugins/marketplace.json
├── scripts/
│ ├── build-catalog.py
│ ├── export-plugin.py
│ ├── generate-vscode-settings.sh
│ └── install-skill.sh
└── catalog.json
Install all bundled skills from GitHub:
npx skills add yiliu30/z2hList what the repo exposes:
npx skills add yiliu30/z2h --listInstall from a local checkout:
npx skills add .| Skill | What It Does |
|---|---|
example-skill |
Template skill you can copy when creating a new skill. |
find-sth |
Investigates technical questions across code, docs, papers, and other sources, then writes a sourced findings document. |
observe |
Records structured observations from another Claude Code session and bails early when there is nothing meaningful to record. |
real-review |
Fact-checks written content against primary evidence before publishing. |
reduce-model |
Creates a reduced HuggingFace model for faster testing and debugging workflows. |
make help
make list
make catalog
make plugin
make refresh| Command | Description |
|---|---|
make list |
List bundled skills |
make install SKILL=<name> TARGET=<dir> |
Copy one skill into a target directory |
make catalog |
Rebuild catalog.json from skills/ |
make plugin |
Rebuild plugin marketplace metadata |
make refresh |
Rebuild both catalog and plugin metadata |
make settings |
Generate VS Code settings snippets |
Generate a settings snippet:
make settingsExpected paths:
- Copy the template:
cp -r skills/example-skill skills/my-new-skill- Edit
skills/my-new-skill/SKILL.md. - Run
make refresh.
catalog.json is generated from skills/ and records:
- skill name
- description
- repo-relative path
- whether the skill includes extra assets
The repo is licensed under MIT.