SKILL.md
$28
Retrieve the current README from GitHub — this is the authoritative source for all install steps, prerequisites, commands, and tool configurations:
URL: https://raw.githubusercontent.com/przeprogramowani/10x-cli/refs/heads/master/README.md
Use WebFetch or curl -sL to get it. If the fetch fails, tell the user and stop — don't guess at install steps from memory, because they may be outdated.
Step 3: Build a plan from the README and execute it
Read the fetched README and construct a step-by-step setup plan from it. The README contains everything needed: prerequisites, install commands, auth flow, available commands, and tool-specific configuration. Your job is to translate the README into actionable steps for the user's specific situation.
The general flow from the README is:
- Prerequisites — whatever the README says is required (runtime version, package manager, etc.). Check each one and stop if something is missing.
- Install — use the install method described in the README. Verify it worked.
- Authenticate — the README describes the auth command and flow. Note: auth is interactive (magic-link email), so the user may need to run it themselves via
! 10x authif the shell doesn't support input.
- Verify — the README lists a diagnostic command. Run it and review the output with the user.
- Explore — show the user how to browse and fetch content using the commands from the README.
- Tool configuration — if the user mentioned a specific AI tool (Claude Code, Cursor, etc.), use the README's multi-tool support section to configure it. If not, explain the options and let them choose.
Do not hardcode specific version numbers, command flags, or directory paths — read them from the README. This way the skill stays correct even when the CLI changes.
Important principles
- README over memory. If you think you know a command or requirement, but the fetched README says something different, follow the README. Always.
- Check before installing. Step 1 exists for a reason — don't reinstall what's already there.
- Be interactive. Confirm with the user before installing global packages or modifying their system. Ask before running
sudo.
- Diagnose before fixing. If something fails, read the error and the README's guidance before suggesting a fix. Don't just retry blindly.
- Stay focused on end-user setup. This skill is about installing and configuring the published CLI package, not about development/contributing workflows.