← ClaudeAtlas

reflylisted

Base skill for Refly ecosystem: creates, discovers, and runs domain-specific skills bound to workflows. Routes user intent to matching domain skills via symlinks, delegates execution to Refly backend. Use when user asks to: create skills, run workflows, automate multi-step tasks, or manage pipelines. Triggers: refly, skill, workflow, run skill, create skill, automation, pipeline. Requires: @refly/cli installed and authenticated.
refly-ai/refly · ★ 7,330 · AI & Automation · score 78
Install: claude install-skill refly-ai/refly
# Refly ## Rules 1. **CLI only** - Use `refly <command>`, never call API directly. 2. **Trust JSON** - Only trust CLI JSON (`ok`, `payload`, `error`, `hint`). 3. **No fabricated IDs** - Never invent workflow/run/node IDs. 4. **No tokens** - Never print or request auth tokens. 5. **Stop on error** - If `ok=false`, stop and show `hint`. ## Available Commands | Command | ID Format | Description | |---------|-----------|-------------| | `refly status` | - | Check authentication and connection status | | `refly login` | - | Authenticate with Refly | | `refly skill list` | - | List all available skills in the marketplace | | `refly skill installations` | - | List your installed skills (get installationId here) | | `refly skill run --id <installationId> --input '<json>'` | skpi-xxx | Run an installed skill, returns runId (we-xxx) | | `refly workflow status <runId> --watch` | we-xxx | Watch workflow execution status | | `refly workflow detail <runId>` | we-xxx | Get workflow run details | | `refly workflow toolcalls <runId> --files --latest` | we-xxx | Get files from latest toolcall | | `refly file download <fileId> -o <path>` | df-xxx | Download a file | **Tip**: Get `installationId` (skpi-xxx) from `refly skill installations`. ### Command Options | Command | Option | Description | |---------|--------|-------------| | `workflow status` | `--watch` | Poll until workflow completes | | `workflow status` | `--interval <ms>` | Polling interval in milliseconds (default: 5000) | | `