npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

idomoo-cli

v0.3.6

Published

Command-line tool for the Idomoo AI Video Generation API (Lucas).

Downloads

212

Readme

Idomoo — AI Video for your terminal & AI agents

Three ways to use the Idomoo AI Video Generation API (Lucas) from anywhere:

  1. Lucas MCP server — connect Claude Desktop, Cursor, or Claude Code to Idomoo's hosted MCP at https://lucas-mcp.idomoo.ai/mcp. Pair with skills/idomoo-mcp/SKILL.md so your AI knows the right interactive flow.
  2. CLI — native binary on macOS, Linux, and Windows (no Node required)
  3. Agent skill for the CLI — a SKILL.md that teaches Claude Code, Cursor, Copilot, etc. to drive the CLI in plain English. No binary on hand? Use skills/idomoo-npx/SKILL.md — same flow, every command runs through npx idomoo-cli (Node ≥ 18 only).

👉 Full install guide: https://djtoon.github.io/idomoo/


Quick start

Option A — Lucas MCP (Claude Desktop / Cursor / Claude Code)

Claude Desktop (one-click): download idomoo.mcpb and double-click. Paste your Lucas MCP Key when prompted — done.

Other clients (manual): add as a custom MCP connector:

  • URL: https://lucas-mcp.idomoo.ai/mcp
  • Header: X-Lucas-MCP-Key: <your_mcp_key> (request it from Idomoo support)

Then drop skills/idomoo-mcp/SKILL.md into ~/.claude/skills/idomoo-mcp/ (or your client's skills dir). Try: "Create a 30-second promo video for a coffee shop using Lucas."

See the official integration guide for client-specific config snippets.

Option B — CLI

curl -fsSL https://raw.githubusercontent.com/djtoon/idomoo/main/scripts/install.sh | bash
idomoo login
idomoo create -p "Promote our summer sale" -t "Summer Sale"

Install (full options)

Native (recommended — no Node.js required) ⭐

macOS / Linux / WSL

curl -fsSL https://raw.githubusercontent.com/djtoon/idomoo/main/scripts/install.sh | bash

Installs to ~/.local/bin/idomoo. Supports Apple Silicon, Intel Macs, x86_64 and arm64 Linux.

Windows (PowerShell)

irm https://raw.githubusercontent.com/djtoon/idomoo/main/scripts/install.ps1 | iex

Installs to %LOCALAPPDATA%\Programs\idomoo\idomoo.exe and adds it to your user PATH automatically.

Pin a version with --version v0.1.1 (bash) or -Version v0.1.1 (PowerShell).

npm / pnpm / yarn (requires Node.js ≥ 18)

npm install -g idomoo-cli
# or
pnpm add -g idomoo-cli
# or
yarn global add idomoo-cli

npx (one-off, requires Node.js ≥ 18)

npx --yes idomoo-cli create -p "..."

Verify

idomoo --help

If idomoo is "not recognized" / "command not found" after the native install, ~/.local/bin isn't on PATH — add export PATH="$HOME/.local/bin:$PATH" to your shell rc and reopen the terminal. For npm installs, find the global bin with npm config get prefix.


First-time setup

The CLI authenticates via OAuth2 client credentials and caches the bearer token at ~/.idomoo/config.json (Windows: %USERPROFILE%\.idomoo\config.json).

idomoo login

You'll be prompted for:

  • Idomoo Account ID
  • Idomoo API Secret Key (input is masked)

Or pass them non-interactively (handy for CI):

idomoo login --account-id ACCOUNT_ID --api-key SECRET_KEY

Override regional/auth URLs:

idomoo login \
  --auth-url https://usa-api.idomoo.com/api/v3/oauth/token \
  --api-url https://api-ai.idomoo.com

Quick start — create a video end-to-end

The simplest flow. create chains brief → blueprint → ai-video and polls until the rendered video URL is ready:

idomoo create -p "Promote our summer sale to high-spending customers" -t "Summer Sale"

Useful options:

| Flag | Description | | --- | --- | | -p, --prompt <text> | Required. Natural-language description of what the video should be about. | | -t, --title <text> | Video title. | | -s, --script <text> | Pre-written narration script. If omitted, Lucas writes one from the prompt. | | --brand-id <id> | Use a brand for styling/colors/logo. | | --kb-id <id> | Knowledge base ID to ground the script in. | | --audience-name <name> | Target audience name (e.g. HeavySpenders). | | --audience-description <text> | Free-text description of the audience. | | -d, --duration <seconds> | Target video duration (default 30). | | --scene-library-id <id> | Library of scene templates to use. | | --narrator-id <id> | Voice ID for narration. | | --avatar-id <id> | Avatar to use in the video. | | --presenter-id <id> | Presenter to use in the video. | | --use-avatar | Use the avatar from the chosen presenter. | | --media-workspace-id <id> | Workspace containing media assets (repeatable). | | --data-points <json> | JSON object of dynamic data points to substitute in the script. | | --workspace-id <id> | Destination workspace for the rendered video. | | --path <path> | Destination path within the workspace. |


Command reference

Authentication & config

idomoo login                                    # interactive setup
idomoo config show                              # print current config (api key masked)
idomoo config set --account-id ID --api-key KEY # update fields without re-running login
idomoo config reset                             # wipe credentials & cached token

Brief

idomoo brief create -p "..." [-t TITLE] [-s SCRIPT] \
  [--brand-id ID] [--kb-id ID] \
  [--audience-name NAME] [--audience-description TEXT]

idomoo brief get <brief_id>

Blueprint

idomoo blueprint create -b <brief_id> \
  [-d 30] [--scene-library-id ID] \
  [--narrator-id ID] [--avatar-id ID] [--presenter-id ID] [--use-avatar] \
  [--brain-model NAME] [--prompt-version VER] \
  [--media-workspace-id ID]... \
  [--wait]

idomoo blueprint get <blueprint_id>

Video

idomoo video create -b <blueprint_id> \
  [--data-points '{"key":"val"}'] \
  [--audience NAME]... [--analytic-tag TAG]... \
  [--workspace-id ID] [--path PATH] \
  [--brain-model NAME] [--prompt-version VER] \
  [--wait]

idomoo video get <ai_video_id>

End-to-end

idomoo create -p "..." [all the flags above]

Common workflows

One-shot video from a prompt:

idomoo create -p "30-second promo for our new mobile app launch" -t "App Launch"

Video from a pre-written script:

idomoo create -p "Educational explainer" -t "How sleep works" \
  -s "Ever wondered why we spend a third of our lives asleep? ..."

Branded video aimed at a specific audience:

idomoo create -p "Promote summer sale" -t "Summer Sale" \
  --brand-id brand_67890 --kb-id kb_12345 \
  --audience-name HeavySpenders \
  --audience-description "Upper-middle-class households aged 25-45"

Step-by-step (manual control between steps):

brief_id=$(idomoo brief create -p "Quarterly results recap" | jq -r '.id')
blueprint_id=$(idomoo blueprint create -b "$brief_id" --wait | jq -r '.id')
idomoo video create -b "$blueprint_id" --wait

Status values

All long-running resources (brief, blueprint, ai-video) expose a status field:

  • Waiting for a file — pending external input
  • In process — actively processing
  • Done — ready (final video URL is available on AI videos)
  • Error — failed; check status_message

Polling cadence is 4 seconds with a 10-minute total timeout. Errors return a non-zero exit code so you can chain in shell scripts.


Configuration file

Stored at ~/.idomoo/config.json (Windows: %USERPROFILE%\.idomoo\config.json). Permissions are set to 0600 on Unix.

{
  "account_id": "...",
  "api_key": "...",
  "auth_url": "https://usa-api.idomoo.com/api/v3/oauth/token",
  "api_url": "https://api-ai.idomoo.com",
  "token": {
    "access_token": "...",
    "token_type": "Bearer",
    "expires_at": 1715000000
  }
}

The token block is managed automatically — refreshed within 60 s of expiry or after any 401. Force a fresh token with idomoo config reset && idomoo login.


🤖 Use it inside an AI agent (Claude Code, Cursor, Copilot, …)

This package ships with an Agent Skill — a SKILL.md instruction file that teaches AI coding assistants how to drive the CLI for you. Once installed, you can ask your agent in plain English:

"Create a 30-second promo video for our spring collection"

…and it will run the right idomoo commands for you.

Install the skill

With the skills CLI (works with Claude Code, Cursor, Copilot, Cline, Windsurf, and 18+ other agents):

npx skills add djtoon/idomoo

As a Claude Code plugin — pick one:

# Register the marketplace (use the full URL so it works on Claude Code
# terminal *and* Claude.ai Code / cowork). The shorthand djtoon/idomoo also
# works on the CLI.
/plugin marketplace add https://github.com/djtoon/idomoo

# Option 1: CLI plugin (requires the idomoo binary on PATH)
/plugin install idomoo@idomoo

# Option 2: MCP plugin (hosted Lucas MCP — no local install)
#   Set LUCAS_MCP_KEY in your environment first.
/plugin install idomoo-mcp@idomoo
  • idomoo — drives the local idomoo CLI. Full brand / brief / blueprint / video coverage.
  • idomoo-mcp — registers Idomoo's hosted Lucas MCP (https://lucas-mcp.idomoo.ai/mcp) and bundles the matching interactive-flow skill. Exposes the 6 official Lucas tools. Reads the LUCAS_MCP_KEY env var for auth.

Or just paste this to your coding assistant:

Install the Idomoo agent skill from https://github.com/djtoon/idomoo and use it to manage Idomoo videos.

The skill teaches the agent the full brief → blueprint → video workflow, all CLI flags, status polling, and troubleshooting steps.


Troubleshooting

| Problem | Fix | | --- | --- | | Missing credentials | Run idomoo login. | | Token request failed (401) | Wrong account ID / API key — re-run idomoo login. | | Token request failed (400/403) | Make sure the request body is form-urlencoded (grant_type=client_credentials). The CLI does this; you only see this if you bypassed it. | | Processing failed | API returned status: Error. Check status_message for the reason — usually a missing brand asset, invalid scene library, or unsupported prompt. | | Timed out | Polling exceeded 10 minutes; the job may still finish on the server. Use idomoo video get <id> to keep checking. | | 'idomoo' is not recognized / command not found | npm global bin is not on PATH — see Install section above. |


Links

  • API docs: https://developers.idomoo.com/
  • Idomoo Studio: https://studio.idomoo.com
  • Agent skill / plugin: https://github.com/djtoon/idomoo
  • Issues: https://github.com/djtoon/idomoo/issues

License

MIT