- Add hermes-profile.ts for dynamic profile path resolution (all backend routes now read from active profile directory instead of hardcoded ~/.hermes/) - Add profile switcher dropdown in sidebar, reload page on switch - Sync PROVIDER_PRESETS with Hermes CLI (fix keys: kimi-coding→kimi-for-coding, kilocode→kilo, ai-gateway→vercel, opencode-zen→opencode; remove moonshot) - Sync PROVIDER_ENV_MAP with Hermes models.dev + overlays (correct env var names) - Add gateway restart after adding model provider - Don't write GLM_BASE_URL/KIMI_BASE_URL for zai/kimi (let Hermes auto-detect) - Write API keys to .env and credential_pool for all providers - Built-in providers skip custom_providers in config.yaml - Add debounce + per-field loading state for channel settings inputs - Run hermes setup --reset for profiles without config.yaml - Create empty .env for new profiles (not copied from default) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
66 lines
1.6 KiB
TypeScript
66 lines
1.6 KiB
TypeScript
import { request } from '../client'
|
|
|
|
export interface SkillInfo {
|
|
name: string
|
|
description: string
|
|
enabled?: boolean
|
|
}
|
|
|
|
export interface SkillCategory {
|
|
name: string
|
|
description: string
|
|
skills: SkillInfo[]
|
|
}
|
|
|
|
export interface SkillListResponse {
|
|
categories: SkillCategory[]
|
|
}
|
|
|
|
export interface SkillFileEntry {
|
|
path: string
|
|
name: string
|
|
isDir: boolean
|
|
}
|
|
|
|
export interface MemoryData {
|
|
memory: string
|
|
user: string
|
|
soul: string
|
|
memory_mtime: number | null
|
|
user_mtime: number | null
|
|
soul_mtime: number | null
|
|
}
|
|
|
|
export async function fetchSkills(): Promise<SkillCategory[]> {
|
|
const res = await request<SkillListResponse>('/api/hermes/skills')
|
|
return res.categories
|
|
}
|
|
|
|
export async function fetchSkillContent(skillPath: string): Promise<string> {
|
|
const res = await request<{ content: string }>(`/api/hermes/skills/${skillPath}`)
|
|
return res.content
|
|
}
|
|
|
|
export async function fetchSkillFiles(category: string, skill: string): Promise<SkillFileEntry[]> {
|
|
const res = await request<{ files: SkillFileEntry[] }>(`/api/hermes/skills/${category}/${skill}/files`)
|
|
return res.files
|
|
}
|
|
|
|
export async function fetchMemory(): Promise<MemoryData> {
|
|
return request<MemoryData>('/api/hermes/memory')
|
|
}
|
|
|
|
export async function saveMemory(section: 'memory' | 'user' | 'soul', content: string): Promise<void> {
|
|
await request('/api/hermes/memory', {
|
|
method: 'POST',
|
|
body: JSON.stringify({ section, content }),
|
|
})
|
|
}
|
|
|
|
export async function toggleSkill(name: string, enabled: boolean): Promise<void> {
|
|
await request('/api/hermes/skills/toggle', {
|
|
method: 'PUT',
|
|
body: JSON.stringify({ name, enabled }),
|
|
})
|
|
}
|