/cli-anything-blender
Command-line interface for Blender - A stateful command-line interface for 3D scene editing, following the same patterns as the GIMP CLI ...
$ npx -y skills add HKUDS/CLI-Anything --skill cli-anything-blender --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/cli-anything-blender
Context preview
The summary Claude sees to decide when to auto-load this skill.
Command-line interface for Blender - A stateful command-line interface for 3D scene editing, following the same patterns as the GIMP CLI ...
SKILL.md
cli-anything-blender.SKILL.mdname: "cli-anything-blender"
description: >-
Command-line interface for Blender - A stateful command-line interface for 3D scene editing, following the same patterns as the GIMP CLI ...
cli-anything-blender
A stateful command-line interface for 3D scene editing, following the same patterns as the GIMP CLI harness. Uses a JSON scene description format with bpy script generation for actual Blender rendering.
Installation
This CLI is installed as part of the cli-anything-blender package:
pip install cli-anything-blender
**Prerequisites:**
- Python 3.10+
- blender (>= 4.2) must be installed on your system
Usage
Basic Commands
# Show help
cli-anything-blender --help
# Start interactive REPL mode
cli-anything-blender
# Create a new scene project
cli-anything-blender scene new -o scene.blend-cli.json
# Run with JSON output (for agent consumption)
cli-anything-blender --json --project scene.blend-cli.json scene info
REPL Mode
When invoked without a subcommand, the CLI enters an interactive REPL session:
cli-anything-blender
# Enter commands interactively with tab-completion and history
Command Groups
Scene
Scene management commands.
| Command | Description | |---------|-------------| | `new` | Create a new scene | | `open` | Open an existing scene | | `save` | Save the current scene | | `info` | Show scene information | | `profiles` | List available scene profiles | | `json` | Print raw scene JSON |
Object Group
3D object management commands.
| Command | Description | |---------|-------------| | `add` | Add a 3D primitive object | | `remove` | Remove an object by index | | `duplicate` | Duplicate an object | | `transform` | Transform an object (translate, rotate, scale) | | `set` | Set an object property (name, visible, location, rotation, scale, parent) | | `list` | List all objects | | `get` | Get detailed info about an object |
Material
Material management commands.
| Command | Description | |---------|-------------| | `create` | Create a new material | | `assign` | Assign a material to an object | | `set` | Set a material property (color, metallic, roughness, specular, alpha, etc.) | | `list` | List all materials | | `get` | Get detailed info about a material |
Modifier Group
Modifier management commands.
| Command | Description | |---------|-------------| | `list-available` | List all available modifiers | | `info` | Show details about a modifier | | `add` | Add a modifier to an object | | `remove` | Remove a modifier by index | | `set` | Set a modifier parameter | | `list` | List modifiers on an object |
Camera
Camera management commands.
| Command | Description | |---------|-------------| | `add` | Add a camera to the scene | | `set` | Set a camera property | | `set-active` | Set the active camera | | `list` | List all cameras |
Light
Light management commands.
| Command | Description | |---------|-------------| | `add` | Add a light to the scene | | `set` | Set a light property | | `list` | List all lights |
Animation
Animation and keyframe commands.
| Command | Description | |---------|-------------| | `keyframe` | Set a keyframe on an object | | `remove-keyframe` | Remove a keyframe from an object | | `frame-range` | Set the animation frame range | | `fps` | Set the animation FPS | | `list-keyframes` | List keyframes for an object |
Render Group
Render settings and output commands.
| Command | Description | |---------|-------------| | `settings` | Configure render settings | | `info` | Show current render settings | | `presets` | List available render presets | | `execute` | Render the scene (generates bpy script) | | `script` | Generate bpy script without rendering |
Preview
Real preview bundle capture and live preview session commands.
| Command | Description | |---------|-------------| | `preview recipes` | List available preview recipes | | `preview capture` | Render a real preview bundle for the active scene | | `preview latest` | Return the latest existing preview bundle | | `preview live start` | Start a live preview session and publish the first bundle | | `preview live push` | Publish a refreshed bundle into the live session | | `preview live status` | Read current live-session state without rendering | | `preview live stop` | Stop the live session without deleting artifacts |
Typical bundle artifacts for recipe `quick`:
- `hero.png` from real Eevee preview rendering
- `workbench.png` from real Blender Workbench rendering
Live sessions persist:
- `session.json` as the mutable head
- immutable bundle directories
- `trajectory.json` as append-only command-to-preview history
Viewer side:
- `cli-hub previews inspect <bundle-or-session>`
- `cli-hub previews html <bundle-or-session> -o page.html`
- `cli-hub previews watch <session-dir> --open`
- `cli-hub previews open <bundle-or-session>`
Session
Session management commands.
| Command | Description | |---------|-------------| | `status` | Show session status | | `undo` | Undo the last operation | | `redo` | Redo the last undone operation | | `history` | Show undo history |
Examples
Create a New Project
Create a new Blender scene project file.
cli-anything-blender scene new -o myscene.blend-cli.json
# Or with JSON output for programmatic use
cli-anything-blender --json scene new -o myscene.blend-cli.json
Interactive REPL Session
Start an interactive session with undo/redo support.
cli-anything-blender
# Enter commands interactively
# Use 'help' to see available commands
# Use 'undo' and 'redo' for history navigation
State 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)
Read more
name: "cli-anything-blender" description: >- Command-line interface for Blender - A stateful command-line interface for 3D scene editing, following the same patterns as the GIMP CLI ...
cli-anything-blender
A stateful command-line interface for 3D scene editing, following the same patterns as the GIMP CLI harness. Uses a JSON scene description format with bpy script generation for actual Blender rendering.
Installation
This CLI is installed as part of the cli-anything-blender package:
pip install cli-anything-blender
**Prerequisites:**
- Python 3.10+
- blender (>= 4.2) must be installed on your system
Usage
Basic Commands
# Show help cli-anything-blender --help # Start interactive REPL mode cli-anything-blender # Create a new scene project cli-anything-blender scene new -o scene.blend-cli.json # Run with JSON output (for agent consumption) cli-anything-blender --json --project scene.blend-cli.json scene info
REPL Mode
When invoked without a subcommand, the CLI enters an interactive REPL session:
cli-anything-blender # Enter commands interactively with tab-completion and history
Command Groups
Scene
Scene management commands.
| Command | Description | |---------|-------------| | `new` | Create a new scene | | `open` | Open an existing scene | | `save` | Save the current scene | | `info` | Show scene information | | `profiles` | List available scene profiles | | `json` | Print raw scene JSON |
Object Group
3D object management commands.
| Command | Description | |---------|-------------| | `add` | Add a 3D primitive object | | `remove` | Remove an object by index | | `duplicate` | Duplicate an object | | `transform` | Transform an object (translate, rotate, scale) | | `set` | Set an object property (name, visible, location, rotation, scale, parent) | | `list` | List all objects | | `get` | Get detailed info about an object |
Material
Material management commands.
| Command | Description | |---------|-------------| | `create` | Create a new material | | `assign` | Assign a material to an object | | `set` | Set a material property (color, metallic, roughness, specular, alpha, etc.) | | `list` | List all materials | | `get` | Get detailed info about a material |
Modifier Group
Modifier management commands.
| Command | Description | |---------|-------------| | `list-available` | List all available modifiers | | `info` | Show details about a modifier | | `add` | Add a modifier to an object | | `remove` | Remove a modifier by index | | `set` | Set a modifier parameter | | `list` | List modifiers on an object |
Camera
Camera management commands.
| Command | Description | |---------|-------------| | `add` | Add a camera to the scene | | `set` | Set a camera property | | `set-active` | Set the active camera | | `list` | List all cameras |
Light
Light management commands.
| Command | Description | |---------|-------------| | `add` | Add a light to the scene | | `set` | Set a light property | | `list` | List all lights |
Animation
Animation and keyframe commands.
| Command | Description | |---------|-------------| | `keyframe` | Set a keyframe on an object | | `remove-keyframe` | Remove a keyframe from an object | | `frame-range` | Set the animation frame range | | `fps` | Set the animation FPS | | `list-keyframes` | List keyframes for an object |
Render Group
Render settings and output commands.
| Command | Description | |---------|-------------| | `settings` | Configure render settings | | `info` | Show current render settings | | `presets` | List available render presets | | `execute` | Render the scene (generates bpy script) | | `script` | Generate bpy script without rendering |
Preview
Real preview bundle capture and live preview session commands.
| Command | Description | |---------|-------------| | `preview recipes` | List available preview recipes | | `preview capture` | Render a real preview bundle for the active scene | | `preview latest` | Return the latest existing preview bundle | | `preview live start` | Start a live preview session and publish the first bundle | | `preview live push` | Publish a refreshed bundle into the live session | | `preview live status` | Read current live-session state without rendering | | `preview live stop` | Stop the live session without deleting artifacts |
Typical bundle artifacts for recipe `quick`:
- `hero.png` from real Eevee preview rendering
- `workbench.png` from real Blender Workbench rendering
Live sessions persist:
- `session.json` as the mutable head
- immutable bundle directories
- `trajectory.json` as append-only command-to-preview history
Viewer side:
- `cli-hub previews inspect <bundle-or-session>`
- `cli-hub previews html <bundle-or-session> -o page.html`
- `cli-hub previews watch <session-dir> --open`
- `cli-hub previews open <bundle-or-session>`
Session
Session management commands.
| Command | Description | |---------|-------------| | `status` | Show session status | | `undo` | Undo the last operation | | `redo` | Redo the last undone operation | | `history` | Show undo history |
Examples
Create a New Project
Create a new Blender scene project file.
cli-anything-blender scene new -o myscene.blend-cli.json # Or with JSON output for programmatic use cli-anything-blender --json scene new -o myscene.blend-cli.json
Interactive REPL Session
Start an interactive session with undo/redo support.
cli-anything-blender # Enter commands interactively # Use 'help' to see available commands # Use 'undo' and 'redo' for history navigation
State 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)
"CLI-Anything: Making ALL Software Agent-Native" -- CLI-Hub: https://clianything.cc/
Repo: HKUDS/CLI-Anything
Other skills on cli-anything.
- /cli-anything-firefly-iii
Firefly III CLI - Personal finance management via CLI-Anything
Open skill - /cli-anything-openrefine
Use OpenRefine through an agent-native CLI for importing messy data, applying JSON operation histories, inspecting rows, exporting cleaned data, and managing session undo/redo.
Open skill - /cli-anything-adguardhome
Command-line interface for AdGuard Home - Network-wide ad blocking and DNS management via AdGuard Home REST API. Designed for AI agents and power users who need to manage filtering, DNS rewrites, clients, DHCP, and query logs without a GUI.
Open skill - /cli-anything-anygen
Command-line interface for Anygen - A stateful command-line interface for AnyGen OpenAPI — generate professional slides, documents, webs...
Open skill - /cli-anything-audacity
Command-line interface for Audacity - A stateful command-line interface for audio editing, following the same patterns as the GIMP and Ble...
Open skill - /cli-anything-browser
Browser automation CLI using DOMShell MCP server. Maps Chrome's Accessibility Tree to a virtual filesystem for agent-native navigation.
Open skill

