$npx -y skills add AnyGenIO/anygen-suite-skill --skill anygen-suiteAnyGen: AI-powered content creation suite. Create slides/PPT, documents, diagrams, websites, data visualizations, research reports, storybooks, financial analysis, and images. Supports: pitch decks, keynotes, technical docs, PRDs, white papers, architecture diagrams, flowcharts,
| 1 | # AnyGen — Content Creation Suite |
| 2 | |
| 3 | This skill uses the AnyGen CLI to generate content (slides, docs, diagrams, websites, images, research, and more) server-side at `www.anygen.io`. |
| 4 | |
| 5 | ## Authentication |
| 6 | |
| 7 | ```bash |
| 8 | # Web login (opens browser, auto-configures key) |
| 9 | anygen auth login --no-wait |
| 10 | |
| 11 | # Direct API key |
| 12 | anygen auth login --api-key sk-xxx |
| 13 | |
| 14 | # Or set env var |
| 15 | export ANYGEN_API_KEY=sk-xxx |
| 16 | ``` |
| 17 | |
| 18 | When any command fails with an auth error, run `anygen auth login --no-wait` and ask the user to complete browser authorization. Retry after login succeeds. |
| 19 | |
| 20 | ## How to use |
| 21 | |
| 22 | Follow the `anygen-workflow-generate` skill. Use `anygen task operations` to discover the correct operation type for the user's request. |
| 23 | |
| 24 | If the `anygen-workflow-generate` skill is not available, install it first: |
| 25 | |
| 26 | ```bash |
| 27 | anygen skill install --platform <openclaw|claude-code> -y |
| 28 | ``` |