Skip to content

Installation

Choose one installation path. They all expose the same skills/htma-measure content.

This is the most portable path. The command is npx skills—plural.

List the skills found in the repository without installing:

Terminal window
npx skills add thatguysam/skills --list

Install only HTMA Measure into the current project:

Terminal window
npx skills add thatguysam/skills --skill htma-measure

Install non-interactively for Codex:

Terminal window
npx skills add thatguysam/skills \
--skill htma-measure \
--agent codex \
--yes

Install globally instead of in one project:

Terminal window
npx skills add thatguysam/skills \
--skill htma-measure \
--agent codex \
--global \
--yes

A project-scoped Codex install lands at:

.agents/skills/htma-measure/

To disable the Skills CLI’s anonymous telemetry for an install:

Terminal window
DISABLE_TELEMETRY=1 npx skills add thatguysam/skills \
--skill htma-measure \
--agent codex \
--yes

Register the public marketplace, then install the plugin:

Terminal window
codex plugin marketplace add thatguysam/skills
codex plugin add htma-measure@thatguysam-skills

Verify that it is installed and enabled:

Terminal window
codex plugin list --json

The plugin reports its version and marketplace source. Release 0.1.1 installs without additional authentication because the repository is public.

Add the marketplace and install the plugin:

Terminal window
claude plugin marketplace add thatguysam/skills
claude plugin install htma-measure@thatguysam-skills

Verify the installation:

Terminal window
claude plugin list --json

The marketplace uses a same-repository relative source. Claude clones the public marketplace over HTTPS and copies the plugin from that checkout, so installing it does not require a GitHub SSH key.

Clone the repository:

Terminal window
git clone https://github.com/ThatGuySam/skills.git

Copy the skill directory into the location your agent discovers:

Terminal window
mkdir -p .agents/skills
cp -R skills/skills/htma-measure .agents/skills/htma-measure

The first skills in that copy command is the cloned repository directory. If you already changed into the repository, use:

Terminal window
cp -R skills/htma-measure /path/to/project/.agents/skills/htma-measure

A complete installation contains:

htma-measure/
├── SKILL.md
├── agents/openai.yaml
├── assets/measurement-brief-template.md
└── references/
├── local-paid-quote-adjustment.md
├── method-map.md
└── output-rubric.md

Next: run your first measurement.