hermes-agent-plugin

(★ 32)

Inkbox platform plugin for Hermes Agent

File Explorer

  • .dockerignore
  • .gitignore
  • __init__.py
  • a2a_context.py
  • a2a_progress.py
  • adapter.py
  • after-install.md
  • bootstrap.py
  • cli.py
  • config.py
  • diagnostics.py
  • Dockerfile
  • doctor.py
  • hosted_call_context.py
  • plugin.yaml
  • pyproject.toml
  • README.md
  • realtime.py
  • setup_wizard.py
  • tools.py
  • uv.lock

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

docker build

View Details ▼

Build an image from a Dockerfile.

docker build .

Build a Docker image using the Dockerfile in the current directory:

docker build {{github.com/creack/docker-firefox}}

Build a Docker image from a Dockerfile at a specified URL:

docker build {{[-t|--tag]}} {{name:tag}} .

Build a Docker image and tag it:

🔍

docker exec

View Details ▼

This command is an alias of `docker container exec`.

tldr docker container exec

View documentation for the original command:

🔍

docker run

View Details ▼

This command is an alias of `docker container run`.

tldr docker container run

View documentation for the original command:

🔍

docker volume

View Details ▼

Manage Docker volumes.

docker volume create {{volume_name}}

Create a volume:

docker volume create --label {{label}} {{volume_name}}

Create a volume with a specific label:

docker volume create {{[-o|--opt]}} {{type}}={{tmpfs}} {{[-o|--opt]}} {{device}}={{tmpfs}} {{[-o|--opt]}} {{o}}={{size=100m,uid=1000}} {{volume_name}}

Create a `tmpfs` volume a size of 100 MiB and an uid of 1000:

🔍

pip install

View Details ▼

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

🔍

pip

View Details ▼

Python package manager.
Some subcommands such as `install` have their own usage documentation.

pip install {{package}}

Install a package (see `pip install` for more install examples):

pip install --user {{package}}

Install a package to the user's directory instead of the system-wide default location:

pip install {{[-U|--upgrade]}} {{package}}

Upgrade a package:

🔍

python

View Details ▼

Python language interpreter.

python

Start a REPL (interactive shell):

python {{path/to/file.py}}

Execute a specific Python file:

python -i {{path/to/file.py}}

Execute a specific Python file and start a REPL:

🔍

unset

View Details ▼

Remove shell variables or functions.

unset {{variable}}

Remove variable, or if the variable doesn't exist, remove the function of the same name:

unset -v {{variable1 variable2 ...}}

Remove variables:

unset -f {{function_name1 function_name2}}

Remove the function:

🔍

uv pip

View Details ▼

Provides pip-like commands for installing, uninstalling, and managing packages.

uv pip install {{package}}

Install a package:

uv pip install {{[-r|--requirements]}} {{requirements.txt}}

Install packages from a requirements file:

uv pip install {{package==1.2.3}}

Install a package with a specific version:

🔍

yolo

View Details ▼

Train, validate, or infer models on various tasks and versions.

yolo task=init

Create a copy of the default configuration in your current working directory:

yolo task={{detect|segment|classify}} mode=train cfg={{path/to/config.yaml}}

Train the object detection, instance segment, or classification model with the specified configuration file:

// repository documentation