mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-06 10:47:12 +08:00
Compare commits
36 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c9987f1e22 | ||
|
|
dda3894523 | ||
|
|
ddf83e95b0 | ||
|
|
5269012c51 | ||
|
|
5ec0667fb3 | ||
|
|
3aabae20eb | ||
|
|
2964f25534 | ||
|
|
b352e8ed17 | ||
|
|
301c698491 | ||
|
|
023730314b | ||
|
|
fcce49db3f | ||
|
|
42db075e10 | ||
|
|
74127e0c48 | ||
|
|
64a63d0d2b | ||
|
|
12307a66e0 | ||
|
|
5f334e86fd | ||
|
|
d1d0ed4016 | ||
|
|
ca8f2c7907 | ||
|
|
27c5fa5381 | ||
|
|
9ca5ea1375 | ||
|
|
fa92720d2c | ||
|
|
fd97a7cba4 | ||
|
|
6dcf5bcbc0 | ||
|
|
a66303eaef | ||
|
|
5e4473df96 | ||
|
|
215bf4b96c | ||
|
|
db884f4646 | ||
|
|
420f68e4e2 | ||
|
|
935970898f | ||
|
|
322cc94c98 | ||
|
|
cd381d6ba5 | ||
|
|
e00297782d | ||
|
|
d5d7b5c6dc | ||
|
|
9f3d393a4d | ||
|
|
6c624f197c | ||
|
|
7b61f86529 |
@@ -384,9 +384,9 @@ IMAGE_TOOLS_DEBUG=false
|
|||||||
# Default STT provider is "local" (faster-whisper) — runs on your machine, no API key needed.
|
# Default STT provider is "local" (faster-whisper) — runs on your machine, no API key needed.
|
||||||
# Install with: pip install faster-whisper
|
# Install with: pip install faster-whisper
|
||||||
# Model downloads automatically on first use (~150 MB for "base").
|
# Model downloads automatically on first use (~150 MB for "base").
|
||||||
# To use cloud providers instead, set GROQ_API_KEY or VOICE_TOOLS_OPENAI_KEY above.
|
# To use cloud providers instead, set GROQ_API_KEY, VOICE_TOOLS_OPENAI_KEY, or ELEVENLABS_API_KEY above.
|
||||||
# Provider priority: local > groq > openai
|
# Provider priority: local > groq > openai > mistral > xai > elevenlabs
|
||||||
# Configure in config.yaml: stt.provider: local | groq | openai
|
# Configure in config.yaml: stt.provider: local | groq | openai | mistral | xai | elevenlabs
|
||||||
|
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
# STT ADVANCED OVERRIDES (optional)
|
# STT ADVANCED OVERRIDES (optional)
|
||||||
@@ -394,10 +394,12 @@ IMAGE_TOOLS_DEBUG=false
|
|||||||
# Override default STT models per provider (normally set via stt.model in config.yaml)
|
# Override default STT models per provider (normally set via stt.model in config.yaml)
|
||||||
# STT_GROQ_MODEL=whisper-large-v3-turbo
|
# STT_GROQ_MODEL=whisper-large-v3-turbo
|
||||||
# STT_OPENAI_MODEL=whisper-1
|
# STT_OPENAI_MODEL=whisper-1
|
||||||
|
# STT_ELEVENLABS_MODEL=scribe_v2
|
||||||
|
|
||||||
# Override STT provider endpoints (for proxies or self-hosted instances)
|
# Override STT provider endpoints (for proxies or self-hosted instances)
|
||||||
# GROQ_BASE_URL=https://api.groq.com/openai/v1
|
# GROQ_BASE_URL=https://api.groq.com/openai/v1
|
||||||
# STT_OPENAI_BASE_URL=https://api.openai.com/v1
|
# STT_OPENAI_BASE_URL=https://api.openai.com/v1
|
||||||
|
# ELEVENLABS_STT_BASE_URL=https://api.elevenlabs.io/v1
|
||||||
|
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
# MICROSOFT TEAMS INTEGRATION
|
# MICROSOFT TEAMS INTEGRATION
|
||||||
|
|||||||
341
.github/workflows/desktop-release.yml
vendored
Normal file
341
.github/workflows/desktop-release.yml
vendored
Normal file
@@ -0,0 +1,341 @@
|
|||||||
|
name: Desktop Release
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
release:
|
||||||
|
types: [published]
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
channel:
|
||||||
|
description: Release channel to build
|
||||||
|
required: true
|
||||||
|
default: nightly
|
||||||
|
type: choice
|
||||||
|
options:
|
||||||
|
- nightly
|
||||||
|
- stable
|
||||||
|
release_tag:
|
||||||
|
description: "Required when channel=stable (example: v2026.5.5)"
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: desktop-release-${{ github.ref }}
|
||||||
|
cancel-in-progress: false
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
prepare:
|
||||||
|
if: github.repository == 'NousResearch/hermes-agent'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
outputs:
|
||||||
|
channel: ${{ steps.meta.outputs.channel }}
|
||||||
|
release_name: ${{ steps.meta.outputs.release_name }}
|
||||||
|
release_tag: ${{ steps.meta.outputs.release_tag }}
|
||||||
|
version: ${{ steps.meta.outputs.version }}
|
||||||
|
is_stable: ${{ steps.meta.outputs.is_stable }}
|
||||||
|
steps:
|
||||||
|
- id: meta
|
||||||
|
env:
|
||||||
|
EVENT_NAME: ${{ github.event_name }}
|
||||||
|
INPUT_CHANNEL: ${{ github.event.inputs.channel }}
|
||||||
|
INPUT_RELEASE_TAG: ${{ github.event.inputs.release_tag }}
|
||||||
|
RELEASE_TAG_FROM_EVENT: ${{ github.event.release.tag_name }}
|
||||||
|
GITHUB_SHA: ${{ github.sha }}
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
channel="nightly"
|
||||||
|
release_tag="desktop-nightly"
|
||||||
|
is_stable="false"
|
||||||
|
|
||||||
|
if [[ "$EVENT_NAME" == "release" ]]; then
|
||||||
|
channel="stable"
|
||||||
|
release_tag="$RELEASE_TAG_FROM_EVENT"
|
||||||
|
is_stable="true"
|
||||||
|
elif [[ "$EVENT_NAME" == "workflow_dispatch" && "$INPUT_CHANNEL" == "stable" ]]; then
|
||||||
|
channel="stable"
|
||||||
|
release_tag="$INPUT_RELEASE_TAG"
|
||||||
|
is_stable="true"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ "$channel" == "stable" ]]; then
|
||||||
|
if [[ -z "$release_tag" ]]; then
|
||||||
|
echo "Stable desktop releases require a release tag." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
version="${release_tag#v}"
|
||||||
|
release_name="Hermes Desktop ${release_tag}"
|
||||||
|
else
|
||||||
|
stamp="$(date -u +%Y%m%d)"
|
||||||
|
short_sha="${GITHUB_SHA::7}"
|
||||||
|
version="0.0.0-nightly.${stamp}.${short_sha}"
|
||||||
|
release_name="Hermes Desktop Nightly ${stamp}-${short_sha}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
{
|
||||||
|
echo "channel=$channel"
|
||||||
|
echo "release_name=$release_name"
|
||||||
|
echo "release_tag=$release_tag"
|
||||||
|
echo "version=$version"
|
||||||
|
echo "is_stable=$is_stable"
|
||||||
|
} >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
|
build:
|
||||||
|
if: github.repository == 'NousResearch/hermes-agent'
|
||||||
|
needs: prepare
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- platform: mac
|
||||||
|
runner: macos-latest
|
||||||
|
build_args: --mac dmg zip
|
||||||
|
- platform: win
|
||||||
|
runner: windows-latest
|
||||||
|
build_args: --win nsis msi
|
||||||
|
runs-on: ${{ matrix.runner }}
|
||||||
|
env:
|
||||||
|
DESKTOP_CHANNEL: ${{ needs.prepare.outputs.channel }}
|
||||||
|
DESKTOP_VERSION: ${{ needs.prepare.outputs.version }}
|
||||||
|
MAC_CSC_LINK: ${{ secrets.CSC_LINK }}
|
||||||
|
MAC_CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
|
||||||
|
APPLE_API_KEY: ${{ secrets.APPLE_API_KEY }}
|
||||||
|
APPLE_API_KEY_ID: ${{ secrets.APPLE_API_KEY_ID }}
|
||||||
|
APPLE_API_ISSUER: ${{ secrets.APPLE_API_ISSUER }}
|
||||||
|
WIN_CSC_LINK: ${{ secrets.WIN_CSC_LINK }}
|
||||||
|
WIN_CSC_KEY_PASSWORD: ${{ secrets.WIN_CSC_KEY_PASSWORD }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
|
||||||
|
|
||||||
|
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
||||||
|
with:
|
||||||
|
node-version: 20
|
||||||
|
cache: npm
|
||||||
|
cache-dependency-path: package-lock.json
|
||||||
|
|
||||||
|
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
|
||||||
|
with:
|
||||||
|
python-version: "3.11"
|
||||||
|
|
||||||
|
- name: Enforce signing gates for stable releases
|
||||||
|
if: needs.prepare.outputs.is_stable == 'true'
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
missing=()
|
||||||
|
|
||||||
|
if [[ "${{ matrix.platform }}" == "mac" ]]; then
|
||||||
|
[[ -z "${MAC_CSC_LINK:-}" ]] && missing+=("CSC_LINK")
|
||||||
|
[[ -z "${MAC_CSC_KEY_PASSWORD:-}" ]] && missing+=("CSC_KEY_PASSWORD")
|
||||||
|
[[ -z "${APPLE_API_KEY:-}" ]] && missing+=("APPLE_API_KEY")
|
||||||
|
[[ -z "${APPLE_API_KEY_ID:-}" ]] && missing+=("APPLE_API_KEY_ID")
|
||||||
|
[[ -z "${APPLE_API_ISSUER:-}" ]] && missing+=("APPLE_API_ISSUER")
|
||||||
|
else
|
||||||
|
[[ -z "${WIN_CSC_LINK:-}" ]] && missing+=("WIN_CSC_LINK")
|
||||||
|
[[ -z "${WIN_CSC_KEY_PASSWORD:-}" ]] && missing+=("WIN_CSC_KEY_PASSWORD")
|
||||||
|
fi
|
||||||
|
|
||||||
|
if (( ${#missing[@]} > 0 )); then
|
||||||
|
echo "::error::Stable desktop release missing required secrets: ${missing[*]}"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Install workspace dependencies
|
||||||
|
run: npm ci
|
||||||
|
|
||||||
|
- name: Build bundled TUI payload
|
||||||
|
run: npm --prefix ui-tui run build
|
||||||
|
|
||||||
|
- name: Build desktop renderer
|
||||||
|
run: npm --prefix apps/desktop run build
|
||||||
|
|
||||||
|
- name: Stage Hermes payload
|
||||||
|
run: npm --prefix apps/desktop run stage:hermes
|
||||||
|
|
||||||
|
- name: Map macOS signing credentials
|
||||||
|
if: matrix.platform == 'mac'
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
has_link=0
|
||||||
|
has_pass=0
|
||||||
|
[[ -n "${MAC_CSC_LINK:-}" ]] && has_link=1
|
||||||
|
[[ -n "${MAC_CSC_KEY_PASSWORD:-}" ]] && has_pass=1
|
||||||
|
|
||||||
|
if [[ $has_link -eq 1 && $has_pass -eq 1 ]]; then
|
||||||
|
echo "CSC_LINK=${MAC_CSC_LINK}" >> "$GITHUB_ENV"
|
||||||
|
echo "CSC_KEY_PASSWORD=${MAC_CSC_KEY_PASSWORD}" >> "$GITHUB_ENV"
|
||||||
|
elif [[ $has_link -eq 1 || $has_pass -eq 1 ]]; then
|
||||||
|
echo "::error::macOS signing secrets are partially configured. Set both CSC_LINK and CSC_KEY_PASSWORD."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Map Windows signing credentials
|
||||||
|
if: matrix.platform == 'win'
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
has_link=0
|
||||||
|
has_pass=0
|
||||||
|
[[ -n "${WIN_CSC_LINK:-}" ]] && has_link=1
|
||||||
|
[[ -n "${WIN_CSC_KEY_PASSWORD:-}" ]] && has_pass=1
|
||||||
|
|
||||||
|
if [[ $has_link -eq 1 && $has_pass -eq 1 ]]; then
|
||||||
|
echo "CSC_LINK=${WIN_CSC_LINK}" >> "$GITHUB_ENV"
|
||||||
|
echo "CSC_KEY_PASSWORD=${WIN_CSC_KEY_PASSWORD}" >> "$GITHUB_ENV"
|
||||||
|
echo "CSC_FOR_PULL_REQUEST=true" >> "$GITHUB_ENV"
|
||||||
|
elif [[ $has_link -eq 1 || $has_pass -eq 1 ]]; then
|
||||||
|
echo "::error::Windows signing secrets are partially configured. Set both WIN_CSC_LINK and WIN_CSC_KEY_PASSWORD."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Build desktop installers
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
npm --prefix apps/desktop exec electron-builder -- \
|
||||||
|
${{ matrix.build_args }} \
|
||||||
|
--publish never \
|
||||||
|
--config.extraMetadata.version="${DESKTOP_VERSION}" \
|
||||||
|
--config.extraMetadata.desktopChannel="${DESKTOP_CHANNEL}" \
|
||||||
|
'--config.artifactName=Hermes-${version}-${env.DESKTOP_CHANNEL}-${os}-${arch}.${ext}'
|
||||||
|
|
||||||
|
- name: Notarize and staple macOS DMG
|
||||||
|
if: matrix.platform == 'mac' && needs.prepare.outputs.is_stable == 'true'
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
dmg_path="$(ls apps/desktop/release/*.dmg | head -n 1)"
|
||||||
|
node apps/desktop/scripts/notarize-artifact.cjs "$dmg_path"
|
||||||
|
|
||||||
|
- name: Validate macOS notarization and Gatekeeper trust
|
||||||
|
if: matrix.platform == 'mac' && needs.prepare.outputs.is_stable == 'true'
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
app_path="$(ls -d apps/desktop/release/mac*/Hermes.app | head -n 1)"
|
||||||
|
dmg_path="$(ls apps/desktop/release/*.dmg | head -n 1)"
|
||||||
|
xcrun stapler validate "$app_path"
|
||||||
|
xcrun stapler validate "$dmg_path"
|
||||||
|
spctl --assess --type execute --verbose=4 "$app_path"
|
||||||
|
|
||||||
|
- name: Generate desktop checksums
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
node <<'EOF'
|
||||||
|
const crypto = require('node:crypto')
|
||||||
|
const fs = require('node:fs')
|
||||||
|
const path = require('node:path')
|
||||||
|
|
||||||
|
const releaseDir = path.resolve('apps/desktop/release')
|
||||||
|
const platform = process.env.PLATFORM
|
||||||
|
const extensions = platform === 'mac' ? ['.dmg', '.zip'] : ['.exe', '.msi']
|
||||||
|
const files = fs
|
||||||
|
.readdirSync(releaseDir)
|
||||||
|
.filter(name => extensions.some(ext => name.endsWith(ext)))
|
||||||
|
.sort()
|
||||||
|
|
||||||
|
if (!files.length) {
|
||||||
|
throw new Error(`No release artifacts were produced for ${platform}`)
|
||||||
|
}
|
||||||
|
|
||||||
|
const lines = files.map(name => {
|
||||||
|
const full = path.join(releaseDir, name)
|
||||||
|
const hash = crypto.createHash('sha256').update(fs.readFileSync(full)).digest('hex')
|
||||||
|
return `${hash} ${name}`
|
||||||
|
})
|
||||||
|
fs.writeFileSync(path.join(releaseDir, `SHA256SUMS-${platform}.txt`), `${lines.join('\n')}\n`)
|
||||||
|
EOF
|
||||||
|
env:
|
||||||
|
PLATFORM: ${{ matrix.platform }}
|
||||||
|
|
||||||
|
- name: Upload packaged desktop artifacts
|
||||||
|
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
|
||||||
|
with:
|
||||||
|
name: desktop-${{ matrix.platform }}
|
||||||
|
path: |
|
||||||
|
apps/desktop/release/*.dmg
|
||||||
|
apps/desktop/release/*.zip
|
||||||
|
apps/desktop/release/*.exe
|
||||||
|
apps/desktop/release/*.msi
|
||||||
|
apps/desktop/release/SHA256SUMS-${{ matrix.platform }}.txt
|
||||||
|
if-no-files-found: error
|
||||||
|
|
||||||
|
publish:
|
||||||
|
if: github.repository == 'NousResearch/hermes-agent'
|
||||||
|
needs: [prepare, build]
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ github.token }}
|
||||||
|
CHANNEL: ${{ needs.prepare.outputs.channel }}
|
||||||
|
RELEASE_NAME: ${{ needs.prepare.outputs.release_name }}
|
||||||
|
RELEASE_TAG: ${{ needs.prepare.outputs.release_tag }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
|
||||||
|
with:
|
||||||
|
pattern: desktop-*
|
||||||
|
merge-multiple: true
|
||||||
|
path: dist/desktop
|
||||||
|
|
||||||
|
- name: Publish desktop assets to GitHub release
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
shopt -s globstar nullglob
|
||||||
|
|
||||||
|
files=(
|
||||||
|
dist/desktop/**/*.dmg
|
||||||
|
dist/desktop/**/*.zip
|
||||||
|
dist/desktop/**/*.exe
|
||||||
|
dist/desktop/**/*.msi
|
||||||
|
dist/desktop/**/SHA256SUMS-*.txt
|
||||||
|
)
|
||||||
|
|
||||||
|
if (( ${#files[@]} == 0 )); then
|
||||||
|
echo "No desktop artifacts were downloaded for publishing." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ "$CHANNEL" == "nightly" ]]; then
|
||||||
|
git tag -f "$RELEASE_TAG" "$GITHUB_SHA"
|
||||||
|
git push origin "refs/tags/$RELEASE_TAG" --force
|
||||||
|
|
||||||
|
notes="Automated nightly desktop build from main. This prerelease is replaced on each new run."
|
||||||
|
|
||||||
|
if gh release view "$RELEASE_TAG" >/dev/null 2>&1; then
|
||||||
|
while IFS= read -r asset_name; do
|
||||||
|
gh release delete-asset "$RELEASE_TAG" "$asset_name" --yes
|
||||||
|
done < <(gh release view "$RELEASE_TAG" --json assets -q '.assets[].name')
|
||||||
|
|
||||||
|
gh release edit "$RELEASE_TAG" \
|
||||||
|
--title "$RELEASE_NAME" \
|
||||||
|
--prerelease \
|
||||||
|
--notes "$notes"
|
||||||
|
else
|
||||||
|
gh release create "$RELEASE_TAG" \
|
||||||
|
--target "$GITHUB_SHA" \
|
||||||
|
--title "$RELEASE_NAME" \
|
||||||
|
--notes "$notes" \
|
||||||
|
--prerelease
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
if ! gh release view "$RELEASE_TAG" >/dev/null 2>&1; then
|
||||||
|
notes="Automated desktop artifacts attached by desktop-release workflow."
|
||||||
|
gh release create "$RELEASE_TAG" \
|
||||||
|
--target "$GITHUB_SHA" \
|
||||||
|
--title "$RELEASE_NAME" \
|
||||||
|
--notes "$notes"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
gh release upload "$RELEASE_TAG" "${files[@]}" --clobber
|
||||||
8
.github/workflows/nix-lockfile-fix.yml
vendored
8
.github/workflows/nix-lockfile-fix.yml
vendored
@@ -6,8 +6,8 @@ on:
|
|||||||
paths:
|
paths:
|
||||||
- 'ui-tui/package-lock.json'
|
- 'ui-tui/package-lock.json'
|
||||||
- 'ui-tui/package.json'
|
- 'ui-tui/package.json'
|
||||||
- 'web/package-lock.json'
|
- 'apps/dashboard/package-lock.json'
|
||||||
- 'web/package.json'
|
- 'apps/dashboard/package.json'
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
pr_number:
|
pr_number:
|
||||||
@@ -28,7 +28,7 @@ concurrency:
|
|||||||
jobs:
|
jobs:
|
||||||
# ── Auto-fix on main ───────────────────────────────────────────────
|
# ── Auto-fix on main ───────────────────────────────────────────────
|
||||||
# Fires when a push to main touches package.json or package-lock.json
|
# Fires when a push to main touches package.json or package-lock.json
|
||||||
# in ui-tui/ or web/. Runs fix-lockfiles and pushes the hash
|
# in ui-tui/ or apps/dashboard/. Runs fix-lockfiles and pushes the hash
|
||||||
# update commit directly to main so Nix builds never stay broken.
|
# update commit directly to main so Nix builds never stay broken.
|
||||||
#
|
#
|
||||||
# Safety invariants:
|
# Safety invariants:
|
||||||
@@ -110,7 +110,7 @@ jobs:
|
|||||||
# run recompute from the correct package-lock state.
|
# run recompute from the correct package-lock state.
|
||||||
pkg_changed="$(git diff --name-only "$BASE_SHA"..origin/main -- \
|
pkg_changed="$(git diff --name-only "$BASE_SHA"..origin/main -- \
|
||||||
'ui-tui/package-lock.json' 'ui-tui/package.json' \
|
'ui-tui/package-lock.json' 'ui-tui/package.json' \
|
||||||
'web/package-lock.json' 'web/package.json' || true)"
|
'apps/dashboard/package-lock.json' 'apps/dashboard/package.json' || true)"
|
||||||
if [ -n "$pkg_changed" ]; then
|
if [ -n "$pkg_changed" ]; then
|
||||||
echo "::warning::Package files changed since hash computation — aborting; a fresh run will recompute"
|
echo "::warning::Package files changed since hash computation — aborting; a fresh run will recompute"
|
||||||
exit 0
|
exit 0
|
||||||
|
|||||||
13
.gitignore
vendored
13
.gitignore
vendored
@@ -54,6 +54,10 @@ environments/benchmarks/evals/
|
|||||||
|
|
||||||
# Web UI build output
|
# Web UI build output
|
||||||
hermes_cli/web_dist/
|
hermes_cli/web_dist/
|
||||||
|
apps/desktop/build/
|
||||||
|
apps/desktop/dist/
|
||||||
|
apps/desktop/release/
|
||||||
|
apps/desktop/*.tsbuildinfo
|
||||||
|
|
||||||
# Web UI assets — synced from @nous-research/ui at build time via
|
# Web UI assets — synced from @nous-research/ui at build time via
|
||||||
# `npm run sync-assets` (see web/package.json).
|
# `npm run sync-assets` (see web/package.json).
|
||||||
@@ -70,3 +74,12 @@ mini-swe-agent/
|
|||||||
result
|
result
|
||||||
website/static/api/skills-index.json
|
website/static/api/skills-index.json
|
||||||
models-dev-upstream/
|
models-dev-upstream/
|
||||||
|
|
||||||
|
# Local editor / agent tooling (machine-specific; keep in global config, not the repo)
|
||||||
|
.codex/
|
||||||
|
.cursor/
|
||||||
|
.gemini/
|
||||||
|
.zed/
|
||||||
|
.mcp.json
|
||||||
|
opencode.json
|
||||||
|
config/mcporter.json
|
||||||
|
|||||||
27
AGENTS.md
27
AGENTS.md
@@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
Instructions for AI coding assistants and developers working on the hermes-agent codebase.
|
Instructions for AI coding assistants and developers working on the hermes-agent codebase.
|
||||||
|
|
||||||
|
**Never give up on the right solution.**
|
||||||
|
|
||||||
## Development Environment
|
## Development Environment
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
@@ -66,6 +68,29 @@ hermes-agent/
|
|||||||
`gateway.log` when running the gateway. Profile-aware via `get_hermes_home()`.
|
`gateway.log` when running the gateway. Profile-aware via `get_hermes_home()`.
|
||||||
Browse with `hermes logs [--follow] [--level ...] [--session ...]`.
|
Browse with `hermes logs [--follow] [--level ...] [--session ...]`.
|
||||||
|
|
||||||
|
## TypeScript Style
|
||||||
|
|
||||||
|
Applies to TypeScript across Hermes: desktop, TUI, website, and future TS packages.
|
||||||
|
|
||||||
|
- Prefer small nanostores over component state when state is shared, reused, or read by distant UI.
|
||||||
|
- Let each feature own its atoms. Chat state belongs near chat, shell state near shell, shared state in `src/store`.
|
||||||
|
- Components that render from an atom should use `useStore`. Non-rendering actions should read with `$atom.get()`.
|
||||||
|
- Do not pass state through three components when the leaf can subscribe to the atom.
|
||||||
|
- Keep persistence beside the atom that owns it.
|
||||||
|
- Keep route roots thin. They compose routes and shell; they should not become controllers.
|
||||||
|
- No monolithic hooks. A hook should own one narrow job.
|
||||||
|
- Prefer colocated action modules over hidden god hooks.
|
||||||
|
- If a callback is pure side effect, use the terse void form:
|
||||||
|
`onState={st => void setGatewayState(st)}`.
|
||||||
|
- Async UI handlers should make intent explicit:
|
||||||
|
`onClick={() => void save()}`.
|
||||||
|
- Prefer interfaces for public props and shared object shapes. Avoid `type X = { ... }` for object props.
|
||||||
|
- Extend React primitives for props: `React.ComponentProps<'button'>`, `React.ComponentProps<typeof Dialog>`, `Omit<...>`, `Pick<...>`.
|
||||||
|
- Table-driven beats condition ladders when mapping ids, routes, or views.
|
||||||
|
- `src/app` owns routes, pages, and page-specific components.
|
||||||
|
- `src/store` owns shared atoms.
|
||||||
|
- `src/lib` owns shared pure helpers.
|
||||||
|
|
||||||
## File Dependency Chain
|
## File Dependency Chain
|
||||||
|
|
||||||
```
|
```
|
||||||
@@ -249,7 +274,7 @@ npm test # vitest
|
|||||||
|
|
||||||
The dashboard embeds the real `hermes --tui` — **not** a rewrite. See `hermes_cli/pty_bridge.py` + the `@app.websocket("/api/pty")` endpoint in `hermes_cli/web_server.py`.
|
The dashboard embeds the real `hermes --tui` — **not** a rewrite. See `hermes_cli/pty_bridge.py` + the `@app.websocket("/api/pty")` endpoint in `hermes_cli/web_server.py`.
|
||||||
|
|
||||||
- Browser loads `web/src/pages/ChatPage.tsx`, which mounts xterm.js's `Terminal` with the WebGL renderer, `@xterm/addon-fit` for container-driven resize, and `@xterm/addon-unicode11` for modern wide-character widths.
|
- Browser loads `apps/dashboard/src/pages/ChatPage.tsx`, which mounts xterm.js's `Terminal` with the WebGL renderer, `@xterm/addon-fit` for container-driven resize, and `@xterm/addon-unicode11` for modern wide-character widths.
|
||||||
- `/api/pty?token=…` upgrades to a WebSocket; auth uses the same ephemeral `_SESSION_TOKEN` as REST, via query param (browsers can't set `Authorization` on WS upgrade).
|
- `/api/pty?token=…` upgrades to a WebSocket; auth uses the same ephemeral `_SESSION_TOKEN` as REST, via query param (browsers can't set `Authorization` on WS upgrade).
|
||||||
- The server spawns whatever `hermes --tui` would spawn, through `ptyprocess` (POSIX PTY — WSL works, native Windows does not).
|
- The server spawns whatever `hermes --tui` would spawn, through `ptyprocess` (POSIX PTY — WSL works, native Windows does not).
|
||||||
- Frames: raw PTY bytes each direction; resize via `\x1b[RESIZE:<cols>;<rows>]` intercepted on the server and applied with `TIOCSWINSZ`.
|
- Frames: raw PTY bytes each direction; resize via `\x1b[RESIZE:<cols>;<rows>]` intercepted on the server and applied with `TIOCSWINSZ`.
|
||||||
|
|||||||
@@ -10,17 +10,34 @@ Browser-based dashboard for managing Hermes Agent configuration, API keys, and m
|
|||||||
|
|
||||||
## Development
|
## Development
|
||||||
|
|
||||||
```bash
|
Install workspace dependencies from the repo root first:
|
||||||
# Start the backend API server
|
|
||||||
cd ../
|
|
||||||
python -m hermes_cli.main web --no-open
|
|
||||||
|
|
||||||
# In another terminal, start the Vite dev server (with HMR + API proxy)
|
```bash
|
||||||
cd web/
|
npm install
|
||||||
|
```
|
||||||
|
|
||||||
|
Start the backend API server from the repo root:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
hermes dashboard --tui --no-open
|
||||||
|
```
|
||||||
|
|
||||||
|
`--tui` exposes the in-browser Chat tab through `/api/pty`. Omit it if you only need the config/session dashboard.
|
||||||
|
|
||||||
|
In another terminal, start the Vite dev server:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd apps/dashboard
|
||||||
npm run dev
|
npm run dev
|
||||||
```
|
```
|
||||||
|
|
||||||
The Vite dev server proxies `/api` requests to `http://127.0.0.1:9119` (the FastAPI backend).
|
The Vite dev server proxies `/api`, `/api/pty`, and `/dashboard-plugins` to `http://127.0.0.1:9119` (the FastAPI backend). It also fetches the backend's `index.html` on each dev page load so the ephemeral session token stays in sync.
|
||||||
|
|
||||||
|
If the `hermes` entry point is not installed, use:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
python -m hermes_cli.main dashboard --tui --no-open
|
||||||
|
```
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
|
||||||
@@ -28,7 +45,7 @@ The Vite dev server proxies `/api` requests to `http://127.0.0.1:9119` (the Fast
|
|||||||
npm run build
|
npm run build
|
||||||
```
|
```
|
||||||
|
|
||||||
This outputs to `../hermes_cli/web_dist/`, which the FastAPI server serves as a static SPA. The built assets are included in the Python package via `pyproject.toml` package-data.
|
This outputs to `../../hermes_cli/web_dist/`, which the FastAPI server serves as a static SPA. The built assets are included in the Python package via `pyproject.toml` package-data.
|
||||||
|
|
||||||
## Structure
|
## Structure
|
||||||
|
|
||||||
@@ -1,13 +1,14 @@
|
|||||||
{
|
{
|
||||||
"name": "web",
|
"name": "dashboard",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "web",
|
"name": "dashboard",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@hermes/shared": "file:../shared",
|
||||||
"@nous-research/ui": "^0.10.0",
|
"@nous-research/ui": "^0.10.0",
|
||||||
"@observablehq/plot": "^0.6.17",
|
"@observablehq/plot": "^0.6.17",
|
||||||
"@react-three/fiber": "^9.6.0",
|
"@react-three/fiber": "^9.6.0",
|
||||||
@@ -45,6 +46,13 @@
|
|||||||
"vite": "^7.3.1"
|
"vite": "^7.3.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"../shared": {
|
||||||
|
"name": "@hermes/shared",
|
||||||
|
"version": "0.0.0",
|
||||||
|
"devDependencies": {
|
||||||
|
"typescript": "^6.0.3"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/@babel/code-frame": {
|
"node_modules/@babel/code-frame": {
|
||||||
"version": "7.29.0",
|
"version": "7.29.0",
|
||||||
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz",
|
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz",
|
||||||
@@ -947,6 +955,10 @@
|
|||||||
"integrity": "sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==",
|
"integrity": "sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==",
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
|
"node_modules/@hermes/shared": {
|
||||||
|
"resolved": "../shared",
|
||||||
|
"link": true
|
||||||
|
},
|
||||||
"node_modules/@humanfs/core": {
|
"node_modules/@humanfs/core": {
|
||||||
"version": "0.19.2",
|
"version": "0.19.2",
|
||||||
"resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.2.tgz",
|
"resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.2.tgz",
|
||||||
@@ -2371,6 +2383,64 @@
|
|||||||
"node": ">=14.0.0"
|
"node": ">=14.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/core": {
|
||||||
|
"version": "1.8.1",
|
||||||
|
"inBundle": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"dependencies": {
|
||||||
|
"@emnapi/wasi-threads": "1.1.0",
|
||||||
|
"tslib": "^2.4.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/runtime": {
|
||||||
|
"version": "1.8.1",
|
||||||
|
"inBundle": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"dependencies": {
|
||||||
|
"tslib": "^2.4.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/wasi-threads": {
|
||||||
|
"version": "1.1.0",
|
||||||
|
"inBundle": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"dependencies": {
|
||||||
|
"tslib": "^2.4.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@napi-rs/wasm-runtime": {
|
||||||
|
"version": "1.1.1",
|
||||||
|
"inBundle": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"dependencies": {
|
||||||
|
"@emnapi/core": "^1.7.1",
|
||||||
|
"@emnapi/runtime": "^1.7.1",
|
||||||
|
"@tybys/wasm-util": "^0.10.1"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "github",
|
||||||
|
"url": "https://github.com/sponsors/Brooooooklyn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@tybys/wasm-util": {
|
||||||
|
"version": "0.10.1",
|
||||||
|
"inBundle": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"dependencies": {
|
||||||
|
"tslib": "^2.4.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/tslib": {
|
||||||
|
"version": "2.8.1",
|
||||||
|
"inBundle": true,
|
||||||
|
"license": "0BSD",
|
||||||
|
"optional": true
|
||||||
|
},
|
||||||
"node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
|
"node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
|
||||||
"version": "4.2.4",
|
"version": "4.2.4",
|
||||||
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.4.tgz",
|
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.4.tgz",
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"name": "web",
|
"name": "dashboard",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"sync-assets": "rm -rf public/fonts public/ds-assets && cp -r node_modules/@nous-research/ui/dist/fonts public/fonts && cp -r node_modules/@nous-research/ui/dist/assets public/ds-assets",
|
"sync-assets": "node scripts/sync-assets.cjs",
|
||||||
"predev": "npm run sync-assets",
|
"predev": "npm run sync-assets",
|
||||||
"prebuild": "npm run sync-assets",
|
"prebuild": "npm run sync-assets",
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
@@ -13,6 +13,7 @@
|
|||||||
"preview": "vite preview"
|
"preview": "vite preview"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@hermes/shared": "file:../shared",
|
||||||
"@nous-research/ui": "^0.10.0",
|
"@nous-research/ui": "^0.10.0",
|
||||||
"@observablehq/plot": "^0.6.17",
|
"@observablehq/plot": "^0.6.17",
|
||||||
"@react-three/fiber": "^9.6.0",
|
"@react-three/fiber": "^9.6.0",
|
||||||
BIN
apps/dashboard/public/ds-assets/filler-bg0.jpg
Normal file
BIN
apps/dashboard/public/ds-assets/filler-bg0.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.7 MiB |
|
Before Width: | Height: | Size: 8.3 KiB After Width: | Height: | Size: 8.3 KiB |
BIN
apps/dashboard/public/fonts/Collapse-BoldItalic.woff2
Normal file
BIN
apps/dashboard/public/fonts/Collapse-BoldItalic.woff2
Normal file
Binary file not shown.
BIN
apps/dashboard/public/fonts/Collapse-Italic.woff2
Normal file
BIN
apps/dashboard/public/fonts/Collapse-Italic.woff2
Normal file
Binary file not shown.
BIN
apps/dashboard/public/fonts/Collapse-Light.woff2
Normal file
BIN
apps/dashboard/public/fonts/Collapse-Light.woff2
Normal file
Binary file not shown.
BIN
apps/dashboard/public/fonts/Collapse-LightItalic.woff2
Normal file
BIN
apps/dashboard/public/fonts/Collapse-LightItalic.woff2
Normal file
Binary file not shown.
BIN
apps/dashboard/public/fonts/Collapse-Thin.woff2
Normal file
BIN
apps/dashboard/public/fonts/Collapse-Thin.woff2
Normal file
Binary file not shown.
BIN
apps/dashboard/public/fonts/Collapse-ThinItalic.woff2
Normal file
BIN
apps/dashboard/public/fonts/Collapse-ThinItalic.woff2
Normal file
Binary file not shown.
BIN
apps/dashboard/public/fonts/Neuebit-Bold.woff2
Normal file
BIN
apps/dashboard/public/fonts/Neuebit-Bold.woff2
Normal file
Binary file not shown.
46
apps/dashboard/scripts/sync-assets.cjs
Normal file
46
apps/dashboard/scripts/sync-assets.cjs
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
#!/usr/bin/env node
|
||||||
|
/**
|
||||||
|
* Copy font and asset folders from @nous-research/ui into public/ for Vite.
|
||||||
|
*
|
||||||
|
* Locates @nous-research/ui by walking up from this script looking for
|
||||||
|
* node_modules/@nous-research/ui — works whether the dep is co-located
|
||||||
|
* (non-workspace layout) or hoisted to the repo root (npm workspaces).
|
||||||
|
*/
|
||||||
|
const fs = require('node:fs')
|
||||||
|
const path = require('node:path')
|
||||||
|
|
||||||
|
const DASHBOARD_ROOT = path.resolve(__dirname, '..')
|
||||||
|
|
||||||
|
function locateUiPackage() {
|
||||||
|
let dir = DASHBOARD_ROOT
|
||||||
|
const { root } = path.parse(dir)
|
||||||
|
while (true) {
|
||||||
|
const candidate = path.join(dir, 'node_modules', '@nous-research', 'ui')
|
||||||
|
if (fs.existsSync(path.join(candidate, 'package.json'))) {
|
||||||
|
return candidate
|
||||||
|
}
|
||||||
|
if (dir === root) break
|
||||||
|
dir = path.dirname(dir)
|
||||||
|
}
|
||||||
|
throw new Error(
|
||||||
|
'@nous-research/ui not found. Run `npm install` from the repo root.'
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
const uiRoot = locateUiPackage()
|
||||||
|
const distRoot = path.join(uiRoot, 'dist')
|
||||||
|
|
||||||
|
const mappings = [
|
||||||
|
['fonts', path.join(DASHBOARD_ROOT, 'public', 'fonts')],
|
||||||
|
['assets', path.join(DASHBOARD_ROOT, 'public', 'ds-assets')],
|
||||||
|
]
|
||||||
|
|
||||||
|
for (const [srcName, destPath] of mappings) {
|
||||||
|
const srcPath = path.join(distRoot, srcName)
|
||||||
|
if (!fs.existsSync(srcPath)) {
|
||||||
|
throw new Error(`Missing ${srcPath} in @nous-research/ui — rebuild that package.`)
|
||||||
|
}
|
||||||
|
fs.rmSync(destPath, { recursive: true, force: true })
|
||||||
|
fs.cpSync(srcPath, destPath, { recursive: true })
|
||||||
|
console.log(`synced ${path.relative(DASHBOARD_ROOT, destPath)}`)
|
||||||
|
}
|
||||||
36
apps/dashboard/src/lib/gatewayClient.ts
Normal file
36
apps/dashboard/src/lib/gatewayClient.ts
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
import {
|
||||||
|
JsonRpcGatewayClient,
|
||||||
|
type ConnectionState,
|
||||||
|
type GatewayEvent,
|
||||||
|
type GatewayEventName,
|
||||||
|
} from "@hermes/shared";
|
||||||
|
|
||||||
|
export type { ConnectionState, GatewayEvent, GatewayEventName };
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Browser wrapper for the shared tui_gateway JSON-RPC client.
|
||||||
|
*
|
||||||
|
* Dashboard resolves its token and host from the served page. Desktop uses the
|
||||||
|
* same shared protocol client, but supplies an absolute wsUrl from Electron.
|
||||||
|
*/
|
||||||
|
export class GatewayClient extends JsonRpcGatewayClient {
|
||||||
|
async connect(token?: string): Promise<void> {
|
||||||
|
const resolved = token ?? window.__HERMES_SESSION_TOKEN__ ?? "";
|
||||||
|
if (!resolved) {
|
||||||
|
throw new Error(
|
||||||
|
"Session token not available — page must be served by the Hermes dashboard",
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const scheme = location.protocol === "https:" ? "wss:" : "ws:";
|
||||||
|
await super.connect(
|
||||||
|
`${scheme}//${location.host}/api/ws?token=${encodeURIComponent(resolved)}`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
declare global {
|
||||||
|
interface Window {
|
||||||
|
__HERMES_SESSION_TOKEN__?: string;
|
||||||
|
}
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user