koishi-plugin-ender-chatluna-baidu-netdisk 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +24 -0
- package/README.md +23 -0
- package/client/LoginConsole.vue +1013 -0
- package/client/index.ts +12 -0
- package/dist/index.js +13 -0
- package/dist/style.css +1 -0
- package/docs/baidu_netdisk_skill.md +122 -0
- package/lib/client.d.ts +161 -0
- package/lib/client.js +1426 -0
- package/lib/db.d.ts +39 -0
- package/lib/db.js +124 -0
- package/lib/downloader.d.ts +37 -0
- package/lib/downloader.js +152 -0
- package/lib/index.d.ts +53 -0
- package/lib/index.js +820 -0
- package/package.json +86 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
GNU AFFERO GENERAL PUBLIC LICENSE
|
|
2
|
+
Version 3, 19 November 2007
|
|
3
|
+
|
|
4
|
+
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
|
5
|
+
Everyone is permitted to copy and distribute verbatim copies
|
|
6
|
+
of this license document, but changing it is not allowed.
|
|
7
|
+
|
|
8
|
+
Copyright (c) 2026 yabo083
|
|
9
|
+
|
|
10
|
+
This program is free software: you can redistribute it and/or modify
|
|
11
|
+
it under the terms of the GNU Affero General Public License version 3
|
|
12
|
+
as published by the Free Software Foundation.
|
|
13
|
+
|
|
14
|
+
This program is distributed in the hope that it will be useful,
|
|
15
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
17
|
+
GNU Affero General Public License for more details.
|
|
18
|
+
|
|
19
|
+
You should have received a copy of the GNU Affero General Public License
|
|
20
|
+
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
21
|
+
|
|
22
|
+
Full license text:
|
|
23
|
+
https://www.gnu.org/licenses/agpl-3.0.txt
|
|
24
|
+
|
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# koishi-plugin-ender-chatluna-baidu-netdisk
|
|
2
|
+
|
|
3
|
+
Miyako ChatLuna 百度网盘工具插件。它为 ChatLuna 暴露封装后的网盘文件管理、分享转存、分享创建与下载代理工具,同时将账号凭证、Cookie、下载端点与并发下载逻辑保留在插件服务端内部。
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- Koishi 控制台扫码登录与多账号管理
|
|
8
|
+
- ChatLuna 工具:列目录、搜索、建目录、重命名、移动、删除开关保护
|
|
9
|
+
- 分享链接转存与已有文件创建分享链接
|
|
10
|
+
- 下载代理链接与插件内并发分片下载
|
|
11
|
+
- 面向提示词注入的凭证边界:模型只调用工具,不接触内部账号材料
|
|
12
|
+
|
|
13
|
+
## Development
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install
|
|
17
|
+
npm run build
|
|
18
|
+
npm test
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Publishing
|
|
22
|
+
|
|
23
|
+
GitHub Actions uses npm trusted publishing/OIDC on `v*` tags. The first npm package and trusted publisher settings should be created in npm by the maintainer before relying on the workflow for automated publish.
|