Skip to content

Commit 5a32df3

Browse files
committed
update docs
1 parent a6643f4 commit 5a32df3

File tree

2 files changed

+23
-5
lines changed

2 files changed

+23
-5
lines changed

docs/ai/skills.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@ title: Skills
2020

2121
[executing-plans skill](https://skills.sh/obra/superpowers/executing-plans) 制定计划,严格审查,分批执行任务,并在批次之间提交审查报告
2222

23-
## drawio
24-
25-
[drawio](https://skills.sh/bahayonghang/drawio-skills/drawio) 使用 Draw.io XML 和 Design System 2.0 创建、编辑和导出架构图、流程图和技术图
26-
2723
## excalidraw-diagram
2824

2925
[excalidraw-diagram skill]() 根据语言描述生成 Excalidraw 格式的图表

docs/plugin/dev.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,8 +275,30 @@ IDE 获取全局配置键入提示,这是必需的,相反,你们将无法
275275

276276
:::
277277

278+
### 插件配置
279+
280+
`plugin.toml` 是插件的配置文件,每个插件都必须包含此文件
281+
282+
```toml
283+
# 插件信息
284+
[plugin]
285+
# 图标(插件仓库内的图标路径或图标链接地址)
286+
icon = 'assets/icon.svg'
287+
# 摘要(简短描述)
288+
summary = ''
289+
# 版本号
290+
version = ''
291+
# 描述
292+
description = ''
293+
# 作者
294+
author = ''
295+
# 标签
296+
# 当前支持:ai、mcp、agent、auth、storage、notification、task、payment、other
297+
tags = ['']
298+
```
299+
278300
## 注意事项
279301

280302
::: caution
281303
非必要情况下,插件代码中尽量不要引用架构中的现有方法,如果架构中的现有方法发生变更,则插件也必须同步变更,否则插件将被损坏
282-
:::
304+
:::

0 commit comments

Comments
 (0)