diff --git a/repo/js/OBS录制/README.md b/repo/js/OBS录制/README.md
deleted file mode 100644
index 63987ae06..000000000
--- a/repo/js/OBS录制/README.md
+++ /dev/null
@@ -1,48 +0,0 @@
-# OBS录制
-
-## 介绍
-#### 该脚本是搭配auto-bgi软件使用,进行开启本地开启OBS录制和结束
-#### 不了解的可以去BetterGI的QQ频道搜索【auto-bgi】
-#### 也可以电脑点击【[ABGI](https://gitee.com/wangjian0327/auto-bgi/blob/ginVue/README.md)】,进行学习,了解
-
-------
-
- ## 注意
- #### 使用`OBS录制`脚本时,`ABGI`最低版本为【3.1】
-
-------
-
-## 使用方法
-
-#### 在`调度器`中新建`配置组`,`配置组`添加`OBS录制`右键脚本名字,找到【修改通用配置】将里面的【JS HTTP权限】下的`禁用`选择`启用`,在【修改JS脚本自定义设置】,选or填相关内容
-
-------
-
-#### 图文教程步骤一:
-
-
-#### 图文教程步骤二:
-
-
-#### 图文教程步骤三:
-
-
-#### 图文教程步骤四:
-
-
-#### 图文教程步骤五
-
-
-#### 图文教程步骤六
-
-
-------
-
-## 版本
-#### 0.0.1
-有啥不懂的,八九十群,可以艾特【古又】
-
-
-
-
-
diff --git a/repo/js/OBS录制/assets/img/步骤一.png b/repo/js/OBS录制/assets/img/步骤一.png
deleted file mode 100644
index 822ce2ad3..000000000
Binary files a/repo/js/OBS录制/assets/img/步骤一.png and /dev/null differ
diff --git a/repo/js/OBS录制/assets/img/步骤三.png b/repo/js/OBS录制/assets/img/步骤三.png
deleted file mode 100644
index cb92da770..000000000
Binary files a/repo/js/OBS录制/assets/img/步骤三.png and /dev/null differ
diff --git a/repo/js/OBS录制/assets/img/步骤二.png b/repo/js/OBS录制/assets/img/步骤二.png
deleted file mode 100644
index 7572d150a..000000000
Binary files a/repo/js/OBS录制/assets/img/步骤二.png and /dev/null differ
diff --git a/repo/js/OBS录制/assets/img/步骤五.png b/repo/js/OBS录制/assets/img/步骤五.png
deleted file mode 100644
index 56ff47289..000000000
Binary files a/repo/js/OBS录制/assets/img/步骤五.png and /dev/null differ
diff --git a/repo/js/OBS录制/assets/img/步骤六.png b/repo/js/OBS录制/assets/img/步骤六.png
deleted file mode 100644
index 2b2fbdc1b..000000000
Binary files a/repo/js/OBS录制/assets/img/步骤六.png and /dev/null differ
diff --git a/repo/js/OBS录制/assets/img/步骤四.png b/repo/js/OBS录制/assets/img/步骤四.png
deleted file mode 100644
index ac9b202fa..000000000
Binary files a/repo/js/OBS录制/assets/img/步骤四.png and /dev/null differ
diff --git a/repo/js/OBS录制/main.js b/repo/js/OBS录制/main.js
deleted file mode 100644
index 337a2e6dc..000000000
--- a/repo/js/OBS录制/main.js
+++ /dev/null
@@ -1,21 +0,0 @@
-
-(async function () {
- try {
- // 判断你是否运行ABGI
- await http.request('GET', `http://localhost:8082/api/index`, null, null);
-
- if (settings.selectScript == "开启录制") {
- await http.request('POST', `http://localhost:8082/api/abgiObs/StartRecording`, null, null);
- } else if (settings.selectScript == "关闭录制") {
- if (settings.rename == "") {
- await http.request('POST', `http://localhost:8082/api/abgiObs/StopRecording`, null, null);
- return;
- };
- const fileName = settings.rename;
- await http.request('POST', `http://localhost:8082/api/abgiObs/StopRecording?videoName=${fileName}`, null, null);
- };
- return;
- } catch (error) {
- log.error("你的ABGI未运行!!!")
- };
-})();
\ No newline at end of file
diff --git a/repo/js/OBS录制/manifest.json b/repo/js/OBS录制/manifest.json
deleted file mode 100644
index 507d2db69..000000000
--- a/repo/js/OBS录制/manifest.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "manifest_version": 1,
- "name": "OBS录制",
- "version": "0.0.2",
- "tags": [
- "abgi"
- ],
- "description": "录制哪个脚本",
- "saved_files": [
- ],
- "authors": [
- {
- "name": "隔壁老王",
- "links": "https://github.com/wjdsg0327"
- },
- {
- "name": "古又",
- "links": "https://github.com/guyou45"
- }
- ],
- "http_allowed_urls": [
- "http://localhost:8082/api/*"
- ],
- "settings_ui": "settings.json",
- "main": "main.js"
-}
\ No newline at end of file
diff --git a/repo/js/OBS录制/settings.json b/repo/js/OBS录制/settings.json
deleted file mode 100644
index 0ab47fcf7..000000000
--- a/repo/js/OBS录制/settings.json
+++ /dev/null
@@ -1,18 +0,0 @@
-[
- {
- "name": "selectScript",
- "type": "select",
- "label": "开启or关闭录制",
- "options": [
- "开启录制",
- "关闭录制"
- ],
- "default": ""
- },
- {
- "name": "rename",
- "type": "input-text",
- "label": "是否重命名录制视频名称,只需选择关闭录制时填写",
- "default": ""
- }
-]
\ No newline at end of file
diff --git a/repo/js/调用一条龙/README.md b/repo/js/调用一条龙/README.md
deleted file mode 100644
index 427bea585..000000000
--- a/repo/js/调用一条龙/README.md
+++ /dev/null
@@ -1,51 +0,0 @@
-# 调用一条龙
-
-## 介绍
-#### 该脚本是搭配auto-bgi软件使用,进行开启一条龙
-#### 不了解的可以去BetterGI的QQ频道搜索【auto-bgi】
-#### 也可以电脑点击【[ABGI](https://gitee.com/wangjian0327/auto-bgi/blob/ginVue/README.md)】,进行学习,了解
-
-------
-
- ## 注意
- #### 使用`调用一条龙`脚本时,`ABGI`最低版本为【3.1】
-
-------
-
-## 使用方法
-
-#### 在`调度器`中新建`配置组`,`配置组`添加`调用一条龙`右键脚本名字,找到【修改通用配置】将里面的【JS HTTP权限】下的`禁用`选择`启用`,在【修改JS脚本自定义设置】,选or填相关内容
-#### 图文教程拿`OBS录制`做示例
-------
-
-#### 图文教程步骤一:
-
-
-#### 图文教程步骤二:
-
-
-#### 图文教程步骤三:
-
-
-#### 图文教程步骤四:
-
-
-#### 图文教程步骤五
-
-
-#### 图文教程步骤六
-
-
-------
-
-## 版本
-#### 0.0.2
-修复不能正常启动
-
-#### 0.0.1
-有啥不懂的,八九十群,可以艾特【古又】
-
-
-
-
-
diff --git a/repo/js/调用一条龙/assets/img/步骤一.png b/repo/js/调用一条龙/assets/img/步骤一.png
deleted file mode 100644
index 822ce2ad3..000000000
Binary files a/repo/js/调用一条龙/assets/img/步骤一.png and /dev/null differ
diff --git a/repo/js/调用一条龙/assets/img/步骤三.png b/repo/js/调用一条龙/assets/img/步骤三.png
deleted file mode 100644
index cb92da770..000000000
Binary files a/repo/js/调用一条龙/assets/img/步骤三.png and /dev/null differ
diff --git a/repo/js/调用一条龙/assets/img/步骤二.png b/repo/js/调用一条龙/assets/img/步骤二.png
deleted file mode 100644
index 7572d150a..000000000
Binary files a/repo/js/调用一条龙/assets/img/步骤二.png and /dev/null differ
diff --git a/repo/js/调用一条龙/assets/img/步骤五.png b/repo/js/调用一条龙/assets/img/步骤五.png
deleted file mode 100644
index 56ff47289..000000000
Binary files a/repo/js/调用一条龙/assets/img/步骤五.png and /dev/null differ
diff --git a/repo/js/调用一条龙/assets/img/步骤六.png b/repo/js/调用一条龙/assets/img/步骤六.png
deleted file mode 100644
index 2b2fbdc1b..000000000
Binary files a/repo/js/调用一条龙/assets/img/步骤六.png and /dev/null differ
diff --git a/repo/js/调用一条龙/assets/img/步骤四.png b/repo/js/调用一条龙/assets/img/步骤四.png
deleted file mode 100644
index ac9b202fa..000000000
Binary files a/repo/js/调用一条龙/assets/img/步骤四.png and /dev/null differ
diff --git a/repo/js/调用一条龙/main.js b/repo/js/调用一条龙/main.js
deleted file mode 100644
index 7a983d342..000000000
--- a/repo/js/调用一条龙/main.js
+++ /dev/null
@@ -1,15 +0,0 @@
-
-(async function () {
-
-
- try {
- // 判断你是否运行ABGI
- const exitABGI = await http.request('GET', `http://localhost:8082/api/index`, null, null);
- log.debug(`ABGI状态: ${JSON.stringify(exitABGI.body)}`);
- } catch (error) {
- log.error("ABGI未运行");
- return;
- };
-
- const listResp = await http.request('POST',"http://localhost:8082/api/oneLong/startOneLong",JSON.stringify(`${settings.oneDragonName}`),null);
-})();
\ No newline at end of file
diff --git a/repo/js/调用一条龙/manifest.json b/repo/js/调用一条龙/manifest.json
deleted file mode 100644
index 8c38a110e..000000000
--- a/repo/js/调用一条龙/manifest.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "manifest_version": 1,
- "name": "启动一条龙",
- "version": "0.0.2",
- "tags": [
- "abgi"
- ],
- "description": "调用ABGI接口,启动一条龙",
- "saved_files": [
- ],
- "authors": [
- {
- "name": "隔壁老王",
- "links": "https://github.com/wjdsg0327"
- },
- {
- "name": "古又",
- "links": "https://github.com/guyou45"
- }
- ],
- "http_allowed_urls": [
- "http://localhost:8082/api/*"
- ],
- "settings_ui": "settings.json",
- "main": "main.js"
-}
\ No newline at end of file
diff --git a/repo/js/调用一条龙/settings.json b/repo/js/调用一条龙/settings.json
deleted file mode 100644
index d3f44527b..000000000
--- a/repo/js/调用一条龙/settings.json
+++ /dev/null
@@ -1,8 +0,0 @@
-[
- {
- "name": "oneDragonName",
- "type": "input-text",
- "label": "输入要启动的一条龙(默认:默认配置)",
- "default": "默认配置"
- }
-]
\ No newline at end of file