Default bootstrap BASE to setup.domhubs.com.br/hermes

Production one-liner serves install.sh + skill from the DomHubs VPS.
This commit is contained in:
domfelipe 2026-08-02 23:38:11 -03:00
parent 0c1e50f7cf
commit ee5e29e1fd
2 changed files with 12 additions and 11 deletions

View file

@ -9,30 +9,31 @@ One-liner + skill conversacional para deixar o **Hermes Agent** pronto no client
## One-liner (produção) ## One-liner (produção)
Repo: https://github.com/domfelipe/hermes-client-onboarding
```bash ```bash
curl -fsSL https://raw.githubusercontent.com/domfelipe/hermes-client-onboarding/main/install.sh | bash curl -fsSL https://setup.domhubs.com.br/hermes | bash
``` ```
Variantes: Variantes:
```bash ```bash
# só instalar skill + Hermes, sem abrir agente # só instalar skill + Hermes, sem abrir agente
curl -fsSL https://raw.githubusercontent.com/domfelipe/hermes-client-onboarding/main/install.sh | bash -s -- --no-launch curl -fsSL https://setup.domhubs.com.br/hermes | bash -s -- --no-launch
# forçar condutor # forçar condutor
curl -fsSL https://raw.githubusercontent.com/domfelipe/hermes-client-onboarding/main/install.sh | bash -s -- --conductor hermes curl -fsSL https://setup.domhubs.com.br/hermes | bash -s -- --conductor hermes
curl -fsSL https://raw.githubusercontent.com/domfelipe/hermes-client-onboarding/main/install.sh | bash -s -- --conductor codex curl -fsSL https://setup.domhubs.com.br/hermes | bash -s -- --conductor codex
``` ```
Alias de domínio (opcional, depois de apontar DNS/proxy): Espelho GitHub (fallback):
```bash ```bash
# quando setup.domhubs.com.br/hermes estiver no ar curl -fsSL https://raw.githubusercontent.com/domfelipe/hermes-client-onboarding/main/install.sh | bash
curl -fsSL https://setup.domhubs.com.br/hermes | bash # se usar o raw, force o BASE da skill se precisar:
# HERMES_ONBOARD_BASE=https://setup.domhubs.com.br/hermes bash
``` ```
Repo: https://github.com/domfelipe/hermes-client-onboarding
## Layout ## Layout
``` ```
@ -63,7 +64,7 @@ chmod +x install.sh skill/hermes-client-onboarding/scripts/apply-core-config.sh
O `install.sh` baixa a skill de `HERMES_ONBOARD_BASE` quando **não** está rodando a partir de um checkout com `skill/`. O `install.sh` baixa a skill de `HERMES_ONBOARD_BASE` quando **não** está rodando a partir de um checkout com `skill/`.
**Default atual:** `https://raw.githubusercontent.com/domfelipe/hermes-client-onboarding/main` **Default atual:** `https://setup.domhubs.com.br/hermes` (VPS `169.58.116.28`, Caddy + Lets Encrypt)
### Opção A — GitHub raw (já no ar) ### Opção A — GitHub raw (já no ar)

View file

@ -5,7 +5,7 @@
set -euo pipefail set -euo pipefail
SKILL_NAME="hermes-client-onboarding" SKILL_NAME="hermes-client-onboarding"
DEFAULT_BASE="${HERMES_ONBOARD_BASE:-https://raw.githubusercontent.com/domfelipe/hermes-client-onboarding/main}" DEFAULT_BASE="${HERMES_ONBOARD_BASE:-https://setup.domhubs.com.br/hermes}"
HERMES_INSTALL_URL="${HERMES_INSTALL_URL:-https://hermes-agent.nousresearch.com/install.sh}" HERMES_INSTALL_URL="${HERMES_INSTALL_URL:-https://hermes-agent.nousresearch.com/install.sh}"
KICKOFF_MSG="${HERMES_ONBOARD_KICKOFF:-Inicie agora o onboarding de cliente Hermes. Siga a skill hermes-client-onboarding fase a fase (Phase 1 primeiro). Fale em português brasileiro.}" KICKOFF_MSG="${HERMES_ONBOARD_KICKOFF:-Inicie agora o onboarding de cliente Hermes. Siga a skill hermes-client-onboarding fase a fase (Phase 1 primeiro). Fale em português brasileiro.}"