Skills + CLI
Use the official CLI to run DumplingAI directly from your terminal.- npm package: dumplingai-cli
- source code: github.com/DumplingAI/cli
Install
init walks through authentication and can install agent skills in the same flow.
Authenticate
Common commands
| Command | Description |
|---|---|
dumplingai init | Interactive setup (auth + optional skill install) |
dumplingai scrape <url> | Scrape a page (markdown, html, or screenshot) |
dumplingai search <query> | Web search shortcut (auto-routes to search web) |
dumplingai search news <query> | News search |
dumplingai search places <query> | Google Places search |
dumplingai search maps <query> | Google Maps search |
dumplingai search reviews <keyword> | Google reviews for a business |
dumplingai search autocomplete <query> | Search suggestions |
dumplingai transcript <url> | YouTube/TikTok transcript |
dumplingai env pull | Write API key into .env |
dumplingai setup skill | Install DumplingAI skill files for agent environments |
dumplingai view-config | Print resolved configuration |
dumplingai version | Print CLI version |
Examples
Output and automation tips
- Use
-o <file>to save large output instead of printing to stdout. - Use
--jsonwhen piping into scripts or other CLI tools. - You can pass a URL directly without
scrape:
Agent skills
The CLI can install skill files for supported coding agents so they usedumplingai consistently.
Install
dumplingai init and install skills during setup.
Optional flags
dumplingai setup skill --all: install into all supported environments, even if not detected.dumplingai setup skill --dir <path>: install to a custom directory.
Supported environments
When detected in your current workspace, skill files are installed to:./.claude/skills/dumplingai-cli(Claude Code)./.cursor/skills/dumplingai-cli(Cursor)./.codex/skills/dumplingai-cli(Codex)
What gets installed
SKILL.mdrules/safety.mdrules/install.md
search -> scrape -> transcript), output hygiene, and safety rules for untrusted web content.
Validate installation
Next steps
- Use DumplingAI with AI clients: MCP Server
- Browse endpoints behind the CLI: API Reference