vm0-ai / cli-design
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/cli-design && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/4250" && unzip -o skill.zip -d .claude/skills/cli-design && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/cli-design/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Design patterns and conventions for the vm0 CLI user experience
0 views
0 installs
Skill Content
--- name: cli-design description: Design patterns and conventions for the vm0 CLI user experience context: fork --- # CLI Design Skill Use this skill when writing new CLI commands, reviewing CLI code, or fixing inconsistencies. ## Documentation Read the CLI design guideline: [docs/cli-design-guideline.md](../../../docs/cli-design-guideline.md) ## Key Principles 1. **Atomic Command** — each command does one operation, agents compose them freely 2. **TTY & Non-TTY** — every command works in both interactive and programmatic modes 3. **Guided Flow** — output always guides to the next action (success → next step, error → remediation, empty → creation)