Install the /cli skill

Zero token cost until you invoke the skill.

curl -fsSL https://doesitcli.com/install | sh

1. Use

Type /cli followed by your question in any session:

/cli does Figma have a CLI?

/cli find me a CLI to manage docker on macOS

/cli install the Stripe CLI and set up webhook forwarding

The agent fetches our index lazily on first use — zero token cost until you actually invoke /cli.

2. How it works

A four-step decision tree. The agent only fetches what it needs.

  1. 1.
    Discover

    Fetch /llms.txt (~1.3k tok) — index of every app by category.

  2. 2.
    Match

    Narrow by category: fetch /llms-{category}.txt (~0.2k tok) for just that category with install commands.

  3. 3.
    Act

    Fetch /<slug>.md (~0.3k tok) for the chosen app — install commands, skills, and agent prompt.

  4. 4.
    Stay honest

    Never invent commands. If we don't list it, the agent says so.

3. Endpoints

Endpoint Format When to use
/llms.txtmd (~1.3k tok)Index by category
/llms-{category}.txtmd (~0.2k tok)One category (e.g. /llms-coding.txt)
/llms-full.txtmd (~11k tok)Full corpus
/<slug>.mdmd (~0.3k tok)Single app detail
/<slug>.jsonJSONProgrammatic access
/installshellOne-line skill installer
/agent-prompttext (~0.1k tok)Decision tree