├── .github ├── ISSUE_TEMPLATE │ └── plugin_publish.yml └── workflows │ └── publish_plugin.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── indices ├── Plugin-list.md └── old-Plugin.md ├── plugins.json ├── update_table.py └── zhenxun_plugins.json /.github/ISSUE_TEMPLATE/plugin_publish.yml: -------------------------------------------------------------------------------- 1 | name: 发布插件 2 | title: "Plugin: {name}" 3 | description: 发布插件到 zhenxun-bot 插件索引仓库 4 | labels: ["Plugin"] 5 | body: 6 | - type: input 7 | id: name 8 | attributes: 9 | label: 插件名称 10 | description: 插件名称 11 | placeholder: e.g. github订阅 12 | validations: 13 | required: true 14 | 15 | - type: input 16 | id: module 17 | attributes: 18 | label: 模块名称 19 | description: 插件模块名称, 由英文小写字母和下划线组成 20 | placeholder: e.g. github_sub 21 | validations: 22 | required: true 23 | 24 | - type: input 25 | id: module_path 26 | attributes: 27 | label: 模块路径 28 | description: 模块路径,相对于github仓库根目录,以`.`分割目录 29 | placeholder: e.g. github_sub 30 | validations: 31 | required: true 32 | 33 | - type: input 34 | id: github_url 35 | attributes: 36 | label: 仓库地址 37 | description: 仓库地址 38 | placeholder: e.g. https://github.com/xuanerwa/zhenxun_github_sub 39 | validations: 40 | required: true 41 | 42 | - type: dropdown 43 | id: is_dir 44 | attributes: 45 | label: 是否为目录 46 | description: 插件路径是否为目录 47 | options: 48 | - 是 49 | - 否 50 | default: 0 51 | 52 | - type: textarea 53 | id: config 54 | attributes: 55 | label: 插件配置项 56 | description: 插件配置项 57 | render: dotenv 58 | placeholder: | 59 | # e.g. 60 | # KEY=VALUE 61 | # KEY2=VALUE2 62 | -------------------------------------------------------------------------------- /.github/workflows/publish_plugin.yml: -------------------------------------------------------------------------------- 1 | name: plugin publish 2 | 3 | on: 4 | issues: 5 | types: [opened, reopened, edited] 6 | pull_request_target: 7 | types: [closed] 8 | issue_comment: 9 | types: [created] 10 | pull_request_review: 11 | types: [submitted] 12 | 13 | concurrency: 14 | group: ${{ github.workflow }}-${{ github.event.issue.number || github.run_id }} 15 | cancel-in-progress: false 16 | 17 | jobs: 18 | check: 19 | runs-on: ubuntu-latest 20 | name: check 21 | # do not run on forked PRs, do not run on not related issues, do not run on pr comments 22 | if: | 23 | !( 24 | ( 25 | github.event.pull_request && 26 | ( 27 | github.event.pull_request.head.repo.fork || 28 | !( 29 | contains(github.event.pull_request.labels.*.name, 'Plugin') 30 | ) 31 | ) 32 | ) || 33 | ( 34 | github.event_name == 'issue_comment' && github.event.issue.pull_request 35 | ) 36 | ) 37 | steps: 38 | - run: echo "Check passed" 39 | reaction: 40 | runs-on: ubuntu-latest 41 | name: reaction 42 | needs: check 43 | if: | 44 | ( 45 | github.event_name == 'issue_comment' && 46 | github.event.action == 'created' 47 | ) || 48 | ( 49 | github.event_name == 'issues' && 50 | github.event.action == 'opened' 51 | ) 52 | steps: 53 | - name: Generate token 54 | id: generate-token 55 | uses: tibdex/github-app-token@v2 56 | with: 57 | app_id: ${{ secrets.APP_ID }} 58 | private_key: ${{ secrets.APP_KEY }} 59 | 60 | - name: Reaction on issue 61 | if: github.event_name == 'issues' 62 | run: | 63 | gh api --method POST /repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/reactions -f "content=rocket" 64 | env: 65 | GH_TOKEN: ${{ steps.generate-token.outputs.token }} 66 | 67 | - name: Reaction on issue comment 68 | if: github.event_name == 'issue_comment' 69 | run: | 70 | gh api --method POST /repos/${{ github.repository }}/issues/comments/${{ github.event.comment.id }}/reactions -f "content=rocket" 71 | env: 72 | GH_TOKEN: ${{ steps.generate-token.outputs.token }} 73 | plugin_test: 74 | runs-on: ubuntu-latest 75 | name: zhenxun plugin test 76 | needs: check 77 | permissions: 78 | issues: read 79 | outputs: 80 | result: ${{ steps.plugin-test.outputs.RESULT }} 81 | output: ${{ steps.plugin-test.outputs.OUTPUT }} 82 | metadata: ${{ steps.plugin-test.outputs.METADATA }} 83 | steps: 84 | - uses: actions/checkout@v4 85 | 86 | - name: Setup Python 87 | id: setup_python 88 | uses: actions/setup-python@v5 89 | with: 90 | python-version: "3.10" 91 | 92 | - name: Install Poetry 93 | if: ${{ !startsWith(github.event_name, 'pull_request') }} 94 | run: pip install poetry 95 | 96 | # Poetry cache depends on OS, Python version and Poetry version. 97 | - name: Cache Poetry cache 98 | uses: actions/cache@v3 99 | if: ${{ !startsWith(github.event_name, 'pull_request') }} 100 | with: 101 | path: ~/.cache/pypoetry 102 | key: poetry-cache-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }} 103 | 104 | - name: Setup zhenxun 105 | id: setup-zhenxun 106 | if: ${{ !startsWith(github.event_name, 'pull_request') }} 107 | run: | 108 | git clone -b main https://github.com/Hibikier/zhenxun_bot.git 109 | 110 | - name: Test Plugin 111 | id: plugin-test 112 | if: ${{ !startsWith(github.event_name, 'pull_request') }} 113 | run: | 114 | cd zhenxun_bot 115 | rm -rf ./zhenxun/plugins/* poetry.lock 116 | poetry source remove aliyun 117 | poetry install --no-root 118 | poetry run pip install pydantic==1.10 119 | curl -sSL https://github.com/zhenxun-org/zhenxunflow/releases/latest/download/plugin_test.py | poetry run python - 120 | 121 | - name: Test Plugin PR 122 | id: plugin-test-pr 123 | if: ${{ startsWith(github.event_name, 'pull_request') }} 124 | run: | 125 | curl -sSL https://github.com/zhenxun-org/zhenxunflow/releases/latest/download/plugin_test.py | python - 126 | 127 | zhenxunflow: 128 | runs-on: ubuntu-latest 129 | name: zhenxunflow 130 | needs: plugin_test 131 | steps: 132 | - name: Generate token 133 | id: generate-token 134 | uses: tibdex/github-app-token@v2 135 | with: 136 | app_id: ${{ secrets.APP_ID }} 137 | private_key: ${{ secrets.APP_KEY }} 138 | 139 | - name: Checkout Code 140 | uses: actions/checkout@v4 141 | with: 142 | token: ${{ steps.generate-token.outputs.token }} 143 | 144 | - name: Cache pre-commit hooks 145 | uses: actions/cache@v4 146 | with: 147 | path: .cache/.pre-commit 148 | key: zhenxunflow-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }} 149 | 150 | - name: zhenxunflow 151 | uses: docker://ghcr.io/zhenxun-org/zhenxunflow:latest 152 | with: 153 | config: > 154 | { 155 | "base": "index", 156 | "plugin_path": "plugins.json" 157 | } 158 | env: 159 | PLUGIN_TEST_RESULT: ${{ needs.plugin_test.outputs.result }} 160 | PLUGIN_TEST_OUTPUT: ${{ needs.plugin_test.outputs.output }} 161 | PLUGIN_TEST_METADATA: ${{ needs.plugin_test.outputs.metadata }} 162 | APP_ID: ${{ secrets.APP_ID }} 163 | PRIVATE_KEY: ${{ secrets.APP_KEY }} 164 | PRE_COMMIT_HOME: /github/workspace/.cache/.pre-commit 165 | 166 | - name: Fix permission 167 | run: sudo chown -R $(whoami):$(id -ng) .cache/.pre-commit 168 | update_table: 169 | runs-on: ubuntu-latest 170 | needs: zhenxunflow 171 | name: 更新插件索引表格 172 | permissions: 173 | contents: write 174 | pull-requests: write 175 | steps: 176 | - name: Checkout repository 177 | uses: actions/checkout@v4 178 | with: 179 | token: ${{ secrets.GITHUB_TOKEN }} 180 | fetch-depth: 0 181 | ref: index 182 | 183 | - name: Setup Python 184 | uses: actions/setup-python@v5 185 | with: 186 | python-version: "3.10" 187 | 188 | - name: 生成插件索引表格 189 | run: | 190 | python update_table.py 191 | 192 | - name: 创建更新分支 193 | run: | 194 | git config --global user.email "action@github.com" 195 | git config --global user.name "GitHub Action" 196 | git checkout -b update-plugin-table-${{ github.run_id }} 197 | git add indices/Plugin-list.md 198 | git commit -m "自动更新插件索引表格 [skip ci]" 199 | git push origin HEAD 200 | 201 | - name: 创建或更新PR 202 | uses: peter-evans/create-pull-request@v5 203 | with: 204 | token: ${{ secrets.GITHUB_TOKEN }} 205 | commit-message: "自动更新插件索引表格 [skip ci]" 206 | title: "自动更新插件索引表格" 207 | body: "由GitHub Actions自动生成的插件索引更新" 208 | base: index 209 | branch: update-plugin-table-${{ github.run_id }} 210 | delete-branch: true 211 | labels: automated -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | 3 | # Byte-compiled / optimized / DLL files 4 | __pycache__/ 5 | *.py[cod] 6 | *$py.class 7 | 8 | # C extensions 9 | *.so 10 | 11 | # Distribution / packaging 12 | .Python 13 | build/ 14 | develop-eggs/ 15 | dist/ 16 | downloads/ 17 | eggs/ 18 | .eggs/ 19 | lib/ 20 | lib64/ 21 | parts/ 22 | sdist/ 23 | var/ 24 | wheels/ 25 | pip-wheel-metadata/ 26 | share/python-wheels/ 27 | *.egg-info/ 28 | .installed.cfg 29 | *.egg 30 | MANIFEST 31 | 32 | # PyInstaller 33 | # Usually these files are written by a python script from a template 34 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 35 | *.manifest 36 | *.spec 37 | 38 | # Installer logs 39 | pip-log.txt 40 | pip-delete-this-directory.txt 41 | 42 | # Unit test / coverage reports 43 | htmlcov/ 44 | .tox/ 45 | .nox/ 46 | .coverage 47 | .coverage.* 48 | .cache 49 | nosetests.xml 50 | coverage.xml 51 | *.cover 52 | *.py,cover 53 | .hypothesis/ 54 | .pytest_cache/ 55 | 56 | # Translations 57 | *.mo 58 | *.pot 59 | 60 | # Django stuff: 61 | *.log 62 | local_settings.py 63 | db.sqlite3 64 | db.sqlite3-journal 65 | 66 | # Flask stuff: 67 | instance/ 68 | .webassets-cache 69 | 70 | # Scrapy stuff: 71 | .scrapy 72 | 73 | # Sphinx documentation 74 | docs/_build/ 75 | 76 | # PyBuilder 77 | target/ 78 | 79 | # Jupyter Notebook 80 | .ipynb_checkpoints 81 | 82 | # IPython 83 | profile_default/ 84 | ipython_config.py 85 | 86 | # pyenv 87 | .python-version 88 | 89 | # pipenv 90 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 91 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 92 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 93 | # install all needed dependencies. 94 | #Pipfile.lock 95 | 96 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow 97 | __pypackages__/ 98 | 99 | # Celery stuff 100 | celerybeat-schedule 101 | celerybeat.pid 102 | 103 | # SageMath parsed files 104 | *.sage.py 105 | 106 | # Environments 107 | .env 108 | .venv 109 | env/ 110 | venv/ 111 | ENV/ 112 | env.bak/ 113 | venv.bak/ 114 | 115 | # Spyder project settings 116 | .spyderproject 117 | .spyproject 118 | 119 | # Rope project settings 120 | .ropeproject 121 | 122 | # mkdocs documentation 123 | /site 124 | 125 | # mypy 126 | .mypy_cache/ 127 | .dmypy.json 128 | dmypy.json 129 | 130 | # Pyre type checker 131 | .pyre/ 132 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | ci: 2 | autofix_commit_msg: "style: auto fix by pre-commit hooks" 3 | autofix_prs: true 4 | autoupdate_branch: main 5 | autoupdate_schedule: quarterly 6 | autoupdate_commit_msg: "chore: auto update by pre-commit hooks" 7 | repos: 8 | - repo: https://github.com/astral-sh/ruff-pre-commit 9 | rev: v0.5.2 10 | hooks: 11 | - id: ruff 12 | args: [--fix, --exit-non-zero-on-fix] 13 | stages: [pre-commit] 14 | - id: ruff-format 15 | stages: [pre-commit] 16 | 17 | - repo: https://github.com/pre-commit/mirrors-prettier 18 | rev: v4.0.0-alpha.8 19 | hooks: 20 | - id: prettier 21 | types: [yaml] 22 | types_or: [javascript, jsx, ts, tsx, markdown, json] 23 | stages: [pre-commit] -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # 插件库贡献指南 2 | 3 | 首先,欢迎您为真寻机器人编写/适配插件 4 | 5 | 接下来,请阅读这篇文章,了解如何将插件上传至插件库 6 | 7 | ## 格式 8 | 9 | ### 提交 10 | 11 | 插件库对提交信息并无硬性规定,不过我们建议使用如下格式 12 | 13 | ``` 14 | feat: add `插件名` plugin 15 | ``` 16 | 17 | ### Issue/Pull Request 标题 18 | 19 | ``` 20 | Feat: add `插件名` plugin 21 | ``` 22 | 23 | ## 发起 Issue 24 | 25 | 您可以根据 [Issue 模板](./.github/ISSUE_TEMPLATE/plugin.md),将插件信息填入,并附带 `Plugin` 标签,我们会在空闲时对插件进行审核 26 | 27 | 在审核通过后,我们会将插件添加至索引 28 | 29 | 如果您愿意,可以参考下方的 `表格样式` 修改`indices`目录下的 `Function-Plugin.md`,并根据 `发起 Pull Request` 发布修改 30 | 31 | ## 表格样式 32 | 33 | ```markdown 34 | | [插件名](仓库地址) | [@作者名](作者 GitHub 地址) | 插件备注 | 35 | ``` 36 | 37 | 例如下面的成分姬插件 38 | 39 | ```markdown 40 | | [github订阅](https://github.com/xuanerwa/zhenxun_github_sub) | [@xuanerwa](https://github.com/xuanerwa) | 用来推送github用户动态或仓库动态 | 41 | ``` 42 | 43 | ## 发起 Pull Request 44 | 45 | 提交 Pull Request 目前有两种模板 46 | 47 | ### 指向 Issue 48 | 49 | 您可以将 Pull Request 指向为先前开启的 Issue,同样,我们也不对标题有硬性规定,不过我们建议使用如下格式 50 | 51 | ``` 52 | Feat: add `插件名` plugin for #Issue编号 53 | ``` 54 | 55 | ### 直接上传插件 56 | 57 | 你可以根据 [Issue 模板](./.github/ISSUE_TEMPLATE/plugin.md),将插件信息填入,并附带 `Plugin` 标签,我们会在空闲时对插件进行审核 58 | 59 | 在审核通过后,我们会将分支合并 60 | 61 | ## 真寻插件商店 62 | 63 | 修改项目下的 `plugins.json` 文件添加你的插件,例如 64 | 65 | ```json 66 | "github订阅": { 67 | "module": "github_sub", 68 | "module_path": "github_sub", 69 | "description": "订阅github用户或仓库", 70 | "usage:\n github新Comment,PR,Issue等提醒\n指令:\n 添加github ['用户'/'仓库'] [用户名/{owner/repo}]\n 删除github [用户名/{owner/repo}]\n 查看github\n 示例:添加github订阅 用户 HibiKier\n 示例:添加gb订阅 仓库 HibiKier/zhenxun_bot\n 示例:添加github 用户 HibiKier\n 示例:删除gb订阅 HibiKier", 71 | "author": "xuanerwa", 72 | "version": "0.6", 73 | "plugin_type": "NORMAL", 74 | "is_dir": true, 75 | "github_url": "https://github.com/xuanerwa/zhenxun_github_sub" 76 | } 77 | ``` 78 | 79 | 插件如果需要安装依赖可以写在`requirements.txt`里,真寻安装插件时将自动安装里面的依赖 80 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU AFFERO GENERAL PUBLIC LICENSE 2 | Version 3, 19 November 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU Affero General Public License is a free, copyleft license for 11 | software and other kinds of works, specifically designed to ensure 12 | cooperation with the community in the case of network server software. 13 | 14 | The licenses for most software and other practical works are designed 15 | to take away your freedom to share and change the works. By contrast, 16 | our General Public Licenses are intended to guarantee your freedom to 17 | share and change all versions of a program--to make sure it remains free 18 | software for all its users. 19 | 20 | When we speak of free software, we are referring to freedom, not 21 | price. Our General Public Licenses are designed to make sure that you 22 | have the freedom to distribute copies of free software (and charge for 23 | them if you wish), that you receive source code or can get it if you 24 | want it, that you can change the software or use pieces of it in new 25 | free programs, and that you know you can do these things. 26 | 27 | Developers that use our General Public Licenses protect your rights 28 | with two steps: (1) assert copyright on the software, and (2) offer 29 | you this License which gives you legal permission to copy, distribute 30 | and/or modify the software. 31 | 32 | A secondary benefit of defending all users' freedom is that 33 | improvements made in alternate versions of the program, if they 34 | receive widespread use, become available for other developers to 35 | incorporate. Many developers of free software are heartened and 36 | encouraged by the resulting cooperation. However, in the case of 37 | software used on network servers, this result may fail to come about. 38 | The GNU General Public License permits making a modified version and 39 | letting the public access it on a server without ever releasing its 40 | source code to the public. 41 | 42 | The GNU Affero General Public License is designed specifically to 43 | ensure that, in such cases, the modified source code becomes available 44 | to the community. It requires the operator of a network server to 45 | provide the source code of the modified version running there to the 46 | users of that server. Therefore, public use of a modified version, on 47 | a publicly accessible server, gives the public access to the source 48 | code of the modified version. 49 | 50 | An older license, called the Affero General Public License and 51 | published by Affero, was designed to accomplish similar goals. This is 52 | a different license, not a version of the Affero GPL, but Affero has 53 | released a new version of the Affero GPL which permits relicensing under 54 | this license. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | TERMS AND CONDITIONS 60 | 61 | 0. Definitions. 62 | 63 | "This License" refers to version 3 of the GNU Affero General Public License. 64 | 65 | "Copyright" also means copyright-like laws that apply to other kinds of 66 | works, such as semiconductor masks. 67 | 68 | "The Program" refers to any copyrightable work licensed under this 69 | License. Each licensee is addressed as "you". "Licensees" and 70 | "recipients" may be individuals or organizations. 71 | 72 | To "modify" a work means to copy from or adapt all or part of the work 73 | in a fashion requiring copyright permission, other than the making of an 74 | exact copy. The resulting work is called a "modified version" of the 75 | earlier work or a work "based on" the earlier work. 76 | 77 | A "covered work" means either the unmodified Program or a work based 78 | on the Program. 79 | 80 | To "propagate" a work means to do anything with it that, without 81 | permission, would make you directly or secondarily liable for 82 | infringement under applicable copyright law, except executing it on a 83 | computer or modifying a private copy. Propagation includes copying, 84 | distribution (with or without modification), making available to the 85 | public, and in some countries other activities as well. 86 | 87 | To "convey" a work means any kind of propagation that enables other 88 | parties to make or receive copies. Mere interaction with a user through 89 | a computer network, with no transfer of a copy, is not conveying. 90 | 91 | An interactive user interface displays "Appropriate Legal Notices" 92 | to the extent that it includes a convenient and prominently visible 93 | feature that (1) displays an appropriate copyright notice, and (2) 94 | tells the user that there is no warranty for the work (except to the 95 | extent that warranties are provided), that licensees may convey the 96 | work under this License, and how to view a copy of this License. If 97 | the interface presents a list of user commands or options, such as a 98 | menu, a prominent item in the list meets this criterion. 99 | 100 | 1. Source Code. 101 | 102 | The "source code" for a work means the preferred form of the work 103 | for making modifications to it. "Object code" means any non-source 104 | form of a work. 105 | 106 | A "Standard Interface" means an interface that either is an official 107 | standard defined by a recognized standards body, or, in the case of 108 | interfaces specified for a particular programming language, one that 109 | is widely used among developers working in that language. 110 | 111 | The "System Libraries" of an executable work include anything, other 112 | than the work as a whole, that (a) is included in the normal form of 113 | packaging a Major Component, but which is not part of that Major 114 | Component, and (b) serves only to enable use of the work with that 115 | Major Component, or to implement a Standard Interface for which an 116 | implementation is available to the public in source code form. A 117 | "Major Component", in this context, means a major essential component 118 | (kernel, window system, and so on) of the specific operating system 119 | (if any) on which the executable work runs, or a compiler used to 120 | produce the work, or an object code interpreter used to run it. 121 | 122 | The "Corresponding Source" for a work in object code form means all 123 | the source code needed to generate, install, and (for an executable 124 | work) run the object code and to modify the work, including scripts to 125 | control those activities. However, it does not include the work's 126 | System Libraries, or general-purpose tools or generally available free 127 | programs which are used unmodified in performing those activities but 128 | which are not part of the work. For example, Corresponding Source 129 | includes interface definition files associated with source files for 130 | the work, and the source code for shared libraries and dynamically 131 | linked subprograms that the work is specifically designed to require, 132 | such as by intimate data communication or control flow between those 133 | subprograms and other parts of the work. 134 | 135 | The Corresponding Source need not include anything that users 136 | can regenerate automatically from other parts of the Corresponding 137 | Source. 138 | 139 | The Corresponding Source for a work in source code form is that 140 | same work. 141 | 142 | 2. Basic Permissions. 143 | 144 | All rights granted under this License are granted for the term of 145 | copyright on the Program, and are irrevocable provided the stated 146 | conditions are met. This License explicitly affirms your unlimited 147 | permission to run the unmodified Program. The output from running a 148 | covered work is covered by this License only if the output, given its 149 | content, constitutes a covered work. This License acknowledges your 150 | rights of fair use or other equivalent, as provided by copyright law. 151 | 152 | You may make, run and propagate covered works that you do not 153 | convey, without conditions so long as your license otherwise remains 154 | in force. You may convey covered works to others for the sole purpose 155 | of having them make modifications exclusively for you, or provide you 156 | with facilities for running those works, provided that you comply with 157 | the terms of this License in conveying all material for which you do 158 | not control copyright. Those thus making or running the covered works 159 | for you must do so exclusively on your behalf, under your direction 160 | and control, on terms that prohibit them from making any copies of 161 | your copyrighted material outside their relationship with you. 162 | 163 | Conveying under any other circumstances is permitted solely under 164 | the conditions stated below. Sublicensing is not allowed; section 10 165 | makes it unnecessary. 166 | 167 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 168 | 169 | No covered work shall be deemed part of an effective technological 170 | measure under any applicable law fulfilling obligations under article 171 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 172 | similar laws prohibiting or restricting circumvention of such 173 | measures. 174 | 175 | When you convey a covered work, you waive any legal power to forbid 176 | circumvention of technological measures to the extent such circumvention 177 | is effected by exercising rights under this License with respect to 178 | the covered work, and you disclaim any intention to limit operation or 179 | modification of the work as a means of enforcing, against the work's 180 | users, your or third parties' legal rights to forbid circumvention of 181 | technological measures. 182 | 183 | 4. Conveying Verbatim Copies. 184 | 185 | You may convey verbatim copies of the Program's source code as you 186 | receive it, in any medium, provided that you conspicuously and 187 | appropriately publish on each copy an appropriate copyright notice; 188 | keep intact all notices stating that this License and any 189 | non-permissive terms added in accord with section 7 apply to the code; 190 | keep intact all notices of the absence of any warranty; and give all 191 | recipients a copy of this License along with the Program. 192 | 193 | You may charge any price or no price for each copy that you convey, 194 | and you may offer support or warranty protection for a fee. 195 | 196 | 5. Conveying Modified Source Versions. 197 | 198 | You may convey a work based on the Program, or the modifications to 199 | produce it from the Program, in the form of source code under the 200 | terms of section 4, provided that you also meet all of these conditions: 201 | 202 | a) The work must carry prominent notices stating that you modified 203 | it, and giving a relevant date. 204 | 205 | b) The work must carry prominent notices stating that it is 206 | released under this License and any conditions added under section 207 | 7. This requirement modifies the requirement in section 4 to 208 | "keep intact all notices". 209 | 210 | c) You must license the entire work, as a whole, under this 211 | License to anyone who comes into possession of a copy. This 212 | License will therefore apply, along with any applicable section 7 213 | additional terms, to the whole of the work, and all its parts, 214 | regardless of how they are packaged. This License gives no 215 | permission to license the work in any other way, but it does not 216 | invalidate such permission if you have separately received it. 217 | 218 | d) If the work has interactive user interfaces, each must display 219 | Appropriate Legal Notices; however, if the Program has interactive 220 | interfaces that do not display Appropriate Legal Notices, your 221 | work need not make them do so. 222 | 223 | A compilation of a covered work with other separate and independent 224 | works, which are not by their nature extensions of the covered work, 225 | and which are not combined with it such as to form a larger program, 226 | in or on a volume of a storage or distribution medium, is called an 227 | "aggregate" if the compilation and its resulting copyright are not 228 | used to limit the access or legal rights of the compilation's users 229 | beyond what the individual works permit. Inclusion of a covered work 230 | in an aggregate does not cause this License to apply to the other 231 | parts of the aggregate. 232 | 233 | 6. Conveying Non-Source Forms. 234 | 235 | You may convey a covered work in object code form under the terms 236 | of sections 4 and 5, provided that you also convey the 237 | machine-readable Corresponding Source under the terms of this License, 238 | in one of these ways: 239 | 240 | a) Convey the object code in, or embodied in, a physical product 241 | (including a physical distribution medium), accompanied by the 242 | Corresponding Source fixed on a durable physical medium 243 | customarily used for software interchange. 244 | 245 | b) Convey the object code in, or embodied in, a physical product 246 | (including a physical distribution medium), accompanied by a 247 | written offer, valid for at least three years and valid for as 248 | long as you offer spare parts or customer support for that product 249 | model, to give anyone who possesses the object code either (1) a 250 | copy of the Corresponding Source for all the software in the 251 | product that is covered by this License, on a durable physical 252 | medium customarily used for software interchange, for a price no 253 | more than your reasonable cost of physically performing this 254 | conveying of source, or (2) access to copy the 255 | Corresponding Source from a network server at no charge. 256 | 257 | c) Convey individual copies of the object code with a copy of the 258 | written offer to provide the Corresponding Source. This 259 | alternative is allowed only occasionally and noncommercially, and 260 | only if you received the object code with such an offer, in accord 261 | with subsection 6b. 262 | 263 | d) Convey the object code by offering access from a designated 264 | place (gratis or for a charge), and offer equivalent access to the 265 | Corresponding Source in the same way through the same place at no 266 | further charge. You need not require recipients to copy the 267 | Corresponding Source along with the object code. If the place to 268 | copy the object code is a network server, the Corresponding Source 269 | may be on a different server (operated by you or a third party) 270 | that supports equivalent copying facilities, provided you maintain 271 | clear directions next to the object code saying where to find the 272 | Corresponding Source. Regardless of what server hosts the 273 | Corresponding Source, you remain obligated to ensure that it is 274 | available for as long as needed to satisfy these requirements. 275 | 276 | e) Convey the object code using peer-to-peer transmission, provided 277 | you inform other peers where the object code and Corresponding 278 | Source of the work are being offered to the general public at no 279 | charge under subsection 6d. 280 | 281 | A separable portion of the object code, whose source code is excluded 282 | from the Corresponding Source as a System Library, need not be 283 | included in conveying the object code work. 284 | 285 | A "User Product" is either (1) a "consumer product", which means any 286 | tangible personal property which is normally used for personal, family, 287 | or household purposes, or (2) anything designed or sold for incorporation 288 | into a dwelling. In determining whether a product is a consumer product, 289 | doubtful cases shall be resolved in favor of coverage. For a particular 290 | product received by a particular user, "normally used" refers to a 291 | typical or common use of that class of product, regardless of the status 292 | of the particular user or of the way in which the particular user 293 | actually uses, or expects or is expected to use, the product. A product 294 | is a consumer product regardless of whether the product has substantial 295 | commercial, industrial or non-consumer uses, unless such uses represent 296 | the only significant mode of use of the product. 297 | 298 | "Installation Information" for a User Product means any methods, 299 | procedures, authorization keys, or other information required to install 300 | and execute modified versions of a covered work in that User Product from 301 | a modified version of its Corresponding Source. The information must 302 | suffice to ensure that the continued functioning of the modified object 303 | code is in no case prevented or interfered with solely because 304 | modification has been made. 305 | 306 | If you convey an object code work under this section in, or with, or 307 | specifically for use in, a User Product, and the conveying occurs as 308 | part of a transaction in which the right of possession and use of the 309 | User Product is transferred to the recipient in perpetuity or for a 310 | fixed term (regardless of how the transaction is characterized), the 311 | Corresponding Source conveyed under this section must be accompanied 312 | by the Installation Information. But this requirement does not apply 313 | if neither you nor any third party retains the ability to install 314 | modified object code on the User Product (for example, the work has 315 | been installed in ROM). 316 | 317 | The requirement to provide Installation Information does not include a 318 | requirement to continue to provide support service, warranty, or updates 319 | for a work that has been modified or installed by the recipient, or for 320 | the User Product in which it has been modified or installed. Access to a 321 | network may be denied when the modification itself materially and 322 | adversely affects the operation of the network or violates the rules and 323 | protocols for communication across the network. 324 | 325 | Corresponding Source conveyed, and Installation Information provided, 326 | in accord with this section must be in a format that is publicly 327 | documented (and with an implementation available to the public in 328 | source code form), and must require no special password or key for 329 | unpacking, reading or copying. 330 | 331 | 7. Additional Terms. 332 | 333 | "Additional permissions" are terms that supplement the terms of this 334 | License by making exceptions from one or more of its conditions. 335 | Additional permissions that are applicable to the entire Program shall 336 | be treated as though they were included in this License, to the extent 337 | that they are valid under applicable law. If additional permissions 338 | apply only to part of the Program, that part may be used separately 339 | under those permissions, but the entire Program remains governed by 340 | this License without regard to the additional permissions. 341 | 342 | When you convey a copy of a covered work, you may at your option 343 | remove any additional permissions from that copy, or from any part of 344 | it. (Additional permissions may be written to require their own 345 | removal in certain cases when you modify the work.) You may place 346 | additional permissions on material, added by you to a covered work, 347 | for which you have or can give appropriate copyright permission. 348 | 349 | Notwithstanding any other provision of this License, for material you 350 | add to a covered work, you may (if authorized by the copyright holders of 351 | that material) supplement the terms of this License with terms: 352 | 353 | a) Disclaiming warranty or limiting liability differently from the 354 | terms of sections 15 and 16 of this License; or 355 | 356 | b) Requiring preservation of specified reasonable legal notices or 357 | author attributions in that material or in the Appropriate Legal 358 | Notices displayed by works containing it; or 359 | 360 | c) Prohibiting misrepresentation of the origin of that material, or 361 | requiring that modified versions of such material be marked in 362 | reasonable ways as different from the original version; or 363 | 364 | d) Limiting the use for publicity purposes of names of licensors or 365 | authors of the material; or 366 | 367 | e) Declining to grant rights under trademark law for use of some 368 | trade names, trademarks, or service marks; or 369 | 370 | f) Requiring indemnification of licensors and authors of that 371 | material by anyone who conveys the material (or modified versions of 372 | it) with contractual assumptions of liability to the recipient, for 373 | any liability that these contractual assumptions directly impose on 374 | those licensors and authors. 375 | 376 | All other non-permissive additional terms are considered "further 377 | restrictions" within the meaning of section 10. If the Program as you 378 | received it, or any part of it, contains a notice stating that it is 379 | governed by this License along with a term that is a further 380 | restriction, you may remove that term. If a license document contains 381 | a further restriction but permits relicensing or conveying under this 382 | License, you may add to a covered work material governed by the terms 383 | of that license document, provided that the further restriction does 384 | not survive such relicensing or conveying. 385 | 386 | If you add terms to a covered work in accord with this section, you 387 | must place, in the relevant source files, a statement of the 388 | additional terms that apply to those files, or a notice indicating 389 | where to find the applicable terms. 390 | 391 | Additional terms, permissive or non-permissive, may be stated in the 392 | form of a separately written license, or stated as exceptions; 393 | the above requirements apply either way. 394 | 395 | 8. Termination. 396 | 397 | You may not propagate or modify a covered work except as expressly 398 | provided under this License. Any attempt otherwise to propagate or 399 | modify it is void, and will automatically terminate your rights under 400 | this License (including any patent licenses granted under the third 401 | paragraph of section 11). 402 | 403 | However, if you cease all violation of this License, then your 404 | license from a particular copyright holder is reinstated (a) 405 | provisionally, unless and until the copyright holder explicitly and 406 | finally terminates your license, and (b) permanently, if the copyright 407 | holder fails to notify you of the violation by some reasonable means 408 | prior to 60 days after the cessation. 409 | 410 | Moreover, your license from a particular copyright holder is 411 | reinstated permanently if the copyright holder notifies you of the 412 | violation by some reasonable means, this is the first time you have 413 | received notice of violation of this License (for any work) from that 414 | copyright holder, and you cure the violation prior to 30 days after 415 | your receipt of the notice. 416 | 417 | Termination of your rights under this section does not terminate the 418 | licenses of parties who have received copies or rights from you under 419 | this License. If your rights have been terminated and not permanently 420 | reinstated, you do not qualify to receive new licenses for the same 421 | material under section 10. 422 | 423 | 9. Acceptance Not Required for Having Copies. 424 | 425 | You are not required to accept this License in order to receive or 426 | run a copy of the Program. Ancillary propagation of a covered work 427 | occurring solely as a consequence of using peer-to-peer transmission 428 | to receive a copy likewise does not require acceptance. However, 429 | nothing other than this License grants you permission to propagate or 430 | modify any covered work. These actions infringe copyright if you do 431 | not accept this License. Therefore, by modifying or propagating a 432 | covered work, you indicate your acceptance of this License to do so. 433 | 434 | 10. Automatic Licensing of Downstream Recipients. 435 | 436 | Each time you convey a covered work, the recipient automatically 437 | receives a license from the original licensors, to run, modify and 438 | propagate that work, subject to this License. You are not responsible 439 | for enforcing compliance by third parties with this License. 440 | 441 | An "entity transaction" is a transaction transferring control of an 442 | organization, or substantially all assets of one, or subdividing an 443 | organization, or merging organizations. If propagation of a covered 444 | work results from an entity transaction, each party to that 445 | transaction who receives a copy of the work also receives whatever 446 | licenses to the work the party's predecessor in interest had or could 447 | give under the previous paragraph, plus a right to possession of the 448 | Corresponding Source of the work from the predecessor in interest, if 449 | the predecessor has it or can get it with reasonable efforts. 450 | 451 | You may not impose any further restrictions on the exercise of the 452 | rights granted or affirmed under this License. For example, you may 453 | not impose a license fee, royalty, or other charge for exercise of 454 | rights granted under this License, and you may not initiate litigation 455 | (including a cross-claim or counterclaim in a lawsuit) alleging that 456 | any patent claim is infringed by making, using, selling, offering for 457 | sale, or importing the Program or any portion of it. 458 | 459 | 11. Patents. 460 | 461 | A "contributor" is a copyright holder who authorizes use under this 462 | License of the Program or a work on which the Program is based. The 463 | work thus licensed is called the contributor's "contributor version". 464 | 465 | A contributor's "essential patent claims" are all patent claims 466 | owned or controlled by the contributor, whether already acquired or 467 | hereafter acquired, that would be infringed by some manner, permitted 468 | by this License, of making, using, or selling its contributor version, 469 | but do not include claims that would be infringed only as a 470 | consequence of further modification of the contributor version. For 471 | purposes of this definition, "control" includes the right to grant 472 | patent sublicenses in a manner consistent with the requirements of 473 | this License. 474 | 475 | Each contributor grants you a non-exclusive, worldwide, royalty-free 476 | patent license under the contributor's essential patent claims, to 477 | make, use, sell, offer for sale, import and otherwise run, modify and 478 | propagate the contents of its contributor version. 479 | 480 | In the following three paragraphs, a "patent license" is any express 481 | agreement or commitment, however denominated, not to enforce a patent 482 | (such as an express permission to practice a patent or covenant not to 483 | sue for patent infringement). To "grant" such a patent license to a 484 | party means to make such an agreement or commitment not to enforce a 485 | patent against the party. 486 | 487 | If you convey a covered work, knowingly relying on a patent license, 488 | and the Corresponding Source of the work is not available for anyone 489 | to copy, free of charge and under the terms of this License, through a 490 | publicly available network server or other readily accessible means, 491 | then you must either (1) cause the Corresponding Source to be so 492 | available, or (2) arrange to deprive yourself of the benefit of the 493 | patent license for this particular work, or (3) arrange, in a manner 494 | consistent with the requirements of this License, to extend the patent 495 | license to downstream recipients. "Knowingly relying" means you have 496 | actual knowledge that, but for the patent license, your conveying the 497 | covered work in a country, or your recipient's use of the covered work 498 | in a country, would infringe one or more identifiable patents in that 499 | country that you have reason to believe are valid. 500 | 501 | If, pursuant to or in connection with a single transaction or 502 | arrangement, you convey, or propagate by procuring conveyance of, a 503 | covered work, and grant a patent license to some of the parties 504 | receiving the covered work authorizing them to use, propagate, modify 505 | or convey a specific copy of the covered work, then the patent license 506 | you grant is automatically extended to all recipients of the covered 507 | work and works based on it. 508 | 509 | A patent license is "discriminatory" if it does not include within 510 | the scope of its coverage, prohibits the exercise of, or is 511 | conditioned on the non-exercise of one or more of the rights that are 512 | specifically granted under this License. You may not convey a covered 513 | work if you are a party to an arrangement with a third party that is 514 | in the business of distributing software, under which you make payment 515 | to the third party based on the extent of your activity of conveying 516 | the work, and under which the third party grants, to any of the 517 | parties who would receive the covered work from you, a discriminatory 518 | patent license (a) in connection with copies of the covered work 519 | conveyed by you (or copies made from those copies), or (b) primarily 520 | for and in connection with specific products or compilations that 521 | contain the covered work, unless you entered into that arrangement, 522 | or that patent license was granted, prior to 28 March 2007. 523 | 524 | Nothing in this License shall be construed as excluding or limiting 525 | any implied license or other defenses to infringement that may 526 | otherwise be available to you under applicable patent law. 527 | 528 | 12. No Surrender of Others' Freedom. 529 | 530 | If conditions are imposed on you (whether by court order, agreement or 531 | otherwise) that contradict the conditions of this License, they do not 532 | excuse you from the conditions of this License. If you cannot convey a 533 | covered work so as to satisfy simultaneously your obligations under this 534 | License and any other pertinent obligations, then as a consequence you may 535 | not convey it at all. For example, if you agree to terms that obligate you 536 | to collect a royalty for further conveying from those to whom you convey 537 | the Program, the only way you could satisfy both those terms and this 538 | License would be to refrain entirely from conveying the Program. 539 | 540 | 13. Remote Network Interaction; Use with the GNU General Public License. 541 | 542 | Notwithstanding any other provision of this License, if you modify the 543 | Program, your modified version must prominently offer all users 544 | interacting with it remotely through a computer network (if your version 545 | supports such interaction) an opportunity to receive the Corresponding 546 | Source of your version by providing access to the Corresponding Source 547 | from a network server at no charge, through some standard or customary 548 | means of facilitating copying of software. This Corresponding Source 549 | shall include the Corresponding Source for any work covered by version 3 550 | of the GNU General Public License that is incorporated pursuant to the 551 | following paragraph. 552 | 553 | Notwithstanding any other provision of this License, you have 554 | permission to link or combine any covered work with a work licensed 555 | under version 3 of the GNU General Public License into a single 556 | combined work, and to convey the resulting work. The terms of this 557 | License will continue to apply to the part which is the covered work, 558 | but the work with which it is combined will remain governed by version 559 | 3 of the GNU General Public License. 560 | 561 | 14. Revised Versions of this License. 562 | 563 | The Free Software Foundation may publish revised and/or new versions of 564 | the GNU Affero General Public License from time to time. Such new versions 565 | will be similar in spirit to the present version, but may differ in detail to 566 | address new problems or concerns. 567 | 568 | Each version is given a distinguishing version number. If the 569 | Program specifies that a certain numbered version of the GNU Affero General 570 | Public License "or any later version" applies to it, you have the 571 | option of following the terms and conditions either of that numbered 572 | version or of any later version published by the Free Software 573 | Foundation. If the Program does not specify a version number of the 574 | GNU Affero General Public License, you may choose any version ever published 575 | by the Free Software Foundation. 576 | 577 | If the Program specifies that a proxy can decide which future 578 | versions of the GNU Affero General Public License can be used, that proxy's 579 | public statement of acceptance of a version permanently authorizes you 580 | to choose that version for the Program. 581 | 582 | Later license versions may give you additional or different 583 | permissions. However, no additional obligations are imposed on any 584 | author or copyright holder as a result of your choosing to follow a 585 | later version. 586 | 587 | 15. Disclaimer of Warranty. 588 | 589 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 590 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 591 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 592 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 593 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 594 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 595 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 596 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 597 | 598 | 16. Limitation of Liability. 599 | 600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 602 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 603 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 604 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 605 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 606 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 607 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 608 | SUCH DAMAGES. 609 | 610 | 17. Interpretation of Sections 15 and 16. 611 | 612 | If the disclaimer of warranty and limitation of liability provided 613 | above cannot be given local legal effect according to their terms, 614 | reviewing courts shall apply local law that most closely approximates 615 | an absolute waiver of all civil liability in connection with the 616 | Program, unless a warranty or assumption of liability accompanies a 617 | copy of the Program in return for a fee. 618 | 619 | END OF TERMS AND CONDITIONS 620 | 621 | How to Apply These Terms to Your New Programs 622 | 623 | If you develop a new program, and you want it to be of the greatest 624 | possible use to the public, the best way to achieve this is to make it 625 | free software which everyone can redistribute and change under these terms. 626 | 627 | To do so, attach the following notices to the program. It is safest 628 | to attach them to the start of each source file to most effectively 629 | state the exclusion of warranty; and each file should have at least 630 | the "copyright" line and a pointer to where the full notice is found. 631 | 632 | 633 | Copyright (C) 634 | 635 | This program is free software: you can redistribute it and/or modify 636 | it under the terms of the GNU Affero General Public License as published 637 | by the Free Software Foundation, either version 3 of the License, or 638 | (at your option) any later version. 639 | 640 | This program is distributed in the hope that it will be useful, 641 | but WITHOUT ANY WARRANTY; without even the implied warranty of 642 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 643 | GNU Affero General Public License for more details. 644 | 645 | You should have received a copy of the GNU Affero General Public License 646 | along with this program. If not, see . 647 | 648 | Also add information on how to contact you by electronic and paper mail. 649 | 650 | If your software can interact with users remotely through a computer 651 | network, you should also make sure that it provides a way for users to 652 | get its source. For example, if your program is a web application, its 653 | interface could display a "Source" link that leads users to an archive 654 | of the code. There are many ways you could offer source, and different 655 | solutions will be better for different programs; see section 13 for the 656 | specific requirements. 657 | 658 | You should also get your employer (if you work as a programmer) or school, 659 | if any, to sign a "copyright disclaimer" for the program, if necessary. 660 | For more information on this, and how to apply and follow the GNU AGPL, see 661 | . 662 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # zhenxun_bot_plugins_index 2 | 3 | 真寻 bot 的插件商店索引库 4 | 5 | 如果您是开发者,可参考[贡献指南](./CONTRIBUTING.md)将插件上传至插件库 6 | 7 | 在您上传插件前,原创插件请先确保此插件未在nonebot2的插件商店出现,若为魔改插件,请确保此插件的魔改具有创新意义 8 | 9 | ## 👀 使用方法 10 | 11 | - 对真寻发送 “插件商店” 查看插件列表 12 | - 添加插件 id or module : 添加插件 13 | - 移除插件 id or module : 移除插件 14 | - 搜索插件 name or author :搜索插件 15 | 16 | ## ⭐️ 推荐插件 17 | 18 | 这里展示的是用户使用较为频繁的插件。 19 | 20 |
点击此处展开/收起 21 | 22 | | 名称 | 作者 | 备注 | 23 | | :------------------------------------------------------------------------------------------- | :--------------------------------------- | :----------------------------------------------------------------------------------------------- | 24 | | [B站订阅](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/bilibili_sub) | [@HibiKier](https://github.com/HibiKier) | 非常便利的B站订阅通知 | 25 | | [词库问答](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/word_bank) | [@HibiKier](https://github.com/HibiKier) | 自定义词条,单词条多个内容随机回复 | 26 | | [游戏抽卡](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/draw_card) | [@HibiKier](https://github.com/HibiKier) | 模拟赛马娘,原神,明日方舟,坎公骑冠剑,公主连结(国/台),碧蓝航线,FGO,阴阳师,碧蓝档案进行抽卡 | 27 | | [github订阅](https://github.com/xuanerwa/zhenxun_github_sub) | [@xuanerwa](https://github.com/xuanerwa) | 用来推送github用户动态或仓库动态 | 28 | | [Minecraft查服](https://github.com/molanp/zhenxun_plugin_mccheck) | [@molanp](https://github.com/molanp) | Minecraft服务器通用状态查询,支持IPv6 | 29 | | [智谱Ai全家桶](https://github.com/molanp/zhenxun_plugin_zhipu_toolkit) | [@molanp](https://github.com/molanp) | AI全家桶,一次安装,到处使用,省时省力省心 | 30 | 31 |
32 | 33 | ## 🐷 伴生插件 34 | 35 | 和真寻一起出生的插件 36 | 37 |
点击此处展开/收起 38 | 39 | | 插件名称 | 简介 | 40 | | ----------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------ | 41 | | [AI](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/ai) | 青云客AI,还有重复说相同的话检测,与小真寻普普通通的对话吧 | 42 | | [B站订阅](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/bilibili_sub) | 非常便利的B站订阅通知,包括直播间,个人用户动态,番剧更新等 | 43 | | [敏感词警察](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/black_word) | 对小真寻进行辱骂会遭到严厉的惩罚,惩罚等级随次数而增加 | 44 | | [磁力搜索](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/bt) | 懂的都懂 | 45 | | [联系管理员](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/dialogue) | 跨越空间与时间跟超级用户对话 | 46 | | [钉宫语录](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/dinggong) | 被钉宫辱骂吧笨蛋 | 47 | | [游戏抽卡](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/draw_card) | 模拟赛马娘,原神,明日方舟,坎公骑冠剑,公主连结(国/台),碧蓝航线,FGO,阴阳师,碧蓝档案进行抽卡,且通过爬虫实现自动更新 | 48 | | [Epic提醒](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/epic) | epic免费游戏提醒,可以不玩,不能没有 | 49 | | [金币红包](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/gold_redbag) | 运气项目又来了,看看你的手气 | 50 | | [本地图库](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/image_management) | 本地图库项目,可以通过命令来上传,移动,删除,发送图片,私人的小收藏 | 51 | | [真寻日报](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/mahiro_report) | 可爱的小真寻为您带来今天的新鲜新闻哦 | 52 | | [刷屏检测](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/mute) | 刷屏是想吃禁言了 | 53 | | [我有一个朋友](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/one_friend) | 我有个朋友想说... | 54 | | [CSGO开箱](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/open_cases) | CSGO开箱以及统计,概率与完美公示的相同,模拟开箱戒赌 | 55 | | [爬爬爬](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/pa) | 随机爬表情包 | 56 | | [b站转发解析](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/parse_bilibili) | 解析b站转发消息,包括专栏,视频url,分享消息等等 | 57 | | [PIX-API](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/pix_api) | PIX的api版本,共享图库,看看你的xp | 58 | | [PIX图库](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/pix_gallery) | PIX的本地版本,收集你和群友的xp | 59 | | [P站排行](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/pixiv_rank_search) | 基于hibiapi的pixiv各种排行 | 60 | | [BUFF皮肤查询](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/search_buff_skin_price) | CSGO当前皮肤数据buff查询 | 61 | | [识图](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/search_image) | 简单的saucenao识图 | 62 | | [涩图](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/send_setu_) | 没什么好说的,必备插件lolicon.api涩图 | 63 | | [翻译](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/translate) | 出国旅游好助手 | 64 | | [微博热搜](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/wbtop) | alapi的微博热搜 | 65 | | [识番](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/what_anime) | api.trace.moe 以图识番 | 66 | | [词库问答](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/word_bank) | 词条检测,包含个人/群组/全局三种范围以及精准/模糊/正则三种检测方式 | 67 | | [词云](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/word_clouds) | 看看自己说了什么话,用户的发言总结 | 68 | | [网易云热评](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/comments_163) | alapi的网易云热评,到点了,该抑郁了 | 69 | | [coser](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/coser) | 没什么,换换口味罢了 | 70 | | [b封面](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/cover) | alapi的b站封面截取接口,通过url来获取b站视频封面 | 71 | | [复读姬](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/fudu) | 人类的本质是....支持文字与图片,概率打断复读 | 72 | | [群欢迎消息](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/group_welcome_msg) | 设置群组成员的入群欢迎信息,支持图片与文字 | 73 | | [鸡汤](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/jidang) | 大饼吃多了,那就来喝点鸡汤吧~ | 74 | | [鲁迅说](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/luxun) | 鲁迅曾经说过... | 75 | | [能不能好好说话](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/nbnhhsh) | 文字拼音首字母猜测,jjj=桀桀桀 | 76 | | [Pid搜索](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/pid_search) | 基于hibiapi的pid搜索,通过p站图片pid搜索图片并发送 | 77 | | [古诗](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/poetry) | 为什么突然文艺起来了啊喂!平白无故念首诗 | 78 | | [二次元语录](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/quotations) | 二次元给你力量 | 79 | | [roll](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/roll) | 犹豫不决吗?那就让我帮你决定吧 | 80 | | [点歌](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/music) | 简易版网易云点歌 | 81 | | [角色识别](https://github.com/zhenxun-org/zhenxun_bot_plugins/tree/main/plugins/what_role) | 动漫以及gal游戏的角色识别 | 82 | 83 |
84 | 85 | ## 🛠️ 插件列表 86 | 87 | [>>>点击此处跳转<<<](./indices/Plugin-list.md) 88 | 89 | ## 💧 老版本插件 90 | 91 | 这里面的插件索引很久没更新了 92 | 93 | [>>>点击此处跳转<<<](./indices/old-Plugin.md) 94 | 95 | ## 💦 上古版本插件 96 | 97 | 时代的眼泪 98 | 99 | [>>>点击此处跳转<<<](https://github.com/zhenxun-org/nonebot_plugins_zhenxun_bot/tree/master) 100 | -------------------------------------------------------------------------------- /indices/Plugin-list.md: -------------------------------------------------------------------------------- 1 | ## 功能类插件索引 2 | 3 | 4 | 5 | | 名称 | 作者 | 备注 | 6 | | :------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------- | --------------------------------------------------------------------------------- | 7 | | [github订阅](https://github.com/xuanerwa/zhenxun_github_sub) | [@xuanerwa](https://github.com/xuanerwa) | 订阅github用户或仓库 | 8 | | [Minecraft查服](https://github.com/molanp/zhenxun_plugin_mccheck) | [@molanp](https://github.com/molanp) | Minecraft服务器状态查询,支持IPv6 | 9 | | [明日方舟干员收集](https://github.com/sophisticate9008/zhenxun_plugin_arknights_collect_operator/tree/master) | [@sophisticate9008](https://github.com/sophisticate9008) | 消耗金币项目,卡池包含全部3星以上角色,按照游戏里的情况给黄票和保底增加概率 | 10 | | [海滨乱斗](https://github.com/sophisticate9008/zhenxun_plugin_honkai_shore_fight/tree/master) | [@sophisticate9008](https://github.com/sophisticate9008) | 崩坏三曾经的网页赛制押注活动,插件以文字方式展示战斗过程并可以押注金币(仅限qq平台) | 11 | | [游戏立绘抽卡](https://github.com/PackageInstaller/zhenxun_plugin_draw_painting/tree/master) | [@PackageInstaller](https://github.com/PackageInstaller) | 从本地图片库中随机抽取游戏人物立绘 | 12 | | [AI全家桶](https://github.com/molanp/zhenxun_plugin_zhipu_toolkit) | [@molanp](https://github.com/molanp) | AI全家桶,一次安装,到处使用,省时省力省心 | 13 | | [牛牛大作战](https://github.com/molanp/zhenxun_plugin_niuniu) | [@molanp](https://github.com/molanp) | 牛牛大作战,男同快乐游 | 14 | -------------------------------------------------------------------------------- /indices/old-Plugin.md: -------------------------------------------------------------------------------- 1 | ## 插件索引(按时间倒序) 2 | 3 | | 名称 | 作者 | 备注 | 4 | | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------- | 5 | | [群友市场](https://github.com/CCYellowStar/zhenxun_plugin_slave_market) | [@CCYellowStar](https://github.com/CCYellowStar) | 群(黑)友(奴)市场 | 6 | | [Chatgpt问答](https://github.com/CRAZYShimakaze/zhenxun_extensive_plugin/tree/main/chatgpt) | [@CRAZYShimakaze](https://github.com/CRAZYShimakaze) | chatgpt问答(支持配置上下文长度) | 7 | | [牛牛大作战](https://github.com/molanp/zhenxun_plugin_niuniu) [点击下载](https://github.com/molanp/zhenxun_plugin_niuniu/releases/download/0.2/zhenxun_plugin_niuniu-main.zip) | [molanp](https://github.com/molanp) | 男同快乐小游戏 | 8 | | [我的世界服务器状态查询](https://github.com/molanp/zhenxun_check_Minecraft) [点击下载](https://github.com/molanp/zhenxun_check_Minecraft/releases/download/v1.3/zhenxun_check_Minecraft-main.zip) | [molanp](https://github.com/molanp) | 一个方便的查询我的世界服务器信息的插件 | 9 | | [QQ权重查询](https://github.com/xiayingLIULI/zhenxun_plugin_QQweight) [点击下载](https://github.com/xiayingLIULI/zhenxun_plugin_QQweight/releases/download/v0.1/QQwright.zip) | [xiayingLIULI](https://github.com/xiayingLIULI) | 查询个人QQ号以及真寻的QQ权重分 | 10 | | [NovelAi作图(本地版)](https://github.com/CCYellowStar/zhenxun_plugin_NovelAi) | [CCYellowStar](https://github.com/CCYellowStar) | 调用本地stable-diffusion-webui-api的NovelAi作图插件,支持中文,内置EhTagTranslation词库翻译和百度机翻 | 11 | | [哔咔漫画](https://github.com/CCYellowStar/zhenxun_plugin_pica) [点击下载](https://github.com/CCYellowStar/zhenxun_plugin_pica/releases/download/v1.2/zhenxun_plugin_pica.zip) | [CCYellowStar](https://github.com/CCYellowStar) | 一起看涩涩? | 12 | | [获取MC服务器信息](https://github.com/klxf/zhenxun_plugin_getmcserver) | [@Mr_Fang](https://github.com/klxf) | 一个简单的获取服务器在线人数、玩家列表的插件 | 13 | | [《别当欧尼酱了!》漫画鉴赏](https://github.com/RShock/zhenxun_plugin_onimai) | [@RShock](https://github.com/RShock) | 在qq中观看《别当欧尼酱了!》漫画 | 14 | | [Phigros查分器](https://github.com/SEVEN-6174/zhenxun_plugin_phigros) | [@SEVEN-6174](https://github.com/SEVEN-6174) | 勉强能用的Phigros查分器 | 15 | | [只因进化录](https://github.com/RShock/ikun_evolution) | [@RShock](https://github.com/RShock) | q群大型挂机游戏 | 16 | | [动漫人物查询](https://github.com/itoukou1/zhenxun_plugin_animetrace) | [@itoukou1](https://github.com/itoukou1) | 基于AnimeTrace API开发的以图识番插件,支持多可能性查询和单可能查询。 | 17 | | [以文生图](https://github.com/CCYellowStar/zhenxun_plugin_TextToPic) | [@CCYellowStar](https://github.com/CCYellowStar) | 使用wenxinApi(https://wenxin.baidu.com/moduleApi/ernieVilg)以文字描述生成各种风格图片的真寻插件 | 18 | | [github订阅](https://github.com/yajiwa/zhenxun_github_sub) [点击下载](https://github.com/yajiwa/zhenxun_github_sub/releases/download/v0.5/github_sub.zip) | [@yajiwa](https://github.com/yajiwa) | 推送github用户动态或仓库动态 | 19 | | [明日方舟助理抽取](https://github.com/sophisticate9008/draw_helper) | [@sophisticate9008](https://github.com/sophisticate9008) | 抽取明日方舟助理,随机中文语音(转型为收藏小游戏) | 20 | | [亡命神抽](https://github.com/YH1345246294/DeadMansDraw) | [@YH1345246294](https://github.com/YH1345246294) | 亡命神抽,不是你死就是我亡 | 21 | | [算卦](https://github.com/kuiiue/zhenxun-plugin-suangua) | [@kui](https://github.com/kuiiue) | 算卦不算命,求己胜求人 | 22 | | [看东方](https://github.com/CCYellowStar/zhenxun_plugin_looktouhou) | [@CCYellowStar](https://github.com/CCYellowStar) | 使用[paulzzh东方API](https://img.paulzzh.com/)来获取对应角色图 | 23 | | [wolframalpha科学计算](https://github.com/luvsagiri/zhenxun_plugin_wolframalpha) | [@luvsagiri](https://github.com/luvsagiri) | 使用[wolframalpha](https://www.wolframalpha.com/)进行科学计算 | 24 | | [原神角色面板查询](https://github.com/CRAZYShimakaze/zhenxun_extensive_plugin/tree/main/genshin_role_info) | [@CRAZYShimakaze](https://github.com/CRAZYShimakaze) | 移植自[LittlePaimon](https://github.com/CMHopeSunshine/LittlePaimon),展示角色的面板和伤害数据 | 25 | | [赛马娘工具包](https://github.com/shinianj/zhenxun_plugin_uma_mn) | [@shinianj](https://github.com/shinianj) | 由hoshinobot适配的赛马娘工具包 | 26 | | [海滨的灼热乱斗](https://github.com/sophisticate9008/fight) | [@sophisticate9008](https://github.com/sophisticate9008) | 崩坏三十二英桀战斗模拟 | 27 | | [幸运球](https://github.com/fluoresce0/zhenxun_plugins_luckyball) | [@fluoresce0](https://github.com/fluoresce0) | 模拟彩票 | 28 | | [成语接龙](https://github.com/CRAZYShimakaze/zhenxun_extensive_plugin/tree/main/idiom_salon) | [@CRAZYShimakaze](https://github.com/CRAZYShimakaze) | 接尾字同音字开头的成语,1v1对抗 | 29 | | [私人商店](https://github.com/shinianj/zhenxun_plugin_personalshop) | [@shinianj](https://github.com/shinianj) | 私人商店,可自己开店 | 30 | | [股海风云](https://github.com/RShock/zhenxun_plugin_stock_legend) | [@RShock](https://github.com/RShock) | 适配真寻的炒股小游戏,使用真寻经济系统和真实股市数据 | 31 | | [每日发癫魔楞语录](https://github.com/xipesoy/zhenxun_plugin_meiriyiju) | [@xipesoy](https://github.com/xipesoy) | 各种发癫魔楞语言,支持替换主角 | 32 | | [赛马](https://github.com/Evan8440/zhenxun_bot_HorseRace) | [@Evan8440](https://github.com/Evan8440) | 群赛马,支持自定义事件 | 33 | | [TZ插件合集](https://github.com/po-lan/zhenxun_plugins_TZseries) [点击下载](https://github.com/po-lan/zhenxun_plugins_TZseries/releases/download/v0.3/zhenxun_plugins_TZseries.zip) | [@po-lan](https://github.com/po-lan) | 21点、银行、打劫、福利金、刮刮乐、小人举牌的插件合集 | 34 | | [24点](https://github.com/CRAZYShimakaze/zhenxun_extensive_plugin/tree/main/24_point) | [@CRAZYShimakaze](https://github.com/CRAZYShimakaze) | 24点游戏,使用给出的四个数字,利用加减乘除算出24 | 35 | | [21点](https://github.com/CRAZYShimakaze/zhenxun_extensive_plugin/tree/main/21_point) | [@CRAZYShimakaze](https://github.com/CRAZYShimakaze) | 21点游戏,移植自 [yaowan233](https://github.com/yaowan233/nonebot-plugin-blackjack),适配真寻 | 36 | | [打工](https://github.com/CRAZYShimakaze/zhenxun_extensive_plugin/tree/main/work) | [@CRAZYShimakaze](https://github.com/CRAZYShimakaze) | 随机生成两位数加减法,在100秒内计算10道题来获取金币 | 37 | | [棋类游戏](https://github.com/xipesoy/nonebot_plugins_zhenxun_bot/tree/index/nonebot_plugin_boardgame) | [@xipesoy](https://github.com/xipesoy) | 棋类游戏(五子棋/围棋/国际象棋) | 38 | | [游戏王卡查](https://github.com/xipesoy/nonebot_plugins_zhenxun_bot/tree/index/youxiwang) | [@xipesoy](https://github.com/xipesoy) | 游戏王卡查 支持模糊查询 项目源地址 [nonebot_plugin_ygo](https://github.com/anlen123/nonebot_plugin_ygo) | 39 | | [微博推送](https://github.com/LambdaYH/zhenxun_plugin_weibo) | [@LambdaYH](https://github.com/LambdaYH) | 移植自 [KokkoroBot-Multi-Platform](https://github.com/zzbslayer/KokkoroBot-Multi-Platform) ,在群聊内推送特定的微博(可配置) | 40 | | [闪照捕获](https://github.com/HDU-Nbsp/zhenxun_plugin_intercept_withdraw) | [@HDU-Nbsp](https://github.com/HDU-Nbsp) | 自动监听群内消息,将撤回消息与闪照(解析为图片后)反馈给超级用户 | 41 | | [视频点歌](https://github.com/po-lan/zhenxun_plugin_VMusic) | [@po-lan](https://github.com/po-lan) | 点歌的魔改版,以视频的方式输出音乐来确保音质 | 42 | | [原神角色卡片](https://github.com/CRAZYShimakaze/zhenxun_extensive_plugin) | [@CRAZYShimakaze](https://github.com/CRAZYShimakaze) | 参考自 [zhenxun-plugin-almanac](https://github.com/zhenxun-org/zhenxun_bot-tg/tree/main/plugins/genshin/almanac),展示橱窗中第一个或指定角色的面板数据 | 43 | | [明日方舟工具箱](https://github.com/NumberSir/zhenxun_arktools) [点击下载](https://github.com/NumberSir/zhenxun_arktools/releases/download/v1.0.0/zhenxun_arktools.zip) | [@Number_Sir](https://github.com/NumberSir) | 明日方舟工具箱,整合一些有需求的资料查询功能 | 44 | | [查成分(适配win端)](https://github.com/po-lan/zhenxun-nonebot-plugin-ddcheck) | [@po-lan](https://github.com/po-lan) | 成分姬的魔改版,不在依赖htmlrender插件,使其能简单的在win端运行。 | 45 | | [Apex查询工具(图片版)](https://github.com/AreCie/Apex_Tool) | [@AreCie](https://github.com/AreCie) | 查询APEX中:地图轮换、制造轮换、猎杀信息、玩家信息 | 46 | | [Apex战绩查询](https://github.com/Josef1999/ApexLegends-QQ-Robot) | [@Josef1999](https://github.com/Josef1999) | 不止可以查战绩 | 47 | | [恶臭数字论证器](https://github.com/HiDolen/nonebot_plugin_homonumber) | [@HiDolen](https://github.com/HiDolen) | 恶臭数字论证器插件,适配zhenxun_bot | 48 | | [在线运行代码](https://github.com/MingxuanGame/zhenxun_plugin_code) | [@MingxuanGame](https://github.com/MingxuanGame) | 移植自 [yzyyz1387](https://github.com/yzyyz1387) 的 [nonebot_plugin_code](https://github.com/yzyyz1387/nonebot_plugin_code),在 QQ 群内运行c/py/go等代码 | 49 | | [ELF_RSS](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/ELF_RSS) | [@mouhensama](https://github.com/mouhensama) | 来自 [Quan666](https://github.com/Quan666) 的 [ELFRSS](https://github.com/Quan666/ELF_RSS),并在其基础上进行了真寻适配的RSS订阅插件。 | 50 | | [随机唐可可](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/nonebot_plugin_randomtkk) | [@neigui1](https://github.com/neigui1) | 找到唐可可,和她一起做学园偶像! | 51 | | [字符画](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/nonebot_plugin_charpic) | [@neigui1](https://github.com/neigui1) | 生成字符画支持gif | 52 | | [缩写查询和梗百科](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/what) | [@neigui1](https://github.com/neigui1) | 缩写查询和梗百科 | 53 | | [摸鱼日历](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/nonebot_plugin_moyu) | [@neigui1](https://github.com/neigui1) | 摸鱼日历,摸鱼真舒服啊 | 54 | | [结巴分词](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/shuffle) | [@neigui1](https://github.com/neigui1) | 打乱句子 | 55 | | [每日一句](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/nonebot_plugin_everyday_en) | [@neigui1](https://github.com/neigui1) | 每日一句英文句子 | 56 | | [历史上的今天](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/todaybefore) | [@neigui1](https://github.com/neigui1) | 历史上的今天是什么呢 | 57 | | [幻影坦克](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/nonebot_plugin_miragetank) | [@neigui1](https://github.com/neigui1) | 生成幻影坦克图片 | 58 | | [CP文等多种短文生成](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/essay) | [@neigui1](https://github.com/neigui1) | CP文等多种短文生成 | 59 | | [抽象话和火星文](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/text) | [@neigui1](https://github.com/neigui1) | 将文本抽象化和火星文 | 60 | | [leetcode每日一题](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/leetcode) | [@neigui1](https://github.com/neigui1) | 力扣https://leetcode.cn/problemset/all/每日一题 | 61 | | [Github仓库信息卡片](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/github) | [@neigui1](https://github.com/neigui1) | 当机器人接收到一个 Github 仓库链接时 会自动发送信息卡片 | 62 | | [彩云小梦AI续写插件](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/caiyunai) | [@Copaan](https://github.com/Copaan) | 利用 [彩云小梦](http://if.caiyunai.com/dream) ai续写,生成小作文 | 63 | | [Crazy Thursday🍗 天天疯狂 🍗](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/crazy_thursday) | [@Copaan](https://github.com/Copaan) | 天天疯狂!随机输出KFC疯狂星期四文案。 | 64 | | [搜索引擎插件](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/giyf) | [@Copaan](https://github.com/Copaan) | 生成搜索引擎直链,速速帮助懒狗群友体面 | 65 | | [多种风格logo生成插件](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/logo) | [@Copaan](https://github.com/Copaan) | 用发送的文字生成各种熟悉样式的logo | 66 | | [60s读世界插件](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/read_60s) | [@Copaan](https://github.com/Copaan) | 定时向指定群或列表好友发送每日60s读世界,python版本需大于等于3.9,使用前需向env.dev加入配置 | 67 | | [今天吃什么插件](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/what2eat) | [@Copaan](https://github.com/Copaan) | 选择恐惧症?让真寻建议你今天吃什么! | 68 | | [AsoulCnki枝网查重插件](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/asoulcnki) | [@Copaan](https://github.com/Copaan) | 利用 [枝网查重](https://asoulcnki.asia/) 查找最相似的小作文,为防止文字太长刷屏,将内容转换为图片形式发出 | 69 | | [随机猫猫](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/random_cat_gif) | [@Copaan](https://github.com/Copaan) | 使用随机猫猫图网站http://edgecats.net/ 实现 | 70 | | [语句抽象化](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/abstract) | [@Copaan](https://github.com/Copaan) | 抽象话翻译工具:把你打的字都给你emoji咯! | 71 | | [青年大学习](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/youthstudy) | [@Copaan](https://github.com/Copaan) | 基于nonebot2的青年大学习插件,用于获取最新一期青年大学习答案 | 72 | | [表情包制作](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/memes) | [@Copaan](https://github.com/Copaan) | [Nonebot2](https://github.com/nonebot/nonebot2) 插件,用于表情包制作 | 73 | | [超分](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/super_resolution) | [@AkashiCoin](https://github.com/AkashiCoin) | 获取图片更大的分辨率 ps:内存小的机器不建议使用 | 74 | | [思源笔记](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/siyuan)
[点击下载](https://github.com/Zuoqiu-Yingyi/zhenxun-bot-plugin-siyuan/releases/download/v0.3.0/zhenxun_plugin_siyuan.zip) | [@Zuoqiu-Yingyi](https://github.com/Zuoqiu-Yingyi) | 可爱的 QQ 机器人 [绪山真寻 Bot](https://hibikier.github.io/zhenxun_bot/) 的 [思源笔记](https://github.com/siyuan-note/siyuan) 插件, 可以将 QQ 群转化为思源笔记的收集箱 | 75 | | [可爱的 Atri 语言包](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/nonebot_plugin_atri) | [@AkashiCoin](https://github.com/AkashiCoin) | 此语音来自 [FYWinds/nonebot-plugin-atri](https://github.com/FYWinds/nonebot-plugin-atri) 并在其基础上对 zhenxun_bot 进行适配 | 76 | | [原神 KFC 社死语言](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/genshinkfc) | @梦璃雨落 | (异世相遇,尽享社死!) | 77 | | [cp小故事](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/blob/master/cp) | [@AkashiCoin](https://github.com/AkashiCoin) | 转自 HoshinoBot | 78 | | [人生重开模拟器](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/lifeRestart) | [@AkashiCoin](https://github.com/AkashiCoin) | 转自 HoshinoBot | 79 | | [随机塔罗牌](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/tarot) | [@AkashiCoin](https://github.com/AkashiCoin) | 转自 HoshinoBot 的 b 站主题塔罗牌插件 | 80 | | [彩六查分](https://github.com/AkashiCoin/nonebot_plugins_zhenxun_bot/tree/master/nonebot_plugin_r6s) | [@BalconyJH](https://github.com/BalconyJH) | 彩虹六号围攻rank分查询 | 81 | | [hoshino 清晰术](https://github.com/HibiKier/zhenxun_plugin_img2bigImg) | [@HibiKier](https://github.com/HibiKier) | hoshino 清晰术 | 82 | -------------------------------------------------------------------------------- /plugins.json: -------------------------------------------------------------------------------- 1 | { 2 | "github订阅": { 3 | "module": "github_sub", 4 | "module_path": "github_sub", 5 | "description": "订阅github用户或仓库", 6 | "usage": "usage:\n github新Comment,PR,Issue等提醒\n 指令:\n 添加github ['用户'/'仓库'] [用户名/{owner/repo}]\n 删除github [用户名/{owner/repo}]\n 查看github\n 示例:添加github订阅 用户 HibiKier\n 示例:添加gb订阅 仓库 HibiKier/zhenxun_bot\n 示例:添加github 用户 HibiKier\n 示例:删除gb订阅 HibiKier", 7 | "author": "xuanerwa", 8 | "version": "0.9", 9 | "plugin_type": "NORMAL", 10 | "is_dir": true, 11 | "github_url": "https://github.com/xuanerwa/zhenxun_github_sub" 12 | }, 13 | "Minecraft查服": { 14 | "module": "mc_check", 15 | "module_path": "mc_check", 16 | "description": "Minecraft服务器状态查询,支持IPv6", 17 | "usage": "Minecraft服务器状态查询,支持IPv6\n 用法:\n 查服 ip:端口 / 查服 ip\n 设置语言 zh-cn\n 当前语言\n 语言列表\n eg:\n mcheck ip:port / mcheck ip\n set_lang en\n lang_now\n lang_list", 18 | "author": "molanp", 19 | "version": "1.31", 20 | "plugin_type": "NORMAL", 21 | "is_dir": true, 22 | "github_url": "https://github.com/molanp/zhenxun_plugin_mccheck" 23 | }, 24 | "明日方舟干员收集": { 25 | "module": "zhenxun_plugin_arknights_collect_operator", 26 | "module_path": ".", 27 | "description": "消耗金币项目,卡池包含全部3星以上角色,按照游戏里的情况给黄票和保底增加概率", 28 | "usage": "\n 抽干员(?十连)\n 干员(皮肤|立绘)(1|2|...)\n (克洛斯|能天使)语音(?戳一下|信赖触摸)\n 我的黄票,黄票兑换(年|令|...)\n 我的干员,我的六星记录\n ", 29 | "author": "sophisticate9008", 30 | "version": "0.1", 31 | "plugin_type": "NORMAL", 32 | "is_dir": true, 33 | "github_url": "https://github.com/sophisticate9008/zhenxun_plugin_arknights_collect_operator/tree/master" 34 | }, 35 | "海滨乱斗": { 36 | "module": "zhenxun_plugin_honkai_shore_fight", 37 | "module_path": ".", 38 | "description": "崩坏三曾经的网页赛制押注活动,插件以文字方式展示战斗过程并可以押注金币(仅限qq平台)", 39 | "usage": "\n 海滨乱斗(?静默)\n ", 40 | "author": "sophisticate9008", 41 | "version": "0.1", 42 | "plugin_type": "NORMAL", 43 | "is_dir": true, 44 | "github_url": "https://github.com/sophisticate9008/zhenxun_plugin_honkai_shore_fight/tree/master" 45 | }, 46 | "游戏立绘抽卡": { 47 | "module": "zhenxun_plugin_draw_painting", 48 | "module_path": ".", 49 | "description": "从本地图片库中随机抽取游戏人物立绘", 50 | "usage": "抽取老婆/老公\n 指令:\n 抽老婆/老公[游戏名参数可选]\n 我老婆/老公 [查看所有立绘]\n 老婆/老公改名 [修改单张立绘名称]\n 老婆/老公概率 ?[数量参数可选,默认全部] [查看各游戏占比]\n 这是男的/女的 [抽老婆抽到男的的时候可以用,另一个同理,只能处理自己的立绘]\n 投票删除 [回复抽到的图片,非男非女时可以使用]\n 请注意,如果出现乱用指令的情况,将会被永久封禁。", 51 | "author": "PackageInstaller", 52 | "version": "1.0", 53 | "plugin_type": "NORMAL", 54 | "is_dir": true, 55 | "github_url": "https://github.com/PackageInstaller/zhenxun_plugin_draw_painting/tree/master" 56 | }, 57 | "AI全家桶": { 58 | "module": "zhipu_toolkit", 59 | "module_path": "zhipu_toolkit", 60 | "description": "AI全家桶,一次安装,到处使用,省时省力省心", 61 | "usage": "AI全家桶,一次安装,到处使用,省时省力省心\nusage:\n 生成图片 (可选size) \n 生成视频 (可选基于生成内容图片) \n 清理我的会话: 用于清理你与AI的聊天记录\n 清理群会话: (仅管理员)用于清理本群的大杂烩记录,仅当分组模式为group时生效\n 启用/禁用伪人模式: 开启或关闭当前群聊的伪人模式\n或者与机器人聊天,小真寻是可以看懂大家的表情包和链接的...\n例如;\n @Bot 抱抱\n 小真寻老婆", 62 | "author": "molanp", 63 | "version": "1.7", 64 | "plugin_type": "NORMAL", 65 | "is_dir": true, 66 | "github_url": "https://github.com/molanp/zhenxun_plugin_zhipu_toolkit" 67 | }, 68 | "牛牛大作战": { 69 | "module": "niuniu", 70 | "module_path": "niuniu", 71 | "description": "牛牛大作战,男同快乐游", 72 | "usage": "牛牛大作战,男同快乐游\n 合理安排时间,享受健康生活\n\n 注册牛牛 --注册你的牛牛\n 注销牛牛 --销毁你的牛牛(花费500金币)\n 击剑/jj [@user] --与注册牛牛的人进行击剑,对战结果影响牛牛长度\n 我的牛牛 --查看自己牛牛长度\n 我的牛牛战绩 --查看自己牛牛战绩\n 牛牛长度排行 --查看本群正数牛牛长度排行\n 牛牛深度排行 --查看本群负数牛牛深度排行\n 牛牛长度总排行 --查看正数牛牛长度排行总榜\n 牛牛深度总排行 --查看负数牛牛深度排行总榜\n 打胶 --对自己的牛牛进行操作,结果随机", 73 | "author": "molanp", 74 | "version": "1.2.rc3", 75 | "plugin_type": "NORMAL", 76 | "is_dir": true, 77 | "github_url": "https://github.com/molanp/zhenxun_plugin_niuniu" 78 | }, 79 | "真寻农场": { 80 | "module": "zhenxun_plugin_farm", 81 | "module_path": ".", 82 | "description": "快乐的农场时光", 83 | "usage": "你也要种地?\n 指令:\n at 开通农场\n 我的农场\n 我的农场币\n 种子商店 [页数]\n 购买种子 [作物/种子名称] [数量]\n 我的种子\n 播种 [作物/种子名称] [数量]\n 收获\n 铲除\n 我的作物\n 出售作物 [作物/种子名称] [数量]\n 偷菜 at\n 开垦\n 购买农场币 [数量] 数量为消耗金币的数量", 84 | "author": "Shu-Ying", 85 | "version": "1.0", 86 | "plugin_type": "NORMAL", 87 | "is_dir": true, 88 | "github_url": "https://github.com/Shu-Ying/zhenxun_plugin_farm" 89 | }, 90 | "群聊总结": { 91 | "module": "zhenxun_plugin_summary_group", 92 | "module_path": ".", 93 | "description": "使用 AI 分析群聊记录,生成讨论内容的总结", 94 | "usage": "【基础命令】\n 总结 [消息数量] [-p 风格] [内容] [@用户1 @用户2 ...]\n - 生成该群最近消息数量的内容总结\n - 可选 -p/--prompt 指定总结风格 (例如: -p 正式, --prompt 锐评)\n - 可选指定[内容]过滤条件\n - 可选指定[@用户]只总结特定用户的发言\n - 例如:总结 100 关于项目进度\n - 例如:总结 500 @张三 @李四\n - 例如:总结 200 -p 正式 关于BUG @张三\n\n【仅限超级用户的命令】\n 定时总结 [HH:MM或HHMM] [最少消息数量] [-p 风格] [-g 群号] [-all]\n - 设置定时生成消息总结\n - 可选 -p/--prompt 指定总结风格 (例如: -p 正式, --prompt 锐评)\n - -g 参数可指定特定群号\n - -all 参数将对所有群生效\n - 例如:定时总结 22:00 100 -g 123456\n - 例如:定时总结 08:30 200 -p 简洁\n\n 定时总结取消 [-g 群号] [-all]\n - 取消本群或指定群的定时内容总结\n\n 总结调度状态 [-d]\n - 查看当前所有定时总结任务的状态\n - 显示下次执行时间和群号信息 (-d 显示详细信息)\n\n 总结健康检查\n - 检查插件系统健康状态\n - 显示调度器、队列处理器等组件状态\n\n 总结系统修复\n - 自动修复可能的系统问题\n - 用于解决任务队列或调度器异常\n", 95 | "author": "webjoin111", 96 | "version": "2.1.0", 97 | "plugin_type": "NORMAL", 98 | "is_dir": true, 99 | "github_url": "https://github.com/webjoin111/zhenxun_plugin_summary_group" 100 | }, 101 | "doro大冒险": { 102 | "module": "nonebot_plugin_dorodoro", 103 | "module_path": "nonebot_plugin_dorodoro", 104 | "description": "一个基于文字冒险的游戏插件", 105 | "usage": "\n 使用方法:\n doro :开始游戏\n choose <选项> 或 选择 <选项>:在游戏中做出选择\n ", 106 | "author": "ATTomatoo", 107 | "version": "1.5.5", 108 | "plugin_type": "NORMAL", 109 | "is_dir": true, 110 | "github_url": "https://github.com/ATTomatoo/dorodoro" 111 | }, 112 | "群聊语录": { 113 | "module": "quote", 114 | "module_path": "quote", 115 | "description": "一款QQ群语录库——支持上传聊天截图为语录,随机投放语录,关键词搜索语录精准投放", 116 | "usage": "\n 【基础命令】\n - 语录:随机发送一条语录\n - 语录 [关键词]:搜索并发送包含关键词的语录\n - 语录 @用户:随机发送该用户的语录\n - 语录 @用户 [关键词]:搜索并发送该用户包含关键词的语录\n - 上传 [图片]:上传图片作为语录\n - 上传 [回复消息]:将回复的消息上传为语录\n - 记录 [回复消息]:将回复的文本消息生成为语录并保存\n - 生成 [回复消息]:将回复的文本消息生成为语录但不保存\n\n 【标签命令】\n - 标签/tag [回复语录]:查看语录的所有标签\n - addtag [标签1] [标签2] [回复语录]:为语录添加标签\n - deltag [标签1] [标签2] [回复语录]:删除语录的标签\n\n 【管理命令】\n - 删除 [回复语录]:删除回复的语录\n - 删除关键词 [关键词]:删除包含关键词的语录\n - 删除关键词 @用户 [关键词]:删除该用户包含关键词的语录\n\n 【统计命令】\n - 语录统计 热门:显示群内热门语录排行\n - 语录统计 高产上传:显示上传语录最多的用户排行\n - 语录统计 高产被录:显示被记录语录最多的用户排行\n ", 117 | "author": "webjoin111", 118 | "version": "v0.4.4", 119 | "plugin_type": "NORMAL", 120 | "is_dir": true, 121 | "github_url": "https://github.com/webjoin111/zhenxun_plugin_quote" 122 | }, 123 | "来杯咖啡": { 124 | "module": "zhenxun_plugin_coffee", 125 | "module_path": ".", 126 | "description": "来一杯热气腾腾的咖啡吧~", 127 | "usage": "\n 【基础命令】\n 来杯咖啡:发送一条随机组合的咖啡推荐\n ", 128 | "author": "overwriter", 129 | "version": "1.0", 130 | "plugin_type": "NORMAL", 131 | "is_dir": true, 132 | "github_url": "https://github.com/s12mmm3/zhenxun_plugin_coffee" 133 | } 134 | } 135 | -------------------------------------------------------------------------------- /update_table.py: -------------------------------------------------------------------------------- 1 | import json 2 | 3 | # 读取插件数据 4 | with open("plugins.json", "r", encoding="utf-8") as f: 5 | plugins = json.load(f) 6 | 7 | # 读取现有表格内容 8 | with open("indices/Plugin-list.md", "r", encoding="utf-8") as f: 9 | lines = f.readlines() 10 | 11 | # 提取现有条目 12 | existing_entries = [] 13 | in_table = False 14 | for line in lines: 15 | if line.strip() == "| 名称": 16 | in_table = True 17 | continue 18 | if in_table and line.startswith("|"): 19 | existing_entries.append(line.strip()) 20 | 21 | # 生成新条目 22 | new_entries = [] 23 | for name, plugin in plugins.items(): 24 | github_url = plugin["github_url"] 25 | author = plugin["author"] 26 | description = plugin["description"].split("\n")[0].strip() # 取description首行 27 | 28 | entry = f"| [{name}]({github_url}) | [@{author}](https://github.com/{author}) | {description} |" 29 | new_entries.append(entry) 30 | 31 | # 合并现有条目(去重) 32 | all_entries = new_entries + [e for e in existing_entries if e not in new_entries] 33 | 34 | # 重新生成文件内容 35 | with open("indices/Plugin-list.md", "w", encoding="utf-8") as f: 36 | f.write("## 功能类插件索引\n\n\n\n") 37 | f.write("| 名称 | 作者 | 备注 |\n") 38 | f.write( 39 | "| :----------------------------------------------------------- | ------------------------------------ | ---------------------------------- |\n" 40 | ) 41 | for entry in all_entries: 42 | f.write(f"{entry}\n") 43 | -------------------------------------------------------------------------------- /zhenxun_plugins.json: -------------------------------------------------------------------------------- 1 | { 2 | "zhenxun_arktools": { 3 | "plugin_name": " 明日方舟工具箱", 4 | "author": "Number_Sir", 5 | "version": 0.2, 6 | "introduction": "明日方舟工具箱,整合一些有需求的资料查询功能", 7 | "download_url": "https://github.com/NumberSir/zhenxun_arktools/releases/download/v1.0.0/zhenxun_arktools.zip", 8 | "github_url": "https://github.com/NumberSir/zhenxun_arktools" 9 | }, 10 | "zhenxun_plugin_siyuan": { 11 | "plugin_name": "思源笔记", 12 | "author": "Zuoqiu-Yingyi", 13 | "version": 0.21, 14 | "introduction": "将群转化为思源笔记的收集箱", 15 | "download_url": "https://github.com/Zuoqiu-Yingyi/zhenxun-bot-plugin-siyuan/releases/download/v0.2.2/zhenxun_plugin_siyuan.zip", 16 | "github_url": "https://github.com/Zuoqiu-Yingyi/zhenxun-bot-plugin-siyuan" 17 | }, 18 | "zhenxun_plugins_TZseries": { 19 | "plugin_name": " TZ插件合集", 20 | "author": "落灰", 21 | "version": 0.3, 22 | "introduction": "21点、银行、打劫、福利金、刮刮乐、小人举牌的插件合集", 23 | "download_url": "https://github.com/po-lan/zhenxun_plugins_TZseries/releases/download/v0.3/zhenxun_plugins_TZseries.zip", 24 | "github_url": "https://github.com/po-lan/zhenxun_plugins_TZseries" 25 | }, 26 | "zhenxun_github_sub": { 27 | "plugin_name": " github订阅", 28 | "author": "yajiwa", 29 | "version": 0.5, 30 | "introduction": "用来推送github用户动态或仓库动态", 31 | "download_url": "https://github.com/yajiwa/zhenxun_github_sub/releases/download/v0.5/github_sub.zip", 32 | "github_url": "https://github.com/yajiwa/zhenxun_github_sub" 33 | }, 34 | "zhenxun_plugin_pica": { 35 | "plugin_name": " 哔咔漫画", 36 | "author": "CCYellowStar", 37 | "version": 1.2, 38 | "introduction": "一起看涩涩?", 39 | "download_url": "https://github.com/CCYellowStar/zhenxun_plugin_pica/releases/download/v1.2/zhenxun_plugin_pica.zip", 40 | "github_url": "https://github.com/CCYellowStar/zhenxun_plugin_pica" 41 | }, 42 | "zhenxun_plugin_QQweight": { 43 | "plugin_name": " QQ权重查询", 44 | "author": "xiayingLIULI", 45 | "version": 0.1, 46 | "introduction": "查询个人QQ号以及真寻的QQ权重分", 47 | "download_url": "https://github.com/xiayingLIULI/zhenxun_plugin_QQweight/releases/download/v0.1/QQwright.zip", 48 | "github_url": "https://github.com/xiayingLIULI/zhenxun_plugin_QQweight" 49 | }, 50 | "zhenxun_check_Minecraft": { 51 | "plugin_name": " 我的世界服务器状态查询", 52 | "author": "molanp", 53 | "version": 1.3, 54 | "introduction": "一个方便的查询我的世界服务器信息的插件", 55 | "download_url": "https://github.com/molanp/zhenxun_check_Minecraft/releases/download/v1.3/zhenxun_check_Minecraft-main.zip", 56 | "github_url": "https://github.com/molanp/zhenxun_check_Minecraft" 57 | }, 58 | "zhenxun_plugin_niuniu": { 59 | "plugin_name": " 牛牛大作战", 60 | "author": "molanp", 61 | "version": 0.2, 62 | "introduction": "一个方便的查询我的世界服务器信息的插件", 63 | "download_url": "https://github.com/molanp/zhenxun_plugin_niuniu/releases/download/0.2/zhenxun_plugin_niuniu-main.zip", 64 | "github_url": "https://github.com/molanp/zhenxun_plugin_niuniu" 65 | } 66 | } 67 | --------------------------------------------------------------------------------