👷 CI: 使用最新版的 NoneFlow (#3127)
Some checks failed
Code Coverage / Test Coverage (pydantic-v1, macos-latest, 3.10) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v1, macos-latest, 3.11) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v1, macos-latest, 3.12) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v1, macos-latest, 3.9) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v1, windows-latest, 3.10) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v1, windows-latest, 3.11) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v1, windows-latest, 3.12) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v1, windows-latest, 3.9) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v2, macos-latest, 3.10) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v2, macos-latest, 3.11) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v2, macos-latest, 3.12) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v2, macos-latest, 3.9) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v2, windows-latest, 3.10) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v2, windows-latest, 3.11) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v2, windows-latest, 3.12) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v2, windows-latest, 3.9) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v1, ubuntu-latest, 3.10) (push) Failing after 57s
Code Coverage / Test Coverage (pydantic-v1, ubuntu-latest, 3.11) (push) Failing after 57s
Code Coverage / Test Coverage (pydantic-v1, ubuntu-latest, 3.9) (push) Failing after 18s
Code Coverage / Test Coverage (pydantic-v2, ubuntu-latest, 3.10) (push) Failing after 2s
Code Coverage / Test Coverage (pydantic-v1, ubuntu-latest, 3.12) (push) Failing after 53s
Code Coverage / Test Coverage (pydantic-v2, ubuntu-latest, 3.11) (push) Failing after 56s
Code Coverage / Test Coverage (pydantic-v2, ubuntu-latest, 3.12) (push) Failing after 54s
Code Coverage / Test Coverage (pydantic-v2, ubuntu-latest, 3.9) (push) Failing after 54s
Pyright Lint / Pyright Lint (pydantic-v1) (push) Failing after 51s
Ruff Lint / Ruff Lint (push) Successful in 22s
Pyright Lint / Pyright Lint (pydantic-v2) (push) Failing after 52s
Site Deploy / publish (push) Failing after 55s

This commit is contained in:
uy/sun 2024-11-18 23:18:27 +08:00 committed by GitHub
parent 83552d6995
commit 7f8b5e9993
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 742 additions and 816 deletions

View File

@ -15,9 +15,9 @@ concurrency:
cancel-in-progress: false cancel-in-progress: false
jobs: jobs:
check: noneflow:
runs-on: ubuntu-latest runs-on: ubuntu-latest
name: check name: noneflow
# do not run on forked PRs, do not run on not related issues, do not run on pr comments # do not run on forked PRs, do not run on not related issues, do not run on pr comments
if: | if: |
!( !(
@ -36,70 +36,6 @@ jobs:
github.event_name == 'issue_comment' && github.event.issue.pull_request github.event_name == 'issue_comment' && github.event.issue.pull_request
) )
) )
steps:
- run: echo "Check passed"
reaction:
runs-on: ubuntu-latest
name: reaction
needs: check
if: |
(
github.event_name == 'issue_comment' &&
github.event.action == 'created'
) ||
(
github.event_name == 'issues' &&
github.event.action == 'opened'
)
steps:
- name: Generate token
id: generate-token
uses: tibdex/github-app-token@v2
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_KEY }}
- name: Reaction on issue
if: github.event_name == 'issues'
run: |
gh api --method POST /repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/reactions -f "content=rocket"
env:
GH_TOKEN: ${{ steps.generate-token.outputs.token }}
- name: Reaction on issue comment
if: github.event_name == 'issue_comment'
run: |
gh api --method POST /repos/${{ github.repository }}/issues/comments/${{ github.event.comment.id }}/reactions -f "content=rocket"
env:
GH_TOKEN: ${{ steps.generate-token.outputs.token }}
plugin_test:
runs-on: ubuntu-latest
name: nonebot2 plugin test
needs: check
permissions:
issues: read
outputs:
result: ${{ steps.plugin-test.outputs.RESULT }}
output: ${{ steps.plugin-test.outputs.OUTPUT }}
metadata: ${{ steps.plugin-test.outputs.METADATA }}
steps:
- name: Install Poetry
if: ${{ !startsWith(github.event_name, 'pull_request') }}
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Test Plugin
id: plugin-test
run: |
curl -sSL https://github.com/nonebot/noneflow/releases/latest/download/plugin_test.py | python -
noneflow:
runs-on: ubuntu-latest
name: noneflow
needs: plugin_test
steps: steps:
- name: Generate token - name: Generate token
id: generate-token id: generate-token
@ -125,14 +61,12 @@ jobs:
config: > config: >
{ {
"base": "master", "base": "master",
"plugin_path": "assets/plugins.json", "plugin_path": "assets/plugins.json5",
"bot_path": "assets/bots.json", "bot_path": "assets/bots.json5",
"adapter_path": "assets/adapters.json" "adapter_path": "assets/adapters.json5",
"registry_repository": "nonebot/registry"
} }
env: env:
PLUGIN_TEST_RESULT: ${{ needs.plugin_test.outputs.result }}
PLUGIN_TEST_OUTPUT: ${{ needs.plugin_test.outputs.output }}
PLUGIN_TEST_METADATA: ${{ needs.plugin_test.outputs.metadata }}
APP_ID: ${{ secrets.APP_ID }} APP_ID: ${{ secrets.APP_ID }}
PRIVATE_KEY: ${{ secrets.APP_KEY }} PRIVATE_KEY: ${{ secrets.APP_KEY }}
PRE_COMMIT_HOME: /github/workspace/.cache/.pre-commit PRE_COMMIT_HOME: /github/workspace/.cache/.pre-commit

View File

@ -4,7 +4,7 @@
"project_link": "nonebot-adapter-onebot", "project_link": "nonebot-adapter-onebot",
"name": "OneBot V11", "name": "OneBot V11",
"desc": "OneBot V11 协议", "desc": "OneBot V11 协议",
"author": "yanyongyu", "author_id": 42488585,
"homepage": "https://onebot.adapters.nonebot.dev/", "homepage": "https://onebot.adapters.nonebot.dev/",
"tags": [], "tags": [],
"is_official": true "is_official": true
@ -14,7 +14,7 @@
"project_link": "nonebot-adapter-ding", "project_link": "nonebot-adapter-ding",
"name": "钉钉", "name": "钉钉",
"desc": "钉钉协议", "desc": "钉钉协议",
"author": "Artin", "author_id": 1184028,
"homepage": "https://github.com/nonebot/adapter-ding", "homepage": "https://github.com/nonebot/adapter-ding",
"tags": [], "tags": [],
"is_official": true "is_official": true
@ -24,7 +24,7 @@
"project_link": "nonebot-adapter-feishu", "project_link": "nonebot-adapter-feishu",
"name": "飞书", "name": "飞书",
"desc": "飞书协议", "desc": "飞书协议",
"author": "StarHeartHunt", "author_id": 14922941,
"homepage": "https://github.com/nonebot/adapter-feishu", "homepage": "https://github.com/nonebot/adapter-feishu",
"tags": [], "tags": [],
"is_official": true "is_official": true
@ -34,7 +34,7 @@
"project_link": "nonebot-adapter-telegram", "project_link": "nonebot-adapter-telegram",
"name": "Telegram", "name": "Telegram",
"desc": "Telegram 协议", "desc": "Telegram 协议",
"author": "j1g5awi", "author_id": 50312681,
"homepage": "https://github.com/nonebot/adapter-telegram", "homepage": "https://github.com/nonebot/adapter-telegram",
"tags": [], "tags": [],
"is_official": true "is_official": true
@ -44,7 +44,7 @@
"project_link": "nonebot-adapter-qq", "project_link": "nonebot-adapter-qq",
"name": "QQ", "name": "QQ",
"desc": "QQ 官方机器人", "desc": "QQ 官方机器人",
"author": "yanyongyu", "author_id": 42488585,
"homepage": "https://github.com/nonebot/adapter-qq", "homepage": "https://github.com/nonebot/adapter-qq",
"tags": [], "tags": [],
"is_official": true "is_official": true
@ -54,7 +54,7 @@
"project_link": "nonebot-adapter-kaiheila", "project_link": "nonebot-adapter-kaiheila",
"name": "开黑啦", "name": "开黑啦",
"desc": "开黑啦协议适配", "desc": "开黑啦协议适配",
"author": "Tian-que", "author_id": 37477320,
"homepage": "https://github.com/Tian-que/nonebot-adapter-kaiheila", "homepage": "https://github.com/Tian-que/nonebot-adapter-kaiheila",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -64,7 +64,7 @@
"project_link": "nonebot-adapter-mirai", "project_link": "nonebot-adapter-mirai",
"name": "Mirai", "name": "Mirai",
"desc": "mirai-api-http v2 协议适配", "desc": "mirai-api-http v2 协议适配",
"author": "RF-Tar-Railt", "author_id": 42648639,
"homepage": "https://github.com/nonebot/adapter-mirai", "homepage": "https://github.com/nonebot/adapter-mirai",
"tags": [], "tags": [],
"is_official": true "is_official": true
@ -74,7 +74,7 @@
"project_link": "nonebot-adapter-onebot", "project_link": "nonebot-adapter-onebot",
"name": "OneBot V12", "name": "OneBot V12",
"desc": "OneBot V12 协议", "desc": "OneBot V12 协议",
"author": "yanyongyu", "author_id": 42488585,
"homepage": "https://onebot.adapters.nonebot.dev/", "homepage": "https://onebot.adapters.nonebot.dev/",
"tags": [], "tags": [],
"is_official": true "is_official": true
@ -84,7 +84,7 @@
"project_link": "nonebot-adapter-console", "project_link": "nonebot-adapter-console",
"name": "Console", "name": "Console",
"desc": "基于终端的交互式适配器", "desc": "基于终端的交互式适配器",
"author": "Melodyknit", "author_id": 50488999,
"homepage": "https://github.com/nonebot/adapter-console", "homepage": "https://github.com/nonebot/adapter-console",
"tags": [], "tags": [],
"is_official": true "is_official": true
@ -94,7 +94,7 @@
"project_link": "nonebot-adapter-github", "project_link": "nonebot-adapter-github",
"name": "GitHub", "name": "GitHub",
"desc": "GitHub APP & OAuth APP integration", "desc": "GitHub APP & OAuth APP integration",
"author": "yanyongyu", "author_id": 42488585,
"homepage": "https://github.com/nonebot/adapter-github", "homepage": "https://github.com/nonebot/adapter-github",
"tags": [], "tags": [],
"is_official": true "is_official": true
@ -104,7 +104,7 @@
"project_link": "nonebot-adapter-ntchat", "project_link": "nonebot-adapter-ntchat",
"name": "Ntchat", "name": "Ntchat",
"desc": "pc hook的微信客户端适配", "desc": "pc hook的微信客户端适配",
"author": "JustUndertaker", "author_id": 37363867,
"homepage": "https://github.com/JustUndertaker/adapter-ntchat", "homepage": "https://github.com/JustUndertaker/adapter-ntchat",
"tags": [ "tags": [
{ {
@ -119,7 +119,7 @@
"project_link": "nonebot-adapter-minecraft", "project_link": "nonebot-adapter-minecraft",
"name": "Minecraft", "name": "Minecraft",
"desc": "MineCraft通信适配支持Rcon", "desc": "MineCraft通信适配支持Rcon",
"author": "17TheWord", "author_id": 54731914,
"homepage": "https://github.com/17TheWord/nonebot-adapter-minecraft", "homepage": "https://github.com/17TheWord/nonebot-adapter-minecraft",
"tags": [ "tags": [
{ {
@ -134,7 +134,7 @@
"project_link": "nonebot-adapter-bilibili", "project_link": "nonebot-adapter-bilibili",
"name": "BilibiliLive", "name": "BilibiliLive",
"desc": "b站直播间ws协议", "desc": "b站直播间ws协议",
"author": "wwweww", "author_id": 39620657,
"homepage": "https://github.com/wwweww/adapter-bilibili", "homepage": "https://github.com/wwweww/adapter-bilibili",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -144,7 +144,7 @@
"project_link": "nonebot-adapter-walleq", "project_link": "nonebot-adapter-walleq",
"name": "Walle-Q", "name": "Walle-Q",
"desc": "内置 QQ 协议实现", "desc": "内置 QQ 协议实现",
"author": "abrahum", "author_id": 18395948,
"homepage": "https://github.com/onebot-walle/nonebot_adapter_walleq", "homepage": "https://github.com/onebot-walle/nonebot_adapter_walleq",
"tags": [ "tags": [
{ {
@ -159,7 +159,7 @@
"project_link": "nonebot-adapter-villa", "project_link": "nonebot-adapter-villa",
"name": "大别野", "name": "大别野",
"desc": "米游社大别野官方Bot适配", "desc": "米游社大别野官方Bot适配",
"author": "CMHopeSunshine", "author_id": 63870437,
"homepage": "https://github.com/CMHopeSunshine/nonebot-adapter-villa", "homepage": "https://github.com/CMHopeSunshine/nonebot-adapter-villa",
"tags": [ "tags": [
{ {
@ -174,7 +174,7 @@
"project_link": "nonebot-adapter-red", "project_link": "nonebot-adapter-red",
"name": "RedProtocol", "name": "RedProtocol",
"desc": "QQNT RedProtocol 适配", "desc": "QQNT RedProtocol 适配",
"author": "zhaomaoniu", "author_id": 55650833,
"homepage": "https://github.com/nonebot/adapter-red", "homepage": "https://github.com/nonebot/adapter-red",
"tags": [], "tags": [],
"is_official": true "is_official": true
@ -184,7 +184,7 @@
"project_link": "nonebot-adapter-discord", "project_link": "nonebot-adapter-discord",
"name": "Discord", "name": "Discord",
"desc": "Discord 官方 Bot 协议适配", "desc": "Discord 官方 Bot 协议适配",
"author": "CMHopeSunshine", "author_id": 63870437,
"homepage": "https://github.com/nonebot/adapter-discord", "homepage": "https://github.com/nonebot/adapter-discord",
"tags": [], "tags": [],
"is_official": true "is_official": true
@ -194,7 +194,7 @@
"project_link": "nonebot-adapter-satori", "project_link": "nonebot-adapter-satori",
"name": "Satori", "name": "Satori",
"desc": "Satori 协议适配器", "desc": "Satori 协议适配器",
"author": "RF-Tar-Railt", "author_id": 42648639,
"homepage": "https://github.com/nonebot/adapter-satori", "homepage": "https://github.com/nonebot/adapter-satori",
"tags": [ "tags": [
{ {
@ -209,7 +209,7 @@
"project_link": "nonebot-adapter-dodo", "project_link": "nonebot-adapter-dodo",
"name": "DoDo", "name": "DoDo",
"desc": "DoDo Bot 协议适配器", "desc": "DoDo Bot 协议适配器",
"author": "CMHopeSunshine", "author_id": 63870437,
"homepage": "https://github.com/nonebot/adapter-dodo", "homepage": "https://github.com/nonebot/adapter-dodo",
"tags": [], "tags": [],
"is_official": true "is_official": true
@ -219,7 +219,7 @@
"project_link": "nonebot-adapter-rocketchat", "project_link": "nonebot-adapter-rocketchat",
"name": "RocketChat", "name": "RocketChat",
"desc": "RocketChat adapter for nonebot2", "desc": "RocketChat adapter for nonebot2",
"author": "IllTamer", "author_id": 78360471,
"homepage": "https://github.com/IUnlimit/nonebot-adapter-rocketchat", "homepage": "https://github.com/IUnlimit/nonebot-adapter-rocketchat",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -229,7 +229,7 @@
"project_link": "nonebot-adapter-kritor", "project_link": "nonebot-adapter-kritor",
"name": "Kritor", "name": "Kritor",
"desc": "Kritor 协议适配", "desc": "Kritor 协议适配",
"author": "RF-Tar-Railt", "author_id": 42648639,
"homepage": "https://github.com/nonebot/adapter-kritor", "homepage": "https://github.com/nonebot/adapter-kritor",
"tags": [ "tags": [
{ {
@ -244,9 +244,9 @@
"project_link": "nonebot-adapter-tailchat", "project_link": "nonebot-adapter-tailchat",
"name": "Tailchat", "name": "Tailchat",
"desc": "Tailchat 适配器", "desc": "Tailchat 适配器",
"author": "eya46", "author_id": 61458340,
"homepage": "https://github.com/eya46/nonebot-adapter-tailchat", "homepage": "https://github.com/eya46/nonebot-adapter-tailchat",
"tags": [], "tags": [],
"is_official": false "is_official": false
} },
] ]

View File

@ -2,7 +2,7 @@
{ {
"name": "HarukaBot", "name": "HarukaBot",
"desc": "将B站UP主的动态和直播信息推送至QQ", "desc": "将B站UP主的动态和直播信息推送至QQ",
"author": "SK-415", "author_id": 36433929,
"homepage": "https://github.com/SK-415/HarukaBot", "homepage": "https://github.com/SK-415/HarukaBot",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -10,7 +10,7 @@
{ {
"name": "Omega Miya", "name": "Omega Miya",
"desc": "B站推送Pixiv搜图识番求签抽卡表情包还有其他杂七杂八的功能", "desc": "B站推送Pixiv搜图识番求签抽卡表情包还有其他杂七杂八的功能",
"author": "Ailitonia", "author_id": 41713304,
"homepage": "https://github.com/Ailitonia/omega-miya", "homepage": "https://github.com/Ailitonia/omega-miya",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -18,7 +18,7 @@
{ {
"name": "Github Bot", "name": "Github Bot",
"desc": "在QQ获取/处理Github repo/pr/issue", "desc": "在QQ获取/处理Github repo/pr/issue",
"author": "yanyongyu", "author_id": 42488585,
"homepage": "https://github.com/cscs181/QQ-GitHub-Bot", "homepage": "https://github.com/cscs181/QQ-GitHub-Bot",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -26,7 +26,7 @@
{ {
"name": "YanXiBot", "name": "YanXiBot",
"desc": "动漫资源查找与娱乐机器人", "desc": "动漫资源查找与娱乐机器人",
"author": "Melodyknit", "author_id": 50488999,
"homepage": "https://github.com/Melodyknit/YanXiBot", "homepage": "https://github.com/Melodyknit/YanXiBot",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -34,7 +34,7 @@
{ {
"name": "绪山真寻bot", "name": "绪山真寻bot",
"desc": "含有不少的娱乐功能同时稍稍有一些实用的功能 :P", "desc": "含有不少的娱乐功能同时稍稍有一些实用的功能 :P",
"author": "HibiKier", "author_id": 45528451,
"homepage": "https://github.com/HibiKier/zhenxun_bot", "homepage": "https://github.com/HibiKier/zhenxun_bot",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -42,7 +42,7 @@
{ {
"name": "ATRI", "name": "ATRI",
"desc": "高性能文爱萝卜子,糅杂了各类有趣小功能", "desc": "高性能文爱萝卜子,糅杂了各类有趣小功能",
"author": "Kyomotoi", "author_id": 37587870,
"homepage": "https://github.com/Kyomotoi/ATRI", "homepage": "https://github.com/Kyomotoi/ATRI",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -50,7 +50,7 @@
{ {
"name": "dumbot傻瓜机器人", "name": "dumbot傻瓜机器人",
"desc": "猜一猜游戏、新闻一览、英文每日一词一短语等等含一键启动及docker容器部署就绪", "desc": "猜一猜游戏、新闻一览、英文每日一词一短语等等含一键启动及docker容器部署就绪",
"author": "ffreemt", "author_id": 52522252,
"homepage": "https://github.com/ffreemt/koyeb-nb2", "homepage": "https://github.com/ffreemt/koyeb-nb2",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -58,7 +58,7 @@
{ {
"name": "DicePP", "name": "DicePP",
"desc": "TRPG骰娘, 带先攻, 查询等功能, 主要面向DND5E. 面对骰主推出的船新版本, 内置Windows/Linux详细部署指南以及方便的自定义骰娘方法, 从回复文本到查询资料库都可轻松配置~", "desc": "TRPG骰娘, 带先攻, 查询等功能, 主要面向DND5E. 面对骰主推出的船新版本, 内置Windows/Linux详细部署指南以及方便的自定义骰娘方法, 从回复文本到查询资料库都可轻松配置~",
"author": "pear-studio", "author_id": 88259371,
"homepage": "https://github.com/pear-studio/nonebot-dicepp", "homepage": "https://github.com/pear-studio/nonebot-dicepp",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -66,7 +66,7 @@
{ {
"name": "SetuBot", "name": "SetuBot",
"desc": "每个群配置文件独立,可以控制频率,socks http代理,R18开关,支持多tag,自建API lolicon Pixiv热度榜", "desc": "每个群配置文件独立,可以控制频率,socks http代理,R18开关,支持多tag,自建API lolicon Pixiv热度榜",
"author": "yuban10703", "author_id": 39484884,
"homepage": "https://github.com/yuban10703/setu-nonebot2", "homepage": "https://github.com/yuban10703/setu-nonebot2",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -74,7 +74,7 @@
{ {
"name": "剑网三bot", "name": "剑网三bot",
"desc": "网络游戏《剑侠情缘三》的群聊机器人数据使用www.jx3api.com", "desc": "网络游戏《剑侠情缘三》的群聊机器人数据使用www.jx3api.com",
"author": "JustUndertaker", "author_id": 37363867,
"homepage": "https://github.com/JustUndertaker/mini_jx3_bot", "homepage": "https://github.com/JustUndertaker/mini_jx3_bot",
"tags": [ "tags": [
{ {
@ -87,7 +87,7 @@
{ {
"name": "PixivBot", "name": "PixivBot",
"desc": "顾名思义是Pixiv的bot随机推荐插画、随机指定关键词插画、随机书签、查看排行榜、查看指定id插画", "desc": "顾名思义是Pixiv的bot随机推荐插画、随机指定关键词插画、随机书签、查看排行榜、查看指定id插画",
"author": "ssttkkl", "author_id": 17331698,
"homepage": "https://github.com/ssttkkl/PixivBot", "homepage": "https://github.com/ssttkkl/PixivBot",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -95,7 +95,7 @@
{ {
"name": "SeaBot_QQ", "name": "SeaBot_QQ",
"desc": "一个能够获取新闻资讯并推送至QQ的群聊机器人。", "desc": "一个能够获取新闻资讯并推送至QQ的群聊机器人。",
"author": "B1ue1nWh1te", "author_id": 31682561,
"homepage": "https://github.com/B1ue1nWh1te/SeaBot_QQ", "homepage": "https://github.com/B1ue1nWh1te/SeaBot_QQ",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -103,7 +103,7 @@
{ {
"name": "琪露诺Bot", "name": "琪露诺Bot",
"desc": "用QQ机器人控制Minecraft服务器服务器状态查询/服务器白名单/插件列表/玩家查询/转发服务器消息/执行指令... 其他实用娱乐功能三步即可成功部署的QQ bot", "desc": "用QQ机器人控制Minecraft服务器服务器状态查询/服务器白名单/插件列表/玩家查询/转发服务器消息/执行指令... 其他实用娱乐功能三步即可成功部署的QQ bot",
"author": "summerkirakira", "author_id": 56951617,
"homepage": "https://github.com/summerkirakira/CirnoBot", "homepage": "https://github.com/summerkirakira/CirnoBot",
"tags": [ "tags": [
{ {
@ -116,7 +116,7 @@
{ {
"name": "Inkar Suki", "name": "Inkar Suki",
"desc": "一个十分方便的Bot支持包括Webhook、群管、剑网3等一系列功能持续更新中……", "desc": "一个十分方便的Bot支持包括Webhook、群管、剑网3等一系列功能持续更新中……",
"author": "HornCopper", "author_id": 68726147,
"homepage": "https://github.com/HornCopper/Inkar-Suki", "homepage": "https://github.com/HornCopper/Inkar-Suki",
"tags": [ "tags": [
{ {
@ -137,7 +137,7 @@
{ {
"name": "屑岛风Bot", "name": "屑岛风Bot",
"desc": "自家用屑Bot", "desc": "自家用屑Bot",
"author": "kexue-z", "author_id": 71873002,
"homepage": "https://github.com/kexue-z/Dao-bot", "homepage": "https://github.com/kexue-z/Dao-bot",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -145,7 +145,7 @@
{ {
"name": "LiteyukiBot-轻雪机器人", "name": "LiteyukiBot-轻雪机器人",
"desc": "一个有各种琐事功能的bot有AI接口能陪聊", "desc": "一个有各种琐事功能的bot有AI接口能陪聊",
"author": "snowyfirefly", "author_id": 79104275,
"homepage": "https://github.com/snowyfirefly/Liteyuki", "homepage": "https://github.com/snowyfirefly/Liteyuki",
"tags": [ "tags": [
{ {
@ -162,7 +162,7 @@
{ {
"name": "nya_bot", "name": "nya_bot",
"desc": "喵服——战魂铭人联机服务器兼机器人", "desc": "喵服——战魂铭人联机服务器兼机器人",
"author": "nikissXI", "author_id": 31379266,
"homepage": "https://github.com/nikissXI/nya_bot", "homepage": "https://github.com/nikissXI/nya_bot",
"tags": [ "tags": [
{ {
@ -175,7 +175,7 @@
{ {
"name": "真宵Bot", "name": "真宵Bot",
"desc": "专注群聊的QQ机器人", "desc": "专注群聊的QQ机器人",
"author": "Shine-Light", "author_id": 71173418,
"homepage": "https://github.com/Shine-Light/Nonebot_Bot_MayaFey", "homepage": "https://github.com/Shine-Light/Nonebot_Bot_MayaFey",
"tags": [ "tags": [
{ {
@ -196,7 +196,7 @@
{ {
"name": "SkadiBot", "name": "SkadiBot",
"desc": "明日方舟主题机器人—斯卡蒂", "desc": "明日方舟主题机器人—斯卡蒂",
"author": "yuyuziYYZ", "author_id": 101615359,
"homepage": "https://github.com/yuyuziYYZ/skadi_bot", "homepage": "https://github.com/yuyuziYYZ/skadi_bot",
"tags": [ "tags": [
{ {
@ -217,7 +217,7 @@
{ {
"name": "小白机器人", "name": "小白机器人",
"desc": "一个高度依赖数据库的群管理机器人", "desc": "一个高度依赖数据库的群管理机器人",
"author": "SDIJF1521", "author_id": 69745333,
"homepage": "https://github.com/SDIJF1521/qqai", "homepage": "https://github.com/SDIJF1521/qqai",
"tags": [ "tags": [
{ {
@ -234,7 +234,7 @@
{ {
"name": "LittlePaimon", "name": "LittlePaimon",
"desc": "小派蒙,多功能原神机器人。", "desc": "小派蒙,多功能原神机器人。",
"author": "CMHopeSunshine", "author_id": 63870437,
"homepage": "https://github.com/CMHopeSunshine/LittlePaimon", "homepage": "https://github.com/CMHopeSunshine/LittlePaimon",
"tags": [ "tags": [
{ {
@ -247,7 +247,7 @@
{ {
"name": "IdhagnBot", "name": "IdhagnBot",
"desc": "🐱🤖 一个以娱乐功能为主的缝合怪划掉QQ机器人包含一定Furry要素但是不会卖萌就是逊啦", "desc": "🐱🤖 一个以娱乐功能为主的缝合怪划掉QQ机器人包含一定Furry要素但是不会卖萌就是逊啦",
"author": "su226", "author_id": 17371317,
"homepage": "https://github.com/su226/IdhagnBot", "homepage": "https://github.com/su226/IdhagnBot",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -255,7 +255,7 @@
{ {
"name": "hsbot", "name": "hsbot",
"desc": "服务于《炉石传说》玩家的机器人,上线至今已有加入十余个个炉石相关群聊,上千名用户使用,响应请求数万次。 数据使用HSreplay, Fbigame, Hearthstone API", "desc": "服务于《炉石传说》玩家的机器人,上线至今已有加入十余个个炉石相关群聊,上千名用户使用,响应请求数万次。 数据使用HSreplay, Fbigame, Hearthstone API",
"author": "gzy02", "author_id": 67055520,
"homepage": "https://github.com/gzy02/hsbot", "homepage": "https://github.com/gzy02/hsbot",
"tags": [ "tags": [
{ {
@ -268,7 +268,7 @@
{ {
"name": "Bread Dog Bot", "name": "Bread Dog Bot",
"desc": "Terraria TShock QQ 机器人", "desc": "Terraria TShock QQ 机器人",
"author": "Qianyiovo", "author_id": 160252668,
"homepage": "https://github.com/Qianyiovo/bread_dog_bot", "homepage": "https://github.com/Qianyiovo/bread_dog_bot",
"tags": [ "tags": [
{ {
@ -289,7 +289,7 @@
{ {
"name": "RanBot", "name": "RanBot",
"desc": "不@会很安静的Bot", "desc": "不@会很安静的Bot",
"author": "IAXRetailer", "author_id": 88923783,
"homepage": "https://github.com/Hecatia-Hell-Workshop/RanBot", "homepage": "https://github.com/Hecatia-Hell-Workshop/RanBot",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -297,7 +297,7 @@
{ {
"name": "辞辞(cici)Bot", "name": "辞辞(cici)Bot",
"desc": "一个集成娱乐和群管为一体的机器人", "desc": "一个集成娱乐和群管为一体的机器人",
"author": "mengxinyuan638", "author_id": 90902259,
"homepage": "https://github.com/mengxinyuan638/cici-bot", "homepage": "https://github.com/mengxinyuan638/cici-bot",
"tags": [ "tags": [
{ {
@ -318,7 +318,7 @@
{ {
"name": "SuzunoBot", "name": "SuzunoBot",
"desc": "多功能音游bot主要服务maimaiDX、Arcaea", "desc": "多功能音游bot主要服务maimaiDX、Arcaea",
"author": "Rinfair-CSP-A016", "author_id": 29980586,
"homepage": "https://github.com/Rinfair-CSP-A016/SuzunoBot-AGLAS", "homepage": "https://github.com/Rinfair-CSP-A016/SuzunoBot-AGLAS",
"tags": [ "tags": [
{ {
@ -339,7 +339,7 @@
{ {
"name": "青岚", "name": "青岚",
"desc": "基于NoneBot的与Minecraft Server互通消息的机器人", "desc": "基于NoneBot的与Minecraft Server互通消息的机器人",
"author": "17TheWord", "author_id": 54731914,
"homepage": "https://github.com/17TheWord/qinglan_bot", "homepage": "https://github.com/17TheWord/qinglan_bot",
"tags": [ "tags": [
{ {
@ -352,7 +352,7 @@
{ {
"name": "ChensQBOTv2", "name": "ChensQBOTv2",
"desc": "多功能QQ群机器人权限管理/联ban/社工等等等等,以及拥有一个强大的开发者", "desc": "多功能QQ群机器人权限管理/联ban/社工等等等等,以及拥有一个强大的开发者",
"author": "cnchens", "author_id": 116929900,
"homepage": "https://github.com/cnchens/ChensQBOTv2", "homepage": "https://github.com/cnchens/ChensQBOTv2",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -360,7 +360,7 @@
{ {
"name": "koishi", "name": "koishi",
"desc": "支持爬取 codeforces, atcoder, 牛客上程序设计赛事的 bot。", "desc": "支持爬取 codeforces, atcoder, 牛客上程序设计赛事的 bot。",
"author": "CupidsBow", "author_id": 71639222,
"homepage": "https://github.com/CupidsBow/koishi", "homepage": "https://github.com/CupidsBow/koishi",
"tags": [ "tags": [
{ {
@ -381,7 +381,7 @@
{ {
"name": "脑积水", "name": "脑积水",
"desc": "一个超级缝合怪...", "desc": "一个超级缝合怪...",
"author": "zhulinyv", "author_id": 66541860,
"homepage": "https://github.com/zhulinyv/NJS", "homepage": "https://github.com/zhulinyv/NJS",
"tags": [ "tags": [
{ {
@ -394,7 +394,7 @@
{ {
"name": "LOVE酱", "name": "LOVE酱",
"desc": "为铁锈战争游戏群服务的虚拟少女,内置了爬取铁锈房间列表功能,以及游戏内单位查询功能,并制作了教学系统以及铁锈相关游戏群的收集功能。", "desc": "为铁锈战争游戏群服务的虚拟少女,内置了爬取铁锈房间列表功能,以及游戏内单位查询功能,并制作了教学系统以及铁锈相关游戏群的收集功能。",
"author": "allureluoli", "author_id": 106828088,
"homepage": "https://github.com/allureluoli/LOVE-", "homepage": "https://github.com/allureluoli/LOVE-",
"tags": [ "tags": [
{ {
@ -411,7 +411,7 @@
{ {
"name": "fubot", "name": "fubot",
"desc": "基于nonebot与go-cqhttp的QQ娱乐bot提供群日常娱乐功能与舞萌DX游戏相关的信息查询功能。", "desc": "基于nonebot与go-cqhttp的QQ娱乐bot提供群日常娱乐功能与舞萌DX游戏相关的信息查询功能。",
"author": "HCskia", "author_id": 54059896,
"homepage": "https://github.com/HCskia/fu-Bot", "homepage": "https://github.com/HCskia/fu-Bot",
"tags": [ "tags": [
{ {
@ -424,7 +424,7 @@
{ {
"name": "桃桃酱", "name": "桃桃酱",
"desc": "一个会拆家的高性能缝合萝卜子", "desc": "一个会拆家的高性能缝合萝卜子",
"author": "tkgs0", "author_id": 107618388,
"homepage": "https://github.com/tkgs0/Momoko", "homepage": "https://github.com/tkgs0/Momoko",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -432,7 +432,7 @@
{ {
"name": "CoolQBot", "name": "CoolQBot",
"desc": "基于 NoneBot2 的聊天机器人", "desc": "基于 NoneBot2 的聊天机器人",
"author": "he0119", "author_id": 5219550,
"homepage": "https://github.com/he0119/CoolQBot", "homepage": "https://github.com/he0119/CoolQBot",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -440,7 +440,7 @@
{ {
"name": "XDbot2", "name": "XDbot2",
"desc": "简单的QQ功能型机器人", "desc": "简单的QQ功能型机器人",
"author": "This-is-XiaoDeng", "author_id": 104149371,
"homepage": "https://github.com/ITCraftDevelopmentTeam/XDbot2", "homepage": "https://github.com/ITCraftDevelopmentTeam/XDbot2",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -448,7 +448,7 @@
{ {
"name": "March7th", "name": "March7th",
"desc": "三月七 - 崩坏:星穹铁道机器人", "desc": "三月七 - 崩坏:星穹铁道机器人",
"author": "mobyw", "author_id": 44370805,
"homepage": "https://github.com/Mar-7th/March7th", "homepage": "https://github.com/Mar-7th/March7th",
"tags": [ "tags": [
{ {
@ -465,7 +465,7 @@
{ {
"name": "ay机器人", "name": "ay机器人",
"desc": "codeforces和洛谷卷王监视、股票监控、ai聊天", "desc": "codeforces和洛谷卷王监视、股票监控、ai聊天",
"author": "863109569", "author_id": 77315378,
"homepage": "https://github.com/863109569/qqbot", "homepage": "https://github.com/863109569/qqbot",
"tags": [ "tags": [
{ {
@ -486,7 +486,7 @@
{ {
"name": "狐尾", "name": "狐尾",
"desc": "一个整合了兽云祭api的机器人支持账号令牌操作以及上传兽图", "desc": "一个整合了兽云祭api的机器人支持账号令牌操作以及上传兽图",
"author": "bingqiu456", "author_id": 99388013,
"homepage": "https://github.com/bingqiu456/shouyun", "homepage": "https://github.com/bingqiu456/shouyun",
"tags": [ "tags": [
{ {
@ -499,7 +499,7 @@
{ {
"name": "ReimeiBot-黎明机器人", "name": "ReimeiBot-黎明机器人",
"desc": "流星飞逝,黎明终将到来。", "desc": "流星飞逝,黎明终将到来。",
"author": "ThirdBlood", "author_id": 65395090,
"homepage": "https://github.com/3rdBit/ReimeiBot", "homepage": "https://github.com/3rdBit/ReimeiBot",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -507,7 +507,7 @@
{ {
"name": "web_bot", "name": "web_bot",
"desc": "把机器人搬到网络上", "desc": "把机器人搬到网络上",
"author": "wsdtl", "author_id": 63489103,
"homepage": "https://github.com/wsdtl/web_bot", "homepage": "https://github.com/wsdtl/web_bot",
"tags": [ "tags": [
{ {
@ -520,7 +520,7 @@
{ {
"name": "林汐", "name": "林汐",
"desc": "多平台功能型Bot", "desc": "多平台功能型Bot",
"author": "mute23-code", "author_id": 110453675,
"homepage": "https://github.com/netsora/SoraBot", "homepage": "https://github.com/netsora/SoraBot",
"tags": [ "tags": [
{ {
@ -537,7 +537,7 @@
{ {
"name": "米缸", "name": "米缸",
"desc": "基于nonebot2的米缸Bot", "desc": "基于nonebot2的米缸Bot",
"author": "LambdaYH", "author_id": 13503375,
"homepage": "https://github.com/LambdaYH/MigangBot", "homepage": "https://github.com/LambdaYH/MigangBot",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -545,7 +545,7 @@
{ {
"name": "不正经的妹妹", "name": "不正经的妹妹",
"desc": "一款功能丰富、简单易用、自定义性强、扩展性强的可爱的QQ娱乐机器人", "desc": "一款功能丰富、简单易用、自定义性强、扩展性强的可爱的QQ娱乐机器人",
"author": "itsevin", "author_id": 104713034,
"homepage": "https://github.com/itsevin/sister_bot", "homepage": "https://github.com/itsevin/sister_bot",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -553,7 +553,7 @@
{ {
"name": "星见Kirami", "name": "星见Kirami",
"desc": "🌟 读作 Kirami写作星见简明轻快的聊天机器人应用。", "desc": "🌟 读作 Kirami写作星见简明轻快的聊天机器人应用。",
"author": "A-kirami", "author_id": 66513481,
"homepage": "https://kiramibot.dev/", "homepage": "https://kiramibot.dev/",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -561,7 +561,7 @@
{ {
"name": "OCNbot", "name": "OCNbot",
"desc": "OI Contest Notifier bot一个可以推送洛谷、cf、atcoder、牛客比赛通知的bot", "desc": "OI Contest Notifier bot一个可以推送洛谷、cf、atcoder、牛客比赛通知的bot",
"author": "ACnoway", "author_id": 91535478,
"homepage": "https://github.com/ACnoway/OCNbot", "homepage": "https://github.com/ACnoway/OCNbot",
"tags": [ "tags": [
{ {
@ -578,7 +578,7 @@
{ {
"name": "妃爱", "name": "妃爱",
"desc": "超可爱的妃爱QQ群聊机器人", "desc": "超可爱的妃爱QQ群聊机器人",
"author": "jiangyuxiaoxiao", "author_id": 52267304,
"homepage": "https://github.com/jiangyuxiaoxiao/Hiyori", "homepage": "https://github.com/jiangyuxiaoxiao/Hiyori",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -586,7 +586,7 @@
{ {
"name": "芙芙", "name": "芙芙",
"desc": "供 Mooncell Wiki 协作使用的跨平台机器人", "desc": "供 Mooncell Wiki 协作使用的跨平台机器人",
"author": "StarHeartHunt", "author_id": 14922941,
"homepage": "https://github.com/MooncellWiki/BotFooChan", "homepage": "https://github.com/MooncellWiki/BotFooChan",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -594,7 +594,7 @@
{ {
"name": "Sakiko", "name": "Sakiko",
"desc": "基于 LiteLoaderBDS 的 Minecraft 基岩版 Bot", "desc": "基于 LiteLoaderBDS 的 Minecraft 基岩版 Bot",
"author": "zhaomaoniu", "author_id": 55650833,
"homepage": "https://github.com/zhaomaoniu/Sakiko", "homepage": "https://github.com/zhaomaoniu/Sakiko",
"tags": [ "tags": [
{ {
@ -608,18 +608,10 @@
], ],
"is_official": false "is_official": false
}, },
{
"name": "星辰 Bot",
"desc": "欢迎使用 星辰 Bot 项目!这是一款基于 NoneBot2 打造的智能 QQ 机器人旨在为用户提供丰富的功能体验。无论是获取一言的灵感探索历史上的今天还是穿梭60s世界星辰 Bot 为您打开了全新的交流之门。快来尝试吧!",
"author": "StarXinXin",
"homepage": "https://github.com/StarXinXin/StarsBot",
"tags": [],
"is_official": false
},
{ {
"name": "Minecraft_QQBot", "name": "Minecraft_QQBot",
"desc": "基于 NoneBot2 的 Minecraft 群服互联 QQ 机器人,支持多服务器多种方式连接。", "desc": "基于 NoneBot2 的 Minecraft 群服互联 QQ 机器人,支持多服务器多种方式连接。",
"author": "Lonely-Sails", "author_id": 90964775,
"homepage": "https://github.com/Minecraft-QQBot/BotServer", "homepage": "https://github.com/Minecraft-QQBot/BotServer",
"tags": [ "tags": [
{ {
@ -636,7 +628,7 @@
{ {
"name": "小安提Bot", "name": "小安提Bot",
"desc": "服务于音游 舞萌DX 的多功能Bot", "desc": "服务于音游 舞萌DX 的多功能Bot",
"author": "Ant1816", "author_id": 186144551,
"homepage": "https://github.com/Ant1816/Ant1Bot", "homepage": "https://github.com/Ant1816/Ant1Bot",
"tags": [ "tags": [
{ {
@ -653,7 +645,7 @@
{ {
"name": "CanrotBot", "name": "CanrotBot",
"desc": "有很多实用功能的bot也有很多没什么用的娱乐功能接入了大模型并且有一部分功能可以被大模型调用。主打一个全都有", "desc": "有很多实用功能的bot也有很多没什么用的娱乐功能接入了大模型并且有一部分功能可以被大模型调用。主打一个全都有",
"author": "wangyw15", "author_id": 18070676,
"homepage": "https://github.com/wangyw15/CanrotBot", "homepage": "https://github.com/wangyw15/CanrotBot",
"tags": [], "tags": [],
"is_official": false "is_official": false
@ -661,7 +653,7 @@
{ {
"name": "Mio澪", "name": "Mio澪",
"desc": "超可爱多功能Qbot", "desc": "超可爱多功能Qbot",
"author": "EienSakura", "author_id": 50508678,
"homepage": "https://github.com/EienSakura/mio", "homepage": "https://github.com/EienSakura/mio",
"tags": [ "tags": [
{ {
@ -670,5 +662,5 @@
} }
], ],
"is_official": false "is_official": false
} },
] ]

View File

@ -4,7 +4,7 @@
"project_link": "", "project_link": "",
"name": "None", "name": "None",
"desc": "None 驱动器", "desc": "None 驱动器",
"author": "yanyongyu", "author_id": 42488585,
"homepage": "/docs/advanced/driver", "homepage": "/docs/advanced/driver",
"tags": [], "tags": [],
"is_official": true "is_official": true
@ -14,7 +14,7 @@
"project_link": "nonebot2[fastapi]", "project_link": "nonebot2[fastapi]",
"name": "FastAPI", "name": "FastAPI",
"desc": "FastAPI 驱动器", "desc": "FastAPI 驱动器",
"author": "yanyongyu", "author_id": 42488585,
"homepage": "/docs/advanced/driver", "homepage": "/docs/advanced/driver",
"tags": [], "tags": [],
"is_official": true "is_official": true
@ -24,7 +24,7 @@
"project_link": "nonebot2[quart]", "project_link": "nonebot2[quart]",
"name": "Quart", "name": "Quart",
"desc": "Quart 驱动器", "desc": "Quart 驱动器",
"author": "yanyongyu", "author_id": 42488585,
"homepage": "/docs/advanced/driver", "homepage": "/docs/advanced/driver",
"tags": [], "tags": [],
"is_official": true "is_official": true
@ -34,7 +34,7 @@
"project_link": "nonebot2[httpx]", "project_link": "nonebot2[httpx]",
"name": "HTTPX", "name": "HTTPX",
"desc": "HTTPX 驱动器", "desc": "HTTPX 驱动器",
"author": "yanyongyu", "author_id": 42488585,
"homepage": "/docs/advanced/driver", "homepage": "/docs/advanced/driver",
"tags": [], "tags": [],
"is_official": true "is_official": true
@ -44,7 +44,7 @@
"project_link": "nonebot2[websockets]", "project_link": "nonebot2[websockets]",
"name": "websockets", "name": "websockets",
"desc": "websockets 驱动器", "desc": "websockets 驱动器",
"author": "yanyongyu", "author_id": 42488585,
"homepage": "/docs/advanced/driver", "homepage": "/docs/advanced/driver",
"tags": [], "tags": [],
"is_official": true "is_official": true
@ -54,9 +54,9 @@
"project_link": "nonebot2[aiohttp]", "project_link": "nonebot2[aiohttp]",
"name": "AIOHTTP", "name": "AIOHTTP",
"desc": "AIOHTTP 驱动器", "desc": "AIOHTTP 驱动器",
"author": "yanyongyu", "author_id": 42488585,
"homepage": "/docs/advanced/driver", "homepage": "/docs/advanced/driver",
"tags": [], "tags": [],
"is_official": true "is_official": true
} },
] ]

File diff suppressed because it is too large Load Diff