hermes-agent-plugin
Inkbox platform plugin for Hermes Agent
File Explorer
- canary.yml
- live-a2a.yml
- live-channels.yml
- live-external-events.yml
- live-stack.yml
- live-voice.yml
- scheduled-failure-report.yml
- tests.yml
- hermes_with_iphone.png
- live-ci.md
- send_external_event.py
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- check_hermes_plugin_scan.py
- install_hermes.sh
- report_scheduled_failure.sh
- resolve_inkbox_identity.py
- restrict_hermes_tools.py
- test_host_interface.py
- sitecustomize.py
- a2a_driver.py
- conftest.py
- mock_openai.py
- test_cross_channel.py
- test_email_intelligence.py
- test_email_reply.py
- test_external_event_github.py
- test_external_event_intelligence.py
- test_sms.py
- test_voice.py
- voice_driver.py
- voice_marker.py
- conftest.py
- test_a2a.py
- test_adapter_dedup.py
- test_agent_identity_marker.py
- test_bootstrap.py
- test_channel_overrides.py
- test_ci_import_isolation.py
- test_ci_resilience.py
- test_config_tools.py
- test_contact_memories.py
- test_contact_tools.py
- test_delivery_failure_retry.py
- test_diagnostics.py
- test_email_self_guard.py
- test_external_events.py
- test_external_reply.py
- test_hosted_call_completion.py
- test_hosted_call_context.py
- test_imessage.py
- test_inbound_mail_body.py
- test_mock_openai.py
- test_place_call_origination.py
- test_realtime_auth.py
- test_realtime_bridge_parity.py
- test_realtime_capabilities.py
- test_realtime_contact_tools.py
- test_registration.py
- test_scheduled_failure_reporting.py
- test_setup_wizard.py
- test_sms_conversations.py
- test_subscription_channels.py
- test_tunnel_logging.py
- test_user_agent.py
- test_voice_leg_assertions.py
- test_voice_live_helpers.py
- test_voice_marker.py
- test_voice_progress_suppression.py
- test_webhook_providers.py
- test_webhook_reconcile_flag.py
- __init__.py
- base.py
- github.py
- inkbox.py
- .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
jsDelivrjsDelivr 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 ▼
docker build
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 ▼
docker exec
This command is an alias of `docker container exec`.
tldr docker container exec
View documentation for the original command:
docker run
View Details ▼
docker run
This command is an alias of `docker container run`.
tldr docker container run
View documentation for the original command:
docker volume
View Details ▼
docker volume
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 ▼
pip install
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 ▼
pip
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
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 ▼
unset
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 ▼
uv pip
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 ▼
yolo
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:
