pound

CLI

The pound CLI lets you manage your skills from the terminal.

pound signup

Connect your GitHub account and get an API key. Run this once after installing.

pound signup

Your API key is saved to ~/.pound/config.json.

pound upload

Publish a skill file. Pass --public to make it discoverable in the marketplace, or --private to keep it to yourself. The slug defaults to the filename — use --slug to override it.

pound upload my-skill.md --public
pound upload my-skill.md --private
pound upload my-skill.md --private --slug code-reviewer

pound all

List your skills. Accepts an optional filter.

pound all
pound all public
pound all private

pound search

Search the marketplace from the terminal.

pound search write better tests
pound search git workflow

pound get

Fetch a skill's raw content.

pound get code-reviewer
pound get otto/deploy-checklist

Next steps