b4fbd6fe9f
Deploy Site / deploy-vercel (push) Has been skipped
Deploy Site / deploy-docs (push) Has been skipped
Build Skills Index / build-index (push) Has been skipped
Build Skills Index / trigger-deploy (push) Waiting to run
CI / Deny unrelated histories (push) Has been skipped
CI / CI timing report (push) Blocked by required conditions
CI / Detect affected areas (push) Successful in 27m35s
CI / OSV scan (push) Failing after 4s
CI / Build&Test Docker image (push) Successful in 9s
CI / Supply-chain scan (push) Has been skipped
CI / Lint Docker scripts (push) Failing after 5m13s
CI / Check contributors (push) Failing after 12m8s
CI / Docs Site (push) Failing after 12m8s
CI / TypeScript (push) Failing after 12m8s
CI / Python lints (push) Failing after 12m9s
CI / Python tests (push) Failing after 12m9s
CI / Check uv.lock (push) Failing after 23m22s
CI / All required checks pass (push) Waiting to run
29 lines
1.1 KiB
Batchfile
29 lines
1.1 KiB
Batchfile
@echo off
|
|
REM ============================================================================
|
|
REM Hermes Agent Installer for Windows (CMD wrapper)
|
|
REM ============================================================================
|
|
REM This batch file launches the PowerShell installer for users running CMD.
|
|
REM
|
|
REM Usage:
|
|
REM curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.cmd -o install.cmd && install.cmd && del install.cmd
|
|
REM
|
|
REM Or if you're already in PowerShell, use the direct command instead:
|
|
REM iex (irm https://hermes-agent.nousresearch.com/install.ps1)
|
|
REM ============================================================================
|
|
|
|
echo.
|
|
echo Hermes Agent Installer
|
|
echo Launching PowerShell installer...
|
|
echo.
|
|
|
|
powershell -ExecutionPolicy ByPass -NoProfile -Command "iex (irm https://hermes-agent.nousresearch.com/install.ps1)"
|
|
|
|
if %ERRORLEVEL% NEQ 0 (
|
|
echo.
|
|
echo Installation failed. Please try running PowerShell directly:
|
|
echo powershell -ExecutionPolicy ByPass -c "iex (irm https://hermes-agent.nousresearch.com/install.ps1)"
|
|
echo.
|
|
pause
|
|
exit /b 1
|
|
)
|