CLI for installing and managing methods — reusable workflows for AI coding agents.
A method is a packaged workflow that an AI agent (like Claude Code) can use. Methods are stored in a registry and installed locally via their unique slug.
npx mthds install <slug>The CLI will:
- Look up the method in the registry
- Ask which AI agent to install it for (Claude Code, with more coming soon)
- Ask where to install — local (current project) or global (your machine)
- Optionally install the pipelex software runtime
- Write the method to
.claude/methods/<slug>/METHOD.mthds
| Location | Path |
|---|---|
| Local | <cwd>/.claude/methods/<slug>/ |
| Global | ~/.claude/methods/<slug>/ |
npx mthds setup software pipelexInstalls uv and pipelex so methods that depend on them can run.
Anonymous usage data (method slug + timestamp) is collected to help rank methods on the leaderboard. No personal or device information is collected.
To opt out:
DISABLE_TELEMETRY=1 npx mthds install <slug>make install # install dependencies
make check # typecheck + build
make dev # watch mode
make run # build and run the CLI
make pack # create tarball for local npx testingMIT