Skip to main content

Skills + CLI

Use the official CLI to work with DumplingAI’s Unified API directly from your terminal. The CLI is built around the /api/v2 workflow:
  1. search the catalog
  2. inspect the capability or endpoint you want
  3. run it with JSON input

Install

dumplingai init walks through authentication and can install bundled agent skills in the same flow.

Authenticate

Get your API key from app.dumplingai.com/settings/api-keys. Then confirm setup:

Common commands

Examples

Output and automation tips

  • Use --input-file when your request body is easier to manage as JSON on disk.
  • Redirect large JSON responses into .dumplingai/ or another local file when you want to inspect them incrementally.
  • Use dumplingai env pull when you want the CLI key written into a local .env file for adjacent tooling.

Agent skills

The CLI repo also ships packaged skills for supported coding agents. These help agents discover DumplingAI APIs, choose the right CLI commands, and reuse workflow templates.

Install

For Codex, Claude Code, and Cursor, dumplingai init is the recommended path because it can install bundled skills during setup. Use manual installation only if:
  • you skipped skills during dumplingai init
  • you want to selectively install skills
  • you are using another compatible agent environment
You can list and selectively install packaged skills:
You can also run dumplingai init and install skills during setup.

Supported environments

Local agent/runtime folders such as these are intentionally supported:
  • ./.claude/skills/dumplingai-cli (Claude Code)
  • ./.agents/skills/dumplingai-cli (Agents)
  • ./.cursor/skills/dumplingai-cli (Cursor)
  • ./.codex/skills/dumplingai-cli (Codex)

What gets installed

Depending on the package you install, these skills can include API discovery guidance, CLI usage patterns, and reusable workflow templates such as YouTube-to-blog-post or social media generation.

Validate installation

Inspect one of the installed directories for your agent environment:

Next steps