feat: add Koa2 BFF server, CLI management, sessions CLI integration, and logs page

- Add Koa2 BFF layer for API proxy, file upload, session management
- Auto-check and enable api_server in ~/.hermes/config.yaml on startup
- Integrate sessions with Hermes CLI (list, get, delete)
- Add Logs page with level filtering, log file selection, and search
- Add CLI commands: start/stop/restart/status for daemon management
- Unify package.json for frontend and server dependencies
- Default port changed to 8648

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
ekko
2026-04-11 21:33:04 +08:00
parent a2f8f6aec5
commit ee9f56dfbd
25 changed files with 1613 additions and 713 deletions
+133
View File
@@ -0,0 +1,133 @@
import Koa from 'koa'
import cors from '@koa/cors'
import bodyParser from '@koa/bodyparser'
import serve from 'koa-static'
import send from 'koa-send'
import { resolve } from 'path'
import { mkdir } from 'fs/promises'
import { config } from './config'
import { proxyRoutes } from './routes/proxy'
import { uploadRoutes } from './routes/upload'
import { sessionRoutes } from './routes/sessions'
import { webhookRoutes } from './routes/webhook'
import { logRoutes } from './routes/logs'
import * as hermesCli from './services/hermes-cli'
const { restartGateway } = hermesCli
export async function bootstrap() {
await mkdir(config.uploadDir, { recursive: true })
await mkdir(config.dataDir, { recursive: true })
await ensureApiServerConfig()
const app = new Koa()
app.use(cors({ origin: config.corsOrigins }))
app.use(bodyParser())
app.use(webhookRoutes.routes())
app.use(logRoutes.routes())
app.use(uploadRoutes.routes())
app.use(sessionRoutes.routes())
// Health endpoint with version
app.use(async (ctx, next) => {
if (ctx.path === '/health') {
const raw = await hermesCli.getVersion()
const version = raw.split('\n')[0].replace('Hermes Agent ', '') || ''
ctx.body = { status: 'ok', platform: 'hermes-agent', version }
return
}
await next()
})
app.use(proxyRoutes.routes())
// SPA fallback
const distDir = resolve(__dirname, '..')
app.use(serve(distDir))
app.use(async (ctx) => {
if (!ctx.path.startsWith('/api') && !ctx.path.startsWith('/v1') && ctx.path !== '/health' && ctx.path !== '/upload' && ctx.path !== '/webhook') {
await send(ctx, 'index.html', { root: distDir })
}
})
app.listen(config.port, '0.0.0.0', () => {
console.log(` ➜ Hermes BFF Server: http://localhost:${config.port}`)
console.log(` ➜ Upstream: ${config.upstream}`)
})
}
async function ensureApiServerConfig() {
const { homedir } = await import('os')
const { readFileSync, writeFileSync, existsSync } = await import('fs')
const configPath = resolve(homedir(), '.hermes/config.yaml')
try {
if (!existsSync(configPath)) {
console.log(' ✗ config.yaml not found, skipping')
return
}
const content = readFileSync(configPath, 'utf-8')
// Case 1: api_server section exists, check if enabled is true
if (/api_server:/.test(content)) {
// Check specifically under api_server: look for a direct child `enabled: false`
// Match api_server block and find enabled at the correct indent level
const blockMatch = content.match(/api_server:\n((?:[ \t]+.*\n)*?)(?=\S|$)/)
if (blockMatch) {
const block = blockMatch[1]
if (/^([ \t]*)enabled:\s*true/m.test(block)) {
console.log(' ✓ api_server.enabled is true')
return
}
if (/^([ \t]*)enabled:\s*false/m.test(block)) {
// Backup before modifying
const { copyFileSync } = await import('fs')
copyFileSync(configPath, configPath + '.bak')
const updated = content.replace(
/(api_server:\n(?:[ \t]*.*\n)*?[ \t]*)enabled:\s*false/,
'$1enabled: true'
)
writeFileSync(configPath, updated, 'utf-8')
console.log(' ✓ api_server.enabled changed to true (backup saved to config.yaml.bak)')
await restartGateway()
return
}
}
// api_server exists but no enabled key — don't touch, assume default
console.log(' ✓ api_server section exists')
return
}
// Case 2: api_server section exists and enabled is true (or missing but default true)
if (/api_server:/.test(content)) {
console.log(' ✓ api_server section exists')
return
}
// Case 3: platforms section exists but no api_server — append api_server block
if (/platforms:/.test(content)) {
const { copyFileSync } = await import('fs')
copyFileSync(configPath, configPath + '.bak')
const append = `\n api_server:\n enabled: true\n host: "127.0.0.1"\n port: 8642\n key: ""\n cors_origins: "*"\n`
const updated = content.replace(/(platforms:)/, '$1' + append)
writeFileSync(configPath, updated, 'utf-8')
console.log(' ✓ api_server block appended to platforms (backup saved to config.yaml.bak)')
await restartGateway()
return
}
// Case 4: No platforms section at all — append at end of file
const { copyFileSync } = await import('fs')
copyFileSync(configPath, configPath + '.bak')
const append = `\nplatforms:\n api_server:\n enabled: true\n host: "127.0.0.1"\n port: 8642\n key: ""\n cors_origins: "*"\n`
writeFileSync(configPath, content + append, 'utf-8')
console.log(' ✓ platforms.api_server block appended (backup saved to config.yaml.bak)')
await restartGateway()
} catch (err: any) {
console.error(' ✗ Failed to update config:', err.message)
}
}
bootstrap()