| name | cli-anything-agent-native-software |
| description | Generate and use command-line interfaces that make any software controllable by AI agents with structured JSON output |
| triggers | ["make this software agent-accessible","generate a CLI wrapper for this application","create an agent-native interface","wrap this GUI tool with a command line","build a CLI harness with JSON output","make this app work with AI agents","create structured commands for this software","generate agent-ready CLI tools"] |
CLI-Anything: Agent-Native Software Interface Generator
Skill by ara.so — Devtools Skills collection.
CLI-Anything transforms GUI applications and services into agent-ready command-line interfaces with structured JSON output. It provides a framework for generating CLIs that AI agents can discover, understand, and use to control software programmatically.
What It Does
CLI-Anything bridges the gap between AI agents and traditional software by:
- Generating CLIs for GUI applications (GIMP, Blender, LibreOffice, etc.)
- Structured Output - All commands return JSON for reliable agent parsing
- Self-Documenting - Auto-generated SKILL.md files agents can discover
- Preview Loops - Commands support
--preview for visual feedback before committing
- Trajectory Recording - Captures command sequences for reproducible workflows
- Hub Distribution - Central registry for browsing and installing community CLIs
The project includes 18+ production harnesses (GIMP, Inkscape, Shotcut, Blender, Godot, Obsidian, n8n, etc.) and a framework for building your own.
Installation
Core Framework
git clone https://github.com/HKUDS/CLI-Anything.git
cd CLI-Anything
pip install -r requirements.txt
cd src/gimp
pip install -e .
CLI Hub (Package Manager)
pip install cli-anything-hub
cli-hub list
cli-hub search blender
cli-hub install gimp
cli-hub update gimp
cli-hub uninstall gimp
Install Skills for AI Agents
npx skills add HKUDS/CLI-Anything --skill gimp -g -y
npx skills add HKUDS/CLI-Anything --skill blender -g -y
npx skills add HKUDS/CLI-Anything --skill inkscape -g -y
Key Concepts
Harness Structure
Every CLI harness follows this pattern:
src/<app-name>/
├── cli.py # Click-based CLI entry point
├── commands/ # Command groups (edit, export, analyze, etc.)
│ ├── edit.py
│ ├── export.py
│ └── ...
├── core/ # Application-specific logic
│ ├── backend.py # Software interaction layer
│ └── utils.py
├── tests/
│ ├── unit/ # Fast, isolated tests
│ └── e2e/ # Full integration tests
├── setup.py # Package definition
└── SKILL.md # Agent-discoverable documentation
Command Pattern
All commands follow this JSON-output pattern:
import click
import json
@click.command()
@click.option('--input', required=True, help='Input file path')
@click.option('--output', required=True, help='Output file path')
@click.option('--format', default='JSON', type=click.Choice(['JSON', 'HUMAN']))
def process(input, output, format):
"""Process an image with specific operations."""
try:
result = {
'success': True,
'input': input,
'output': output,
'message': 'Operation completed successfully'
}
if format == 'JSON':
click.echo(json.dumps(result, indent=2))
else:
click.echo(f"✓ Processed {input} → {output}")
except Exception as e:
error = {
'success': False,
: (e)
}
click.echo(json.dumps(error, indent=))
click.Abort()
Using Existing CLIs
GIMP Example
gimp-cli create --width 800 --height 600 --output /tmp/canvas.xcf
gimp-cli layer add-text \
--image /tmp/canvas.xcf \
--text "Hello AI" \
--x 100 --y 100 \
--font-size 48 \
--color "#FF0000"
gimp-cli export --input /tmp/canvas.xcf --output /tmp/result.png --format png
gimp-cli layer list --image /tmp/canvas.xcf --format JSON
Blender Example
blender-cli scene create --name "MyScene" --output /tmp/scene.blend
blender-cli object add-cube --name "Box1" --location 0,0,0 --scene /tmp/scene.blend
blender-cli object add-sphere --name "Ball" --location 2,0,1 --scene /tmp/scene.blend
blender-cli render \
--input /tmp/scene.blend \
--output /tmp/render.png \
--resolution-x 1920 \
--resolution-y 1080 \
--samples 128 \
--engine CYCLES
Inkscape Example
inkscape-cli create --width 500 --height 500 --output /tmp/drawing.svg
inkscape-cli shape add-rect \
--svg /tmp/drawing.svg \
--x 50 --y 50 --width 100 --height 100 \
--fill "#3498db"
inkscape-cli export \
--input /tmp/drawing.svg \
--output /tmp/drawing.png \
--dpi 300
Building a New CLI Harness
Step 1: Project Setup
mkdir -p src/myapp/{commands,core,tests/{unit,e2e}}
cd src/myapp
cat > setup.py << 'EOF'
from setuptools import setup, find_packages
setup(
name='myapp-cli',
version='0.1.0',
packages=find_packages(),
install_requires=[
'click>=8.0',
],
entry_points={
'console_scripts': [
'myapp-cli=cli:cli',
],
},
)
EOF
Step 2: Create CLI Entry Point
import click
from commands import process, export
@click.group()
@click.version_option()
def cli():
"""MyApp CLI - Agent-native interface for MyApp."""
pass
cli.add_command(process.process_group)
cli.add_command(export.export_group)
if __name__ == '__main__':
cli()
Step 3: Implement Command Groups
import click
import json
from core.backend import MyAppBackend
@click.group(name='process')
def process_group():
"""Processing operations."""
pass
@process_group.command(name='enhance')
@click.option('--input', required=True, type=click.Path(exists=True))
@click.option('--output', required=True, type=click.Path())
@click.option('--strength', default=0.5, type=float, help='Enhancement strength (0-1)')
@click.option('--format', default='JSON', type=click.Choice(['JSON', 'HUMAN']))
@click.option('--preview', is_flag=True, help='Show preview without saving')
def enhance(input, output, strength, format, preview):
:
backend = MyAppBackend()
preview:
preview_path = backend.generate_preview(, , strength=strength)
result = {
: ,
: preview_path,
:
}
:
backend.load_file()
backend.apply_enhancement(strength)
backend.save_file(output)
result = {
: ,
: ,
: output,
: strength,
:
}
== :
click.echo(json.dumps(result, indent=))
:
click.echo()
Exception e:
error = {: , : (e)}
click.echo(json.dumps(error, indent=))
click.Abort()
Step 4: Backend Integration
import subprocess
import tempfile
import os
class MyAppBackend:
"""Wrapper for MyApp software."""
def __init__(self, executable_path=None):
self.executable = executable_path or self._find_executable()
self.current_file = None
def _find_executable(self):
"""Locate MyApp executable."""
paths = [
'/usr/bin/myapp',
'/usr/local/bin/myapp',
'C:\\Program Files\\MyApp\\myapp.exe'
]
for path in paths:
if os.path.exists(path):
return path
raise RuntimeError("MyApp not found. Please install MyApp first.")
def load_file(self, filepath):
"""Load a file into MyApp."""
self.current_file = filepath
def apply_enhancement(self, strength):
():
():
preview_dir = tempfile.mkdtemp()
preview_path = os.path.join(preview_dir, )
preview_path
Step 5: Write Tests
import pytest
from core.backend import MyAppBackend
def test_backend_initialization():
"""Test backend can find executable."""
backend = MyAppBackend()
assert backend.executable is not None
def test_file_operations(tmp_path):
"""Test load and save operations."""
backend = MyAppBackend()
test_file = tmp_path / "test.myapp"
test_file.write_text("test content")
backend.load_file(str(test_file))
assert backend.current_file == str(test_file)
import subprocess
import json
import pytest
def test_enhance_command(tmp_path):
"""Test full enhance workflow."""
input_file = tmp_path / "input.png"
output_file = tmp_path / "output.png"
result = subprocess.run([
'myapp-cli', 'process', 'enhance',
'--input', str(input_file),
'--output', str(output_file),
'--strength', '0.7',
'--format', 'JSON'
], capture_output=True, text=)
result.returncode ==
data = json.loads(result.stdout)
data[]
output_file.exists()
Step 6: Generate SKILL.md
import click
import json
import os
def generate_skill_md():
"""Generate SKILL.md for AI agent discovery."""
from cli import cli as main_cli
commands = []
for group_name, group in main_cli.commands.items():
if hasattr(group, 'commands'):
for cmd_name, cmd in group.commands.items():
commands.append({
'group': group_name,
'name': cmd_name,
'help': cmd.help or '',
'params': [p.name for p in cmd.params if p.name != 'format']
})
skill_content = f"""---
name: myapp-agent-interface
description: Control MyApp through structured commands with JSON output
triggers:
- use myapp to process this
- enhance this with myapp
- export using myapp
- create with myapp
- automate myapp workflow
- generate myapp output
---
# MyApp CLI - Agent Interface
> Skill by [ara.so](https://ara.so) — Devtools Skills collection.
Control MyApp through a structured command-line interface designed for AI agents.
## Installation
```bash
pip install myapp-cli
# or via CLI-Hub
cli-hub install myapp
Available Commands
"""
for cmd in commands:
skill_content += f"\n### {cmd['group']} {cmd['name']}\n\n"
skill_content += f"{cmd['help']}\n\n"
skill_content += f"**Parameters:** {', '.join(cmd['params'])}\n\n"
with open('SKILL.md', 'w') as f:
f.write(skill_content)
print("✓ SKILL.md generated")
if name == 'main':
generate_skill_md()
## Advanced Patterns
### Preview Loop Implementation
```python
@click.option('--preview', is_flag=True, help='Generate preview without applying')
@click.option('--preview-resolution', default=512, help='Preview image size')
def command_with_preview(preview, preview_resolution, **kwargs):
"""Command supporting preview mode."""
if preview:
# Generate low-resolution preview
preview_path = generate_preview(
kwargs['input'],
resolution=preview_resolution,
operation_params=kwargs
)
return {
'success': True,
'preview': preview_path,
'message': 'Preview ready. Remove --preview to apply changes.'
}
else:
# Execute full operation
return execute_full_operation(**kwargs)
Trajectory Recording
import json
import os
from datetime import datetime
class TrajectoryRecorder:
"""Record command sequences for reproducibility."""
def __init__(self, session_name=None):
self.session_name = session_name or datetime.now().isoformat()
self.trajectory = []
self.output_dir = os.path.expanduser('~/.myapp-cli/trajectories')
os.makedirs(self.output_dir, exist_ok=True)
def record(self, command, params, result):
"""Record a command execution."""
self.trajectory.append({
'timestamp': datetime.now().isoformat(),
'command': command,
'params': params,
'result': result
})
def save(self):
"""Save trajectory to disk."""
filepath = os.path.join(self.output_dir, f"{self.session_name}.json")
with open(filepath, 'w') as f:
json.dump(self.trajectory, f, indent=2)
return filepath
@staticmethod
def replay():
(trajectory_file) f:
trajectory = json.load(f)
step trajectory:
()
Environment Configuration
import os
from pathlib import Path
class Config:
"""Configuration management."""
def __init__(self):
self.config_dir = Path.home() / '.myapp-cli'
self.config_file = self.config_dir / 'config.json'
self.config_dir.mkdir(exist_ok=True)
self.load()
def load(self):
"""Load configuration from disk."""
if self.config_file.exists():
import json
with open(self.config_file) as f:
self._config = json.load(f)
else:
self._config = self.defaults()
def defaults(self):
"""Default configuration values."""
return {
'executable_path': os.getenv('MYAPP_EXECUTABLE'),
'default_format': 'JSON',
'enable_trajectories': True,
'preview_resolution': 512,
: (.config_dir / )
}
():
._config.get(key, default)
():
._config[key] = value
.save()
():
json
(.config_file, ) f:
json.dump(._config, f, indent=)
Integration with AI Agents
Claude Code / Cursor
OpenClaw / Pi
result = subprocess.run([
'myapp-cli', 'export', '--input', 'file.myapp', '--format', 'JSON'
], capture_output=True, text=True)
data = json.loads(result.stdout)
if data['success']:
output_path = data['output']
Publishing to CLI-Hub
1. Add to Registry
{
"myapp": {
"name": "myapp-cli",
"version": "0.1.0",
"description": "Agent interface for MyApp",
"install_source": "pip",
"package_name": "myapp-cli",
"skill_md": "src/myapp/SKILL.md",
"categories": ["graphics", "automation"],
"maintainer": "your-github-username",
"repo_url": "https://github.com/yourname/myapp-cli"
}
}
2. PyPI Publication
python setup.py sdist bdist_wheel
pip install twine
twine upload dist/*
Troubleshooting
Executable Not Found
export MYAPP_EXECUTABLE=/custom/path/to/myapp
myapp-cli --help
myapp-cli config set executable_path /custom/path/to/myapp
JSON Parsing Errors
try:
result = {'success': True, 'data': value}
click.echo(json.dumps(result, indent=2))
except TypeError as e:
result = {'success': False, 'error': f'Serialization error: {e}'}
click.echo(json.dumps(result, indent=2))
Preview Generation Fails
import tempfile
preview_dir = tempfile.mkdtemp(prefix='myapp-preview-')
import atexit
atexit.register(lambda: shutil.rmtree(preview_dir, ignore_errors=True))
Testing with Different Software Versions
import pytest
import subprocess
def get_myapp_version():
"""Detect installed MyApp version."""
result = subprocess.run(['myapp', '--version'], capture_output=True, text=True)
return version
@pytest.fixture
def skip_if_version_below(min_version):
"""Skip test if MyApp version too old."""
current = get_myapp_version()
if current < min_version:
pytest.skip(f"Requires MyApp >= {min_version}")
Best Practices
- Always return JSON - Agents rely on structured output
- Implement --preview - Let agents validate before committing
- Use absolute paths - Avoid ambiguity in file operations
- Validate inputs - Check file existence, parameter ranges
- Handle errors gracefully - Return
{"success": false, "error": "..."} instead of crashing
- Document in SKILL.md - Keep agent-facing docs updated
- Write E2E tests - Verify full workflows work end-to-end
- Support environment variables - Allow configuration without code changes
Reference Documentation