mirror of
https://github.com/nyakang/nyaterm.git
synced 2026-09-21 16:01:29 +00:00
- Added new entries in CHANGELOG.md for version 1.1.12, detailing enhancements to jump host configuration and cycle prevention. - Updated README.md and its Chinese counterpart to include new AI Assistant features, such as command generation, error analysis, and multi-step workflows. - Enhanced documentation for terminal features, file transfer capabilities, and user settings to reflect recent changes and improvements. - Introduced a new guide for the AI Assistant, detailing its working modes, command cards, and risk control mechanisms.
51 lines
1.1 KiB
TypeScript
51 lines
1.1 KiB
TypeScript
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
|
|
|
|
const sidebars: SidebarsConfig = {
|
|
docs: [
|
|
'intro',
|
|
'sponsor',
|
|
{
|
|
type: 'category',
|
|
label: '快速开始',
|
|
items: [
|
|
'getting-started/installation',
|
|
'getting-started/quick-start',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: '使用指南',
|
|
items: [
|
|
'guide/session-types',
|
|
'guide/ssh-connection',
|
|
'guide/layout-and-workspace',
|
|
'guide/terminal',
|
|
'guide/ai-assistant',
|
|
'guide/file-transfer',
|
|
'guide/tunnels-and-proxy',
|
|
'guide/quick-commands',
|
|
'guide/otp-and-auth',
|
|
'guide/themes',
|
|
'guide/translation',
|
|
'guide/security',
|
|
'guide/sync-and-backup',
|
|
'guide/keyboard-shortcuts',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: '开发文档',
|
|
items: [
|
|
'development/architecture',
|
|
'development/setup',
|
|
'development/frontend',
|
|
'development/backend',
|
|
'development/contributing',
|
|
],
|
|
},
|
|
'faq',
|
|
],
|
|
};
|
|
|
|
export default sidebars;
|