mirror of
https://github.com/wu736139669/hapi.git
synced 2026-08-05 06:24:37 +00:00
* test: define Grok Build integration behavior * feat: add Grok Build agent integration * test: cover Grok permissions and resume paths * docs: add Grok Build setup guide * fix: scope Grok ACP discovery to session cwd * fix: align Grok permission UI semantics * docs: clarify Grok runner setup * test: require Grok create model and effort options * feat: add Grok create model and effort pickers * test: define Grok runtime parity behavior * feat: add Grok runtime ACP controls and discovery * fix: tighten Grok runtime controls * fix: suppress nonfatal Grok title quota errors * feat: support Grok Auto permission mode * feat: forward ACP native session titles for Grok * fix: guard Grok Windows shell arguments
52 lines
1.2 KiB
TypeScript
52 lines
1.2 KiB
TypeScript
import { defineConfig } from 'vitepress'
|
|
|
|
export default defineConfig({
|
|
title: 'HAPI',
|
|
description: 'Control your AI agents from anywhere',
|
|
base: '/docs/',
|
|
|
|
head: [
|
|
['link', { rel: 'icon', href: '/docs/favicon.ico' }],
|
|
],
|
|
|
|
themeConfig: {
|
|
logo: '/logo.svg',
|
|
|
|
nav: [
|
|
{ text: 'Quick Start', link: '/guide/quick-start' },
|
|
{ text: 'App', link: 'https://app.hapi.run', target: '_blank' }
|
|
],
|
|
|
|
sidebar: [
|
|
{ text: 'Quick Start', link: '/guide/quick-start' },
|
|
{ text: 'Installation', link: '/guide/installation' },
|
|
{ text: 'PWA', link: '/guide/pwa' },
|
|
{ text: 'How it Works', link: '/guide/how-it-works' },
|
|
{ text: 'Cursor Agent', link: '/guide/cursor' },
|
|
{ text: 'Grok Build', link: '/guide/grok' },
|
|
{ text: 'Voice Assistant', link: '/guide/voice-assistant' },
|
|
{ text: 'Why HAPI', link: '/guide/why-hapi' },
|
|
{ text: 'FAQ', link: '/guide/faq' }
|
|
],
|
|
|
|
socialLinks: [
|
|
{ icon: 'github', link: 'https://github.com/tiann/hapi' }
|
|
],
|
|
|
|
footer: {
|
|
message: 'Released under the LGPL-3.0 License.',
|
|
copyright: 'Copyright © 2024-present'
|
|
},
|
|
|
|
search: {
|
|
provider: 'local'
|
|
}
|
|
},
|
|
|
|
vite: {
|
|
server: {
|
|
allowedHosts: true
|
|
}
|
|
}
|
|
})
|