cliany-sitelisted
Install: claude install-skill pearjelly/cliany.site
# cliany-site Skill
Use this skill when the user wants to automate web workflows into callable CLI commands using cliany-site.
cliany-site converts any web workflow into an executable CLI command. It connects to Chrome via CDP, captures page accessibility trees (AXTree), uses an LLM to plan actions, and generates Python/Click command-line adapters.
## When to Use
- User wants to automate a web workflow (form submission, search, navigation, etc.)
- User wants to turn a web operation into a repeatable CLI command
- User wants to check if cliany-site environment is ready
- User wants to manage web sessions or login states
- User wants to list or run previously generated adapters
- User mentions "cliany-site", "web automation", "CDP", "browser CLI", or "web CLI"
## Prerequisites
Before using cliany-site, verify the environment:
1. **Python 3.11+** with `cliany-site` installed
2. **Chrome** with CDP enabled (auto-managed or manual `--remote-debugging-port=9222`)
3. **LLM API Key** — at least one of:
- `CLIANY_ANTHROPIC_API_KEY` (recommended)
- `CLIANY_OPENAI_API_KEY`
- Legacy `ANTHROPIC_API_KEY` (still supported)
Run the doctor command to verify all prerequisites:
```bash
cliany-site doctor --json
```
Expected output on success:
```json
{
"success": true,
"data": {"cdp": true, "llm": true, "adapters_dir": "/Users/you/.cliany-site/adapters"},
"error": null
}
```
## Installation
```bash
# Clone and install
git clone https://github.com/pearjelly/cliany.site