├── .github └── workflows │ └── build.yml ├── .gitignore ├── README.md ├── docs ├── .vitepress │ ├── config.mts │ └── theme │ │ ├── index.ts │ │ └── style.css ├── about.md ├── api-examples.md ├── api │ ├── bot.md │ ├── common.md │ ├── friend.md │ └── group.md ├── guide │ ├── base.md │ ├── communication.md │ ├── docker.md │ ├── intro.md │ ├── performance.md │ └── pic │ │ ├── electron-ui.png │ │ └── node-running.jpg ├── index.md ├── markdown-examples.md └── reference │ ├── message.md │ ├── message │ ├── image.md │ ├── mention.md │ └── text.md │ ├── patch-v2.md │ ├── patch.md │ └── patch │ ├── main.png │ ├── sub_1.png │ ├── sub_2.png │ ├── sub_3-1.png │ ├── sub_3.png │ └── sub_4.png ├── package.json └── pnpm-lock.yaml /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/README.md -------------------------------------------------------------------------------- /docs/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/.vitepress/config.mts -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/.vitepress/theme/style.css -------------------------------------------------------------------------------- /docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/about.md -------------------------------------------------------------------------------- /docs/api-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/api-examples.md -------------------------------------------------------------------------------- /docs/api/bot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/api/bot.md -------------------------------------------------------------------------------- /docs/api/common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/api/common.md -------------------------------------------------------------------------------- /docs/api/friend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/api/friend.md -------------------------------------------------------------------------------- /docs/api/group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/api/group.md -------------------------------------------------------------------------------- /docs/guide/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/guide/base.md -------------------------------------------------------------------------------- /docs/guide/communication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/guide/communication.md -------------------------------------------------------------------------------- /docs/guide/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/guide/docker.md -------------------------------------------------------------------------------- /docs/guide/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/guide/intro.md -------------------------------------------------------------------------------- /docs/guide/performance.md: -------------------------------------------------------------------------------- 1 | # 性能 2 | 3 | 能跑就行。 -------------------------------------------------------------------------------- /docs/guide/pic/electron-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/guide/pic/electron-ui.png -------------------------------------------------------------------------------- /docs/guide/pic/node-running.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/guide/pic/node-running.jpg -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/markdown-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/markdown-examples.md -------------------------------------------------------------------------------- /docs/reference/message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/reference/message.md -------------------------------------------------------------------------------- /docs/reference/message/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/reference/message/image.md -------------------------------------------------------------------------------- /docs/reference/message/mention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/reference/message/mention.md -------------------------------------------------------------------------------- /docs/reference/message/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/reference/message/text.md -------------------------------------------------------------------------------- /docs/reference/patch-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/reference/patch-v2.md -------------------------------------------------------------------------------- /docs/reference/patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/reference/patch.md -------------------------------------------------------------------------------- /docs/reference/patch/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/reference/patch/main.png -------------------------------------------------------------------------------- /docs/reference/patch/sub_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/reference/patch/sub_1.png -------------------------------------------------------------------------------- /docs/reference/patch/sub_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/reference/patch/sub_2.png -------------------------------------------------------------------------------- /docs/reference/patch/sub_3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/reference/patch/sub_3-1.png -------------------------------------------------------------------------------- /docs/reference/patch/sub_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/reference/patch/sub_3.png -------------------------------------------------------------------------------- /docs/reference/patch/sub_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/docs/reference/patch/sub_4.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-yui/Yui-docs/HEAD/pnpm-lock.yaml --------------------------------------------------------------------------------