mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-28 03:26:18 +08:00
✨ add adapter publish template
This commit is contained in:
parent
31b8a5ff77
commit
fc2694497e
46
.github/ISSUE_TEMPLATE/adapter-publish.md
vendored
Normal file
46
.github/ISSUE_TEMPLATE/adapter-publish.md
vendored
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
---
|
||||||
|
name: Adapter Publish
|
||||||
|
about: Publish your adapter to nonebot homepage and nb-cli
|
||||||
|
title: "Adapter: blabla 协议"
|
||||||
|
labels: Adapter
|
||||||
|
assignees: ""
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**你的协议名称:**
|
||||||
|
|
||||||
|
example
|
||||||
|
|
||||||
|
<!-- 协议连接时使用的名称:/<name>/ws -->
|
||||||
|
|
||||||
|
**简短描述协议:**
|
||||||
|
|
||||||
|
Example 协议
|
||||||
|
|
||||||
|
**插件 import 使用的名称**
|
||||||
|
|
||||||
|
nonebot.adapters.example
|
||||||
|
|
||||||
|
<!-- 或 nonebot_adapter_example 等合法包名 -->
|
||||||
|
|
||||||
|
**插件 install 使用的名称**
|
||||||
|
|
||||||
|
nonebot-adapter-example
|
||||||
|
|
||||||
|
<!--
|
||||||
|
例 1:nonebot-adapter-example
|
||||||
|
|
||||||
|
通过 pypi 安装
|
||||||
|
|
||||||
|
> 请事先发布插件到[pypi](https://pypi.org/)
|
||||||
|
|
||||||
|
例 2:git+https://github.com/nonebot/nonebot-adapter-example
|
||||||
|
|
||||||
|
从 github 仓库安装
|
||||||
|
-->
|
||||||
|
|
||||||
|
**插件项目仓库/主页链接**
|
||||||
|
|
||||||
|
nonebot/nonebot2
|
||||||
|
|
||||||
|
<!-- 默认 github 或其他完整链接,请勿使用 markdown 语法 -->
|
12
.github/ISSUE_TEMPLATE/plugin-publish.md
vendored
12
.github/ISSUE_TEMPLATE/plugin-publish.md
vendored
@ -17,10 +17,15 @@ assignees: ""
|
|||||||
|
|
||||||
**插件 import 使用的名称**
|
**插件 import 使用的名称**
|
||||||
|
|
||||||
例:nonebot_plugin_example
|
nonebot_plugin_example
|
||||||
|
|
||||||
|
<!-- 或其他合法包名 -->
|
||||||
|
|
||||||
**插件 install 使用的名称**
|
**插件 install 使用的名称**
|
||||||
|
|
||||||
|
nonebot-plugin-example
|
||||||
|
|
||||||
|
<!--
|
||||||
例 1:nonebot-plugin-example
|
例 1:nonebot-plugin-example
|
||||||
|
|
||||||
通过 pypi 安装
|
通过 pypi 安装
|
||||||
@ -30,7 +35,10 @@ assignees: ""
|
|||||||
例 2:git+https://github.com/nonebot/nonebot-plugin-example
|
例 2:git+https://github.com/nonebot/nonebot-plugin-example
|
||||||
|
|
||||||
从 github 仓库安装
|
从 github 仓库安装
|
||||||
|
-->
|
||||||
|
|
||||||
**插件项目仓库/主页链接**
|
**插件项目仓库/主页链接**
|
||||||
|
|
||||||
例:nonebot/nonebot2(默认 github )或其他链接
|
nonebot/nonebot2
|
||||||
|
|
||||||
|
<!-- 默认 github 或其他完整链接,请勿使用 markdown 语法 -->
|
||||||
|
26
docs/.vuepress/public/adapters.json
Normal file
26
docs/.vuepress/public/adapters.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"id": "nonebot.adapters.cqhttp",
|
||||||
|
"link": "nonebot-adapter-cqhttp",
|
||||||
|
"name": "cqhttp",
|
||||||
|
"desc": "OneBot(CQHTTP) 协议",
|
||||||
|
"author": "yanyongyu",
|
||||||
|
"repo": "nonebot/nonebot2/tree/master/packages/nonebot-adapter-cqhttp"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "nonebot.adapters.ding",
|
||||||
|
"link": "nonebot-adapter-cqhttp",
|
||||||
|
"name": "ding",
|
||||||
|
"desc": "钉钉协议",
|
||||||
|
"author": "Artin",
|
||||||
|
"repo": "nonebot/nonebot2/tree/master/packages/nonebot-adapter-ding"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "nonebot.adapters.mirai",
|
||||||
|
"link": "nonebot-adapter-mirai",
|
||||||
|
"name": "mirai",
|
||||||
|
"desc": "Mirai-Api-HTTP 协议",
|
||||||
|
"author": "Mix",
|
||||||
|
"repo": "nonebot/nonebot2/tree/master/packages/nonebot-adapter-mirai"
|
||||||
|
}
|
||||||
|
]
|
Loading…
Reference in New Issue
Block a user