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.Discover
Fetch /llms.txt (~1.3k tok) — index of every app by category.
- 2.Match
Narrow by category: fetch
/llms-{category}.txt(~0.2k tok) for just that category with install commands. - 3.Act
Fetch
/<slug>.md(~0.3k tok) for the chosen app — install commands, skills, and agent prompt. - 4.Stay honest
Never invent commands. If we don't list it, the agent says so.
3. Endpoints
| Endpoint | Format | When to use |
|---|---|---|
| /llms.txt | md (~1.3k tok) | Index by category |
| /llms-{category}.txt | md (~0.2k tok) | One category (e.g. /llms-coding.txt) |
| /llms-full.txt | md (~11k tok) | Full corpus |
| /<slug>.md | md (~0.3k tok) | Single app detail |
| /<slug>.json | JSON | Programmatic access |
| /install | shell | One-line skill installer |
| /agent-prompt | text (~0.1k tok) | Decision tree |