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
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ concurrency:
env:
GO_VERSION: "1.26.5"
GOLANGCI_LINT_VERSION: "v2.12.2"
NODE_VERSION: "22"
NODE_VERSION: "24"
PNPM_VERSION: "10.32.1"

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-readiness.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ concurrency:

env:
GO_VERSION: "1.26.5"
NODE_VERSION: "22"
NODE_VERSION: "24"
PNPM_VERSION: "10.32.1"

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:

env:
GO_VERSION: "1.26.5"
NODE_VERSION: "22"
NODE_VERSION: "24"
PNPM_VERSION: "10.32.1"

jobs:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ AgentHub 让你像在 IM 群聊里协作一样,把真人好友、Builder、Rev

## 快速开始

最小本地启动路径(5 步)。需要 OpenSSL、Docker、Go 1.26+、Node 22+/corepack、pnpm 10+。
最小本地启动路径(5 步)。需要 OpenSSL、Docker、Go 1.26+、Node 24+/corepack、pnpm 10+。

```bash
cp .env.example .env && secret="$(openssl rand -hex 32)" && sed -i.bak "s/^AGENTHUB_JWT_SECRET=.*/AGENTHUB_JWT_SECRET=$secret/" .env && rm -f .env.bak && export AGENTHUB_JWT_SECRET="$secret" && unset secret # 1. 复制配置并生成随机开发 secret
Expand Down
2 changes: 1 addition & 1 deletion app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# tsc typecheck is handled by CI (cd-pr-check.yml); Docker build
# runs only vite build for production optimised output.

FROM --platform=$BUILDPLATFORM node:22-alpine AS builder
FROM --platform=$BUILDPLATFORM node:24-alpine AS builder
RUN corepack enable && corepack prepare pnpm@10 --activate
WORKDIR /app

Expand Down
3 changes: 3 additions & 0 deletions app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"private": true,
"type": "module",
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "pnpm --filter agenthub-desktop dev",
"dev:web": "pnpm --filter agenthub-web dev",
Expand Down
2 changes: 1 addition & 1 deletion docs/developer-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
| 工具 | 用途 |
|---|---|
| Go 1.26+ | Hub Server / Edge Server |
| Node.js 22+ + corepack | pnpm workspace 和前端构建 |
| Node.js 24+ + corepack | pnpm workspace 和前端构建 |
| PostgreSQL 16+ | Hub 数据库 |
| Redis 7+ | Hub cache/session |
| Git 2.40+;OpenSSL | 分支和 worktree;POSIX shell 生成本地 JWT secret |
Expand Down
Loading