Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions packs/hermes/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# packs/hermes/install.sh — Install Hermes Agent and configure it to use bedrockify
#
# Usage:
# ./install.sh [--region us-east-1] [--hermes-model anthropic/claude-opus-4.6] [--bedrockify-port 8090]
# ./install.sh [--region us-east-1] [--hermes-model global.anthropic.claude-opus-4-6-v1] [--bedrockify-port 8090]
#
# Assumes:
# - bedrockify is already installed and running (see packs/bedrockify/)
Expand All @@ -20,9 +20,10 @@ source "${SCRIPT_DIR}/../common.sh"

# ── Defaults ──────────────────────────────────────────────────────────────────
# Defaults from config file (written by bootstrap dispatcher), then CLI overrides
# Note: reads "hermes_model" key (not "model") — hermes needs OpenAI-style model ID
# Note: reads "hermes_model" key (not "model") — must be a Bedrock model ID
# that bedrockify accepts (same default as openclaw).
PACK_ARG_REGION="$(pack_config_get region "us-east-1")"
PACK_ARG_MODEL="$(pack_config_get hermes_model "anthropic/claude-opus-4.6")"
PACK_ARG_MODEL="$(pack_config_get hermes_model "global.anthropic.claude-opus-4-6-v1")"
PACK_ARG_BEDROCKIFY_PORT="$(pack_config_get bedrockify_port "8090")"

# ── Help ──────────────────────────────────────────────────────────────────────
Expand All @@ -34,7 +35,7 @@ Install Hermes Agent and configure it to use bedrockify.

Options:
--region AWS region for Bedrock (default: us-east-1)
--hermes-model Model ID (OpenAI-style) (default: anthropic/claude-opus-4.6)
--hermes-model Bedrock model ID (default: global.anthropic.claude-opus-4-6-v1)
--bedrockify-port Port where bedrockify listens (default: 8090)
--help Show this help message

Expand All @@ -43,7 +44,7 @@ Note: --model is ignored (it carries Bedrock model IDs from the dispatcher).

Examples:
./install.sh --region us-east-1
./install.sh --hermes-model anthropic/claude-sonnet-4.6 --bedrockify-port 8090
./install.sh --hermes-model global.anthropic.claude-sonnet-4-6 --bedrockify-port 8090
EOF
}

Expand Down
4 changes: 2 additions & 2 deletions packs/hermes/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ params:
description: "AWS region for Bedrock"
default: us-east-1
- name: hermes-model
description: "Model ID (OpenAI-style via bedrockify). Generic --model is ignored."
default: "anthropic/claude-opus-4.6"
description: "Bedrock model ID (resolved by bedrockify). Generic --model is ignored."
default: "global.anthropic.claude-opus-4-6-v1"
- name: bedrockify-port
description: "Port where bedrockify is running"
default: "8090"
Expand Down
2 changes: 1 addition & 1 deletion packs/registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"instance_type": "t4g.medium",
"root_volume_gb": 40,
"data_volume_gb": 0,
"default_model": "anthropic/claude-opus-4.6",
"default_model": "global.anthropic.claude-opus-4-6-v1",
"ports": {},
"brain": false,
"claude_code": false,
Expand Down
2 changes: 1 addition & 1 deletion packs/registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ packs:
instance_type: t4g.medium
root_volume_gb: 40
data_volume_gb: 0
default_model: "anthropic/claude-opus-4.6"
default_model: "global.anthropic.claude-opus-4-6-v1"
ports: {}
brain: false
claude_code: false
Expand Down