10x-cli-setup
Installation
SKILL.md
10x-cli Setup
This skill sets up the @przeprogramowani/10x-cli on the user's machine. The core principle is simple: the README is the single source of truth. The CLI evolves — version requirements change, new install methods appear, commands get updated. Rather than hardcoding any of that here, this skill tells you how to work, and the README tells you what to do.
Step 1: Check if the CLI is already installed
Before anything else, check the current state:
10x --version 2>/dev/null || echo "NOT_INSTALLED"
- If a version is printed, the CLI is already installed. Tell the user and ask if they want to update, reconfigure, or troubleshoot.
- If not installed, proceed to Step 2.
This avoids wasting time on prerequisites when the user might just need a config change or re-auth.
Step 2: Fetch the latest README
Related skills