# Motlin Claude Code Plugins CLI

> CLI Guidelines

- Skill: `tomevault-io/motlin-claude-code-plugins-cli` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/motlin-claude-code-plugins-cli`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/motlin-claude-code-plugins-cli/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/motlin-claude-code-plugins-cli

---


# CLI Guidelines

## Directory Navigation

- I replaced `cd` with `zoxide`. Use `command cd` to change directories
    - This is the only command that needs to be prefixed with `command`
    - Don't prefix `git` with `command git`
- Try not to use `cd` or `zoxide` at all. It's usually not necessary with CLI commands
    - Don't run `cd <dir> && git <subcommand>`
    - Prefer `git -C <dir> <subcommand>`

## Flag Names

Prefer long flag names when available:

- Don't run `git commit -m`
- Run `git commit --message` instead

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/motlin) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-11 -->

