├── .changeset ├── README.md └── config.json ├── .github ├── FUNDING.yml └── workflows │ ├── deploy_docs.yml │ ├── release.yml │ └── version.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __tests__ ├── README.md ├── config-example.yaml ├── milky │ ├── utils │ │ └── http-client.js │ └── v1 │ │ ├── http │ │ ├── api.spec.js │ │ └── auth.spec.js │ │ ├── sse │ │ └── event.spec.js │ │ ├── webhook │ │ └── event.spec.js │ │ └── websocket │ │ └── event.spec.js ├── onebot │ ├── utils │ │ ├── http-client.js │ │ ├── test-server.js │ │ └── ws-client.js │ ├── v11 │ │ ├── http │ │ │ ├── api.spec.js │ │ │ └── auth.spec.js │ │ ├── webhook │ │ │ ├── auth.spec.js │ │ │ └── http-reverse.spec.js │ │ └── websocket │ │ │ ├── auth.spec.js │ │ │ ├── connection.spec.js │ │ │ ├── ws-reverse-auth.spec.js │ │ │ └── ws-reverse.spec.js │ └── v12 │ │ ├── http │ │ └── api.spec.js │ │ ├── webhook │ │ └── headers.spec.js │ │ └── websocket │ │ ├── connection.spec.js │ │ ├── headers.spec.js │ │ └── ws-reverse.spec.js ├── protocol-tests.spec.js ├── satori │ ├── utils │ │ └── http-client.js │ └── v1 │ │ ├── http │ │ ├── api.spec.js │ │ └── auth.spec.js │ │ └── websocket │ │ └── event.spec.js └── websocket-test.spec.js ├── adapters └── adapter-wechat │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ ├── README.md │ ├── adapter.d.ts │ ├── bot.ts │ ├── index.ts │ ├── types.ts │ └── utils.ts │ └── tsconfig.json ├── architecture.html ├── development ├── CHANGELOG.md ├── README.md └── package.json ├── docs ├── .vitepress │ ├── config.mts │ └── theme │ │ ├── custom.css │ │ └── index.ts ├── CHANGELOG.md ├── package.json ├── src │ ├── config │ │ ├── adapter │ │ │ ├── common.md │ │ │ ├── dingtalk.md │ │ │ ├── icqq.md │ │ │ ├── qq.md │ │ │ └── wechat.md │ │ ├── general.md │ │ ├── global.md │ │ ├── platform.md │ │ ├── protocol.md │ │ ├── v11.md │ │ └── v12.md │ ├── guide │ │ ├── adapter.md │ │ ├── prepare.md │ │ ├── start-with-js.md │ │ └── start.md │ ├── index.md │ ├── platform │ │ ├── dingtalk.md │ │ ├── kook.md │ │ ├── qq.md │ │ └── wechat.md │ ├── protocol │ │ ├── milky.md │ │ ├── onebot-v11.md │ │ ├── onebot-v12.md │ │ └── satori.md │ ├── v11 │ │ ├── action.md │ │ ├── cqcode.md │ │ ├── event.md │ │ └── index.md │ └── v12 │ │ ├── action.md │ │ ├── event.md │ │ ├── index.md │ │ └── segment.md ├── tsconfig.json └── vite.config.mts.ts ├── package.json ├── packages ├── client │ ├── CHANGELOG.md │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ └── BotCard.vue │ │ ├── composables │ │ │ ├── useApi.ts │ │ │ └── useTheme.ts │ │ ├── layouts │ │ │ └── MainLayout.vue │ │ ├── main.ts │ │ ├── router │ │ │ └── index.ts │ │ ├── types.ts │ │ ├── utils.ts │ │ └── views │ │ │ ├── Bots.vue │ │ │ ├── Config.vue │ │ │ ├── Logs.vue │ │ │ ├── System.vue │ │ │ └── Terminal.vue │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.mts ├── core │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── account.ts │ │ ├── adapter.ts │ │ ├── base-app.ts │ │ ├── db.ts │ │ ├── index.ts │ │ ├── message-utils.ts │ │ ├── protocol.ts │ │ ├── registry.ts │ │ ├── router.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── tsconfig.json │ └── vitest.config.ts └── onebots │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ ├── app.ts │ ├── bin.ts │ ├── config.sample.yaml │ └── index.ts │ └── tsconfig.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── protocols ├── protocol-milky-v1 │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── config.ts │ │ ├── index.ts │ │ └── types.ts │ └── tsconfig.json ├── protocol-onebot-v11 │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── README.md │ │ ├── config.ts │ │ ├── cqcode.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils.ts │ └── tsconfig.json ├── protocol-onebot-v12 │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── config.ts │ │ ├── index.ts │ │ └── types.ts │ └── tsconfig.json └── protocol-satori │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ ├── README.md │ ├── config.ts │ ├── index.ts │ └── types.ts │ └── tsconfig.json ├── tsconfig.json └── vitest.config.ts /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/deploy_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/.github/workflows/deploy_docs.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/.github/workflows/version.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | node_modules/ 3 | .idea/ 4 | CHANGELOG.md 5 | docs 6 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/README.md -------------------------------------------------------------------------------- /__tests__/config-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/config-example.yaml -------------------------------------------------------------------------------- /__tests__/milky/utils/http-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/milky/utils/http-client.js -------------------------------------------------------------------------------- /__tests__/milky/v1/http/api.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/milky/v1/http/api.spec.js -------------------------------------------------------------------------------- /__tests__/milky/v1/http/auth.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/milky/v1/http/auth.spec.js -------------------------------------------------------------------------------- /__tests__/milky/v1/sse/event.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/milky/v1/sse/event.spec.js -------------------------------------------------------------------------------- /__tests__/milky/v1/webhook/event.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/milky/v1/webhook/event.spec.js -------------------------------------------------------------------------------- /__tests__/milky/v1/websocket/event.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/milky/v1/websocket/event.spec.js -------------------------------------------------------------------------------- /__tests__/onebot/utils/http-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/onebot/utils/http-client.js -------------------------------------------------------------------------------- /__tests__/onebot/utils/test-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/onebot/utils/test-server.js -------------------------------------------------------------------------------- /__tests__/onebot/utils/ws-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/onebot/utils/ws-client.js -------------------------------------------------------------------------------- /__tests__/onebot/v11/http/api.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/onebot/v11/http/api.spec.js -------------------------------------------------------------------------------- /__tests__/onebot/v11/http/auth.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/onebot/v11/http/auth.spec.js -------------------------------------------------------------------------------- /__tests__/onebot/v11/webhook/auth.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/onebot/v11/webhook/auth.spec.js -------------------------------------------------------------------------------- /__tests__/onebot/v11/webhook/http-reverse.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/onebot/v11/webhook/http-reverse.spec.js -------------------------------------------------------------------------------- /__tests__/onebot/v11/websocket/auth.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/onebot/v11/websocket/auth.spec.js -------------------------------------------------------------------------------- /__tests__/onebot/v11/websocket/connection.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/onebot/v11/websocket/connection.spec.js -------------------------------------------------------------------------------- /__tests__/onebot/v11/websocket/ws-reverse-auth.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/onebot/v11/websocket/ws-reverse-auth.spec.js -------------------------------------------------------------------------------- /__tests__/onebot/v11/websocket/ws-reverse.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/onebot/v11/websocket/ws-reverse.spec.js -------------------------------------------------------------------------------- /__tests__/onebot/v12/http/api.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/onebot/v12/http/api.spec.js -------------------------------------------------------------------------------- /__tests__/onebot/v12/webhook/headers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/onebot/v12/webhook/headers.spec.js -------------------------------------------------------------------------------- /__tests__/onebot/v12/websocket/connection.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/onebot/v12/websocket/connection.spec.js -------------------------------------------------------------------------------- /__tests__/onebot/v12/websocket/headers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/onebot/v12/websocket/headers.spec.js -------------------------------------------------------------------------------- /__tests__/onebot/v12/websocket/ws-reverse.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/onebot/v12/websocket/ws-reverse.spec.js -------------------------------------------------------------------------------- /__tests__/protocol-tests.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/protocol-tests.spec.js -------------------------------------------------------------------------------- /__tests__/satori/utils/http-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/satori/utils/http-client.js -------------------------------------------------------------------------------- /__tests__/satori/v1/http/api.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/satori/v1/http/api.spec.js -------------------------------------------------------------------------------- /__tests__/satori/v1/http/auth.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/satori/v1/http/auth.spec.js -------------------------------------------------------------------------------- /__tests__/satori/v1/websocket/event.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/satori/v1/websocket/event.spec.js -------------------------------------------------------------------------------- /__tests__/websocket-test.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/__tests__/websocket-test.spec.js -------------------------------------------------------------------------------- /adapters/adapter-wechat/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/adapters/adapter-wechat/CHANGELOG.md -------------------------------------------------------------------------------- /adapters/adapter-wechat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/adapters/adapter-wechat/README.md -------------------------------------------------------------------------------- /adapters/adapter-wechat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/adapters/adapter-wechat/package.json -------------------------------------------------------------------------------- /adapters/adapter-wechat/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/adapters/adapter-wechat/src/README.md -------------------------------------------------------------------------------- /adapters/adapter-wechat/src/adapter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/adapters/adapter-wechat/src/adapter.d.ts -------------------------------------------------------------------------------- /adapters/adapter-wechat/src/bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/adapters/adapter-wechat/src/bot.ts -------------------------------------------------------------------------------- /adapters/adapter-wechat/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/adapters/adapter-wechat/src/index.ts -------------------------------------------------------------------------------- /adapters/adapter-wechat/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/adapters/adapter-wechat/src/types.ts -------------------------------------------------------------------------------- /adapters/adapter-wechat/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/adapters/adapter-wechat/src/utils.ts -------------------------------------------------------------------------------- /adapters/adapter-wechat/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/adapters/adapter-wechat/tsconfig.json -------------------------------------------------------------------------------- /architecture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/architecture.html -------------------------------------------------------------------------------- /development/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/development/CHANGELOG.md -------------------------------------------------------------------------------- /development/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/development/README.md -------------------------------------------------------------------------------- /development/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/development/package.json -------------------------------------------------------------------------------- /docs/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/.vitepress/config.mts -------------------------------------------------------------------------------- /docs/.vitepress/theme/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/.vitepress/theme/custom.css -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/src/config/adapter/common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/config/adapter/common.md -------------------------------------------------------------------------------- /docs/src/config/adapter/dingtalk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/config/adapter/dingtalk.md -------------------------------------------------------------------------------- /docs/src/config/adapter/icqq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/config/adapter/icqq.md -------------------------------------------------------------------------------- /docs/src/config/adapter/qq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/config/adapter/qq.md -------------------------------------------------------------------------------- /docs/src/config/adapter/wechat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/config/adapter/wechat.md -------------------------------------------------------------------------------- /docs/src/config/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/config/general.md -------------------------------------------------------------------------------- /docs/src/config/global.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/config/global.md -------------------------------------------------------------------------------- /docs/src/config/platform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/config/platform.md -------------------------------------------------------------------------------- /docs/src/config/protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/config/protocol.md -------------------------------------------------------------------------------- /docs/src/config/v11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/config/v11.md -------------------------------------------------------------------------------- /docs/src/config/v12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/config/v12.md -------------------------------------------------------------------------------- /docs/src/guide/adapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/guide/adapter.md -------------------------------------------------------------------------------- /docs/src/guide/prepare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/guide/prepare.md -------------------------------------------------------------------------------- /docs/src/guide/start-with-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/guide/start-with-js.md -------------------------------------------------------------------------------- /docs/src/guide/start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/guide/start.md -------------------------------------------------------------------------------- /docs/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/index.md -------------------------------------------------------------------------------- /docs/src/platform/dingtalk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/platform/dingtalk.md -------------------------------------------------------------------------------- /docs/src/platform/kook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/platform/kook.md -------------------------------------------------------------------------------- /docs/src/platform/qq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/platform/qq.md -------------------------------------------------------------------------------- /docs/src/platform/wechat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/platform/wechat.md -------------------------------------------------------------------------------- /docs/src/protocol/milky.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/protocol/milky.md -------------------------------------------------------------------------------- /docs/src/protocol/onebot-v11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/protocol/onebot-v11.md -------------------------------------------------------------------------------- /docs/src/protocol/onebot-v12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/protocol/onebot-v12.md -------------------------------------------------------------------------------- /docs/src/protocol/satori.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/protocol/satori.md -------------------------------------------------------------------------------- /docs/src/v11/action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/v11/action.md -------------------------------------------------------------------------------- /docs/src/v11/cqcode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/v11/cqcode.md -------------------------------------------------------------------------------- /docs/src/v11/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/v11/event.md -------------------------------------------------------------------------------- /docs/src/v11/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/v11/index.md -------------------------------------------------------------------------------- /docs/src/v12/action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/v12/action.md -------------------------------------------------------------------------------- /docs/src/v12/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/v12/event.md -------------------------------------------------------------------------------- /docs/src/v12/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/v12/index.md -------------------------------------------------------------------------------- /docs/src/v12/segment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/src/v12/segment.md -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /docs/vite.config.mts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/docs/vite.config.mts.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/package.json -------------------------------------------------------------------------------- /packages/client/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/client/CHANGELOG.md -------------------------------------------------------------------------------- /packages/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/client/index.html -------------------------------------------------------------------------------- /packages/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/client/package.json -------------------------------------------------------------------------------- /packages/client/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/client/src/App.vue -------------------------------------------------------------------------------- /packages/client/src/components/BotCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/client/src/components/BotCard.vue -------------------------------------------------------------------------------- /packages/client/src/composables/useApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/client/src/composables/useApi.ts -------------------------------------------------------------------------------- /packages/client/src/composables/useTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/client/src/composables/useTheme.ts -------------------------------------------------------------------------------- /packages/client/src/layouts/MainLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/client/src/layouts/MainLayout.vue -------------------------------------------------------------------------------- /packages/client/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/client/src/main.ts -------------------------------------------------------------------------------- /packages/client/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/client/src/router/index.ts -------------------------------------------------------------------------------- /packages/client/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/client/src/types.ts -------------------------------------------------------------------------------- /packages/client/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/client/src/utils.ts -------------------------------------------------------------------------------- /packages/client/src/views/Bots.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/client/src/views/Bots.vue -------------------------------------------------------------------------------- /packages/client/src/views/Config.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/client/src/views/Config.vue -------------------------------------------------------------------------------- /packages/client/src/views/Logs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/client/src/views/Logs.vue -------------------------------------------------------------------------------- /packages/client/src/views/System.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/client/src/views/System.vue -------------------------------------------------------------------------------- /packages/client/src/views/Terminal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/client/src/views/Terminal.vue -------------------------------------------------------------------------------- /packages/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/client/tsconfig.json -------------------------------------------------------------------------------- /packages/client/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/client/tsconfig.node.json -------------------------------------------------------------------------------- /packages/client/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/client/vite.config.mts -------------------------------------------------------------------------------- /packages/core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/core/CHANGELOG.md -------------------------------------------------------------------------------- /packages/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/core/README.md -------------------------------------------------------------------------------- /packages/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/core/package.json -------------------------------------------------------------------------------- /packages/core/src/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/core/src/account.ts -------------------------------------------------------------------------------- /packages/core/src/adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/core/src/adapter.ts -------------------------------------------------------------------------------- /packages/core/src/base-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/core/src/base-app.ts -------------------------------------------------------------------------------- /packages/core/src/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/core/src/db.ts -------------------------------------------------------------------------------- /packages/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/core/src/index.ts -------------------------------------------------------------------------------- /packages/core/src/message-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/core/src/message-utils.ts -------------------------------------------------------------------------------- /packages/core/src/protocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/core/src/protocol.ts -------------------------------------------------------------------------------- /packages/core/src/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/core/src/registry.ts -------------------------------------------------------------------------------- /packages/core/src/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/core/src/router.ts -------------------------------------------------------------------------------- /packages/core/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/core/src/types.ts -------------------------------------------------------------------------------- /packages/core/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/core/src/utils.ts -------------------------------------------------------------------------------- /packages/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/core/tsconfig.json -------------------------------------------------------------------------------- /packages/core/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/core/vitest.config.ts -------------------------------------------------------------------------------- /packages/onebots/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/onebots/CHANGELOG.md -------------------------------------------------------------------------------- /packages/onebots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/onebots/README.md -------------------------------------------------------------------------------- /packages/onebots/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/onebots/package.json -------------------------------------------------------------------------------- /packages/onebots/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/onebots/src/app.ts -------------------------------------------------------------------------------- /packages/onebots/src/bin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/onebots/src/bin.ts -------------------------------------------------------------------------------- /packages/onebots/src/config.sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/onebots/src/config.sample.yaml -------------------------------------------------------------------------------- /packages/onebots/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/onebots/src/index.ts -------------------------------------------------------------------------------- /packages/onebots/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/packages/onebots/tsconfig.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /protocols/protocol-milky-v1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-milky-v1/CHANGELOG.md -------------------------------------------------------------------------------- /protocols/protocol-milky-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-milky-v1/README.md -------------------------------------------------------------------------------- /protocols/protocol-milky-v1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-milky-v1/package.json -------------------------------------------------------------------------------- /protocols/protocol-milky-v1/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-milky-v1/src/config.ts -------------------------------------------------------------------------------- /protocols/protocol-milky-v1/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-milky-v1/src/index.ts -------------------------------------------------------------------------------- /protocols/protocol-milky-v1/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-milky-v1/src/types.ts -------------------------------------------------------------------------------- /protocols/protocol-milky-v1/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-milky-v1/tsconfig.json -------------------------------------------------------------------------------- /protocols/protocol-onebot-v11/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-onebot-v11/CHANGELOG.md -------------------------------------------------------------------------------- /protocols/protocol-onebot-v11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-onebot-v11/README.md -------------------------------------------------------------------------------- /protocols/protocol-onebot-v11/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-onebot-v11/package.json -------------------------------------------------------------------------------- /protocols/protocol-onebot-v11/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-onebot-v11/src/README.md -------------------------------------------------------------------------------- /protocols/protocol-onebot-v11/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-onebot-v11/src/config.ts -------------------------------------------------------------------------------- /protocols/protocol-onebot-v11/src/cqcode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-onebot-v11/src/cqcode.ts -------------------------------------------------------------------------------- /protocols/protocol-onebot-v11/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-onebot-v11/src/index.ts -------------------------------------------------------------------------------- /protocols/protocol-onebot-v11/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-onebot-v11/src/types.ts -------------------------------------------------------------------------------- /protocols/protocol-onebot-v11/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-onebot-v11/src/utils.ts -------------------------------------------------------------------------------- /protocols/protocol-onebot-v11/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-onebot-v11/tsconfig.json -------------------------------------------------------------------------------- /protocols/protocol-onebot-v12/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-onebot-v12/CHANGELOG.md -------------------------------------------------------------------------------- /protocols/protocol-onebot-v12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-onebot-v12/README.md -------------------------------------------------------------------------------- /protocols/protocol-onebot-v12/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-onebot-v12/package.json -------------------------------------------------------------------------------- /protocols/protocol-onebot-v12/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-onebot-v12/src/config.ts -------------------------------------------------------------------------------- /protocols/protocol-onebot-v12/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-onebot-v12/src/index.ts -------------------------------------------------------------------------------- /protocols/protocol-onebot-v12/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-onebot-v12/src/types.ts -------------------------------------------------------------------------------- /protocols/protocol-onebot-v12/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-onebot-v12/tsconfig.json -------------------------------------------------------------------------------- /protocols/protocol-satori/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-satori/CHANGELOG.md -------------------------------------------------------------------------------- /protocols/protocol-satori/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-satori/README.md -------------------------------------------------------------------------------- /protocols/protocol-satori/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-satori/package.json -------------------------------------------------------------------------------- /protocols/protocol-satori/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-satori/src/README.md -------------------------------------------------------------------------------- /protocols/protocol-satori/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-satori/src/config.ts -------------------------------------------------------------------------------- /protocols/protocol-satori/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-satori/src/index.ts -------------------------------------------------------------------------------- /protocols/protocol-satori/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-satori/src/types.ts -------------------------------------------------------------------------------- /protocols/protocol-satori/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/protocols/protocol-satori/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-cn/onebots/HEAD/vitest.config.ts --------------------------------------------------------------------------------