.claude/skills/cli-anygen/SKILL.md
Command-line interface for Anygen - A stateful command-line interface for AnyGen OpenAPI — generate professional slides, documents, webs...
npx skillsauth add wallacedobbs428/thecalltaker cli-anything-anygenInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
A stateful command-line interface for AnyGen OpenAPI — generate professional slides, documents, websites, diagrams, and more from natural language prompts. Designed for AI agents and power users.
This CLI is installed as part of the cli-anything-anygen package:
pip install cli-anything-anygen
Prerequisites:
# Show help
cli-anything-anygen --help
# Start interactive REPL mode
cli-anything-anygen
# Create a new project
cli-anything-anygen project new -o project.json
# Run with JSON output (for agent consumption)
cli-anything-anygen --json project info -p project.json
When invoked without a subcommand, the CLI enters an interactive REPL session:
cli-anything-anygen
# Enter commands interactively with tab-completion and history
Task management — create, poll, download, and run tasks.
| Command | Description |
|---------|-------------|
| create | Create a generation task |
| status | Query task status (non-blocking) |
| poll | Poll task until completion (blocking) |
| download | Download the generated file for a completed task |
| thumbnail | Download thumbnail image for a completed task |
| run | Full workflow: create, poll, download |
| list | List locally cached task records |
| prepare | Multi-turn requirement analysis before creating a task |
File operations — upload reference files.
| Command | Description |
|---------|-------------|
| upload | Upload a reference file to get a file_token |
Configuration management — API key and settings.
| Command | Description |
|---------|-------------|
| set | Set a configuration value |
| get | Get a configuration value (or show all) |
| delete | Delete a configuration value |
| path | Show the config file path |
Session management — history, undo, redo.
| Command | Description |
|---------|-------------|
| status | Show session status |
| history | Show command history |
| undo | Undo last command |
| redo | Redo last undone command |
Create a new anygen project file.
cli-anything-anygen project new -o myproject.json
# Or with JSON output for programmatic use
cli-anything-anygen --json project new -o myproject.json
Start an interactive session with undo/redo support.
cli-anything-anygen
# Enter commands interactively
# Use 'help' to see available commands
# Use 'undo' and 'redo' for history navigation
The CLI maintains session state with:
All commands support dual output modes:
--json flag): Structured JSON for agent consumption# Human output
cli-anything-anygen project info -p project.json
# JSON output for agents
cli-anything-anygen --json project info -p project.json
When using this CLI programmatically:
--json flag for parseable output1.0.0
documentation
Agentic memory system for writers - track characters, relationships, scenes, and themes
tools
Automate repetitive development tasks and workflows. Use when creating build scripts, automating deployments, or setting up development workflows. Handles npm scripts, Makefile, GitHub Actions workflows, and task automation.
development
Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", or "check my site against best practices". Fetches latest Vercel guidelines and checks files against all rules.
development
Implement web accessibility (a11y) standards following WCAG 2.1 guidelines. Use when building accessible UIs, fixing accessibility issues, or ensuring compliance with disability standards. Handles ARIA attributes, keyboard navigation, screen readers, semantic HTML, and accessibility testing.