
Cli Anything Zoom
- 348 installs
- 46.6k repo stars
- Updated August 3, 2026
- hkuds/cli-anything
cli-anything-zoom is a Python CLI skill that manages Zoom meetings, participants, and recordings from the terminal via the Zoom REST API.
About
cli-anything-zoom is a CLI & Terminal skill from hkuds/cli-anything that packages a command-line harness for Zoom administration. Install with `pip install cli-anything-zoom` on Python 3.10+ and run `cli-anything-zoom --help` or interactive REPL mode. The CLI creates and manages meetings, participants, and recordings through the Zoom REST API, enabling agents to automate standups, customer calls, onboarding sessions, or remote collaboration hooks without clicking the Zoom UI. Developers reach for cli-anything-zoom when scripts or coding agents need programmatic meeting links, session metadata, or recording access. Prerequisites include Python 3.10+ and a configured Zoom environment for API authentication.
- Zoom meeting automation via cli-anything
- Terminal-driven scheduling workflows
- Agent-friendly collaboration hooks
- Supports SaaS onboarding and support
- Reduces manual meeting setup toil
Cli Anything Zoom by the numbers
- 348 all-time installs (skills.sh)
- +14 installs in the week ending Aug 2, 2026 (Skillselion tracking)
- Ranked #469 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/hkuds/cli-anything --skill cli-anything-zoomAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 348 |
|---|---|
| repo stars | ★ 46.6k |
| Last updated | August 3, 2026 |
| Repository | hkuds/cli-anything ↗ |
How do you manage Zoom meetings from CLI?
Allow agents to manage Zoom meetings, links, or session metadata from the terminal when automating standups, customer calls, onboarding flows, or remote collaboration hooks.
Who is it for?
Developers automating Zoom standups, customer calls, or onboarding flows from terminal scripts or agents.
Skip if: Video conferencing on Google Meet, Teams, or other platforms without Zoom REST API access.
When should I use this skill?
An agent or script needs to create Zoom meetings, manage participants, or fetch recordings via CLI.
What you get
Created meetings, participant controls, recording metadata, and Zoom session links.
- Meeting links
- Recording metadata
By the numbers
- Requires Python 3.10+
- Installed via pip package cli-anything-zoom
Files
cli-anything-zoom
CLI harness for Zoom — manage meetings, participants, and recordings from the command line via the Zoom REST API.
Installation
This CLI is installed as part of the cli-anything-zoom package:
pip install cli-anything-zoomPrerequisites:
- Python 3.10+
- zoom must be installed on your system
Usage
Basic Commands
# Show help
cli-anything-zoom --help
# Start interactive REPL mode
cli-anything-zoom
# Create a new project
cli-anything-zoom project new -o project.json
# Run with JSON output (for agent consumption)
cli-anything-zoom --json project info -p project.jsonREPL Mode
When invoked without a subcommand, the CLI enters an interactive REPL session:
cli-anything-zoom
# Enter commands interactively with tab-completion and historyCommand Groups
Auth
Authentication and OAuth2 setup.
| Command | Description |
|---|---|
setup | Configure OAuth app credentials |
login | Login via OAuth2 browser flow |
status | Check authentication status |
logout | Remove saved tokens |
Meeting
Meeting management commands.
| Command | Description |
|---|---|
create | Create a new Zoom meeting |
list | List meetings |
info | Get meeting details |
update | Update a meeting |
delete | Delete a meeting |
join | Open meeting join URL in browser |
start | Open meeting start URL in browser (host only) |
Participant
Participant management commands.
| Command | Description |
|---|---|
add | Register a participant for a meeting |
add-batch | Batch register participants from a CSV file |
list | List registered participants |
remove | Cancel a participant's registration |
attended | List participants who attended a past meeting |
Recording
Cloud recording management.
| Command | Description |
|---|---|
list | List cloud recordings |
files | List recording files for a specific meeting |
download | Download a recording file |
delete | Delete all recordings for a meeting |
Examples
Create a New Project
Create a new zoom project file.
cli-anything-zoom project new -o myproject.json
# Or with JSON output for programmatic use
cli-anything-zoom --json project new -o myproject.jsonInteractive REPL Session
Start an interactive session with undo/redo support.
cli-anything-zoom
# Enter commands interactively
# Use 'help' to see available commands
# Use 'undo' and 'redo' for history navigationState Management
The CLI maintains session state with:
- Undo/Redo: Up to 50 levels of history
- Project persistence: Save/load project state as JSON
- Session tracking: Track modifications and changes
Output Formats
All commands support dual output modes:
- Human-readable (default): Tables, colors, formatted text
- Machine-readable (
--jsonflag): Structured JSON for agent consumption
# Human output
cli-anything-zoom project info -p project.json
# JSON output for agents
cli-anything-zoom --json project info -p project.jsonFor AI Agents
When using this CLI programmatically:
1. Always use `--json` flag for parseable output 2. Check return codes - 0 for success, non-zero for errors 3. Parse stderr for error messages on failure 4. Use absolute paths for all file operations 5. Verify outputs exist after export operations
More Information
- Full documentation: See README.md in the package
- Test coverage: See TEST.md in the package
- Methodology: See HARNESS.md in the cli-anything-plugin
Version
1.0.0
Related skills
FAQ
How do you install cli-anything-zoom?
cli-anything-zoom installs with `pip install cli-anything-zoom` and requires Python 3.10+. Run `cli-anything-zoom --help` for commands or start interactive REPL mode with no arguments.
What does cli-anything-zoom control?
cli-anything-zoom controls Zoom meetings, participants, and recordings through the Zoom REST API. Developers use it to automate standups, customer calls, and onboarding sessions from the terminal.