Skip to content

Commit 8d98ae4

Browse files
committed
Expand MatrixAgentSkills docs entry points
1 parent 6f50d9a commit 8d98ae4

5 files changed

Lines changed: 100 additions & 2 deletions

File tree

docs/intro.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ title: 插件 Wiki
66

77
当前已经收录:
88

9+
- [MatrixAgentSkills](/docs/matrix-agent-skills/overview)
910
- [MatrixAuth](/docs/matrixauth/overview)
1011
- [MatrixCook](/docs/matrixcook/overview)
1112
- [MatrixShop](/docs/matrixshop)
@@ -26,3 +27,8 @@ title: 插件 Wiki
2627
3. 配置结构
2728
4. 命令与权限
2829
5. 常见问题
30+
31+
如果你想直接把 Matrix 系列配置能力交给 agent,也可以先看:
32+
33+
- [MatrixAgentSkills 总览](/docs/matrix-agent-skills/overview)
34+
- [直接发给 Agent 的示例](/docs/matrix-agent-skills/direct-link-examples)
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
---
2+
title: 直接发给 Agent 的示例
3+
description: 如何把 MatrixAgentSkills 的 GitHub 链接或 raw 链接直接发给常见 agent。
4+
---
5+
6+
# 直接发给 Agent 的示例
7+
8+
这一页只解决一个问题:
9+
10+
怎么把 `MatrixAgentSkills` 的链接直接发给 agent,让它立刻开始工作。
11+
12+
## Codex / OpenAI Skills
13+
14+
如果 agent 支持原生 skill 安装,直接发这个:
15+
16+
```text
17+
Install and use this MatrixShop config skill:
18+
https://github.com/54895y/MatrixAgentSkills/tree/main/matrixshop-config
19+
```
20+
21+
如果你想带上任务目标,一起发:
22+
23+
```text
24+
Install and use this MatrixShop config skill:
25+
https://github.com/54895y/MatrixAgentSkills/tree/main/matrixshop-config
26+
27+
Then generate a MatrixShop config pack for a survival server with:
28+
- vault as default currency
29+
- one SystemShop weapon category
30+
- one GlobalMarket entry
31+
- ChestShop enabled
32+
```
33+
34+
## Claude / Gemini / Cline / Roo / Continue
35+
36+
这类 agent 更适合直接吃 raw prompt。
37+
38+
直接发这个:
39+
40+
```text
41+
Use this MatrixShop config prompt pack:
42+
https://raw.githubusercontent.com/54895y/MatrixAgentSkills/main/portable/matrixshop-config.md
43+
```
44+
45+
如果你想连需求一起发:
46+
47+
```text
48+
Use this MatrixShop config prompt pack:
49+
https://raw.githubusercontent.com/54895y/MatrixAgentSkills/main/portable/matrixshop-config.md
50+
51+
Generate:
52+
- module.yml
53+
- Economy/currency.yml
54+
- SystemShop/settings.yml
55+
- SystemShop/shops/weapon.yml
56+
```
57+
58+
## AIChat
59+
60+
AIChat 不建议直接投 skill,建议导入知识库。
61+
62+
知识库链接:
63+
64+
- [matrixshop-config-kb.md](https://raw.githubusercontent.com/54895y/MatrixAgentSkills/main/aichat/matrixshop-config-kb.md)
65+
66+
导入后,直接问:
67+
68+
```text
69+
根据我的生存服需求生成 MatrixShop 配置:
70+
- 默认使用 vault
71+
- Auction 使用点券
72+
- PlayerShop 开启
73+
- Cart 和 Record 使用默认结构
74+
```
75+
76+
## 推荐做法
77+
78+
如果你只是想让 agent 快速开始,不要解释太多背景。
79+
80+
最有效的做法是:
81+
82+
1. 发链接
83+
2. 发目标文件清单
84+
3. 发你的服设要求
85+
86+
这样 agent 最容易直接产出可落地 YAML。

docs/matrix-agent-skills/overview.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,6 @@ description: Matrix 系列插件的公开 skill、prompt pack 与知识库仓库
5353
## 推荐阅读
5454

5555
1. [按 Agent 安装](./install-by-agent)
56-
2. [MatrixShop Config Skill](./matrixshop-config)
57-
3. [AIChat 知识库入口](./aichat-knowledge-base)
56+
2. [直接发给 Agent 的示例](./direct-link-examples)
57+
3. [MatrixShop Config Skill](./matrixshop-config)
58+
4. [AIChat 知识库入口](./aichat-knowledge-base)

docs/plugins.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ MatrixAgentSkills 是 Matrix 系列插件的公开 skill、prompt pack 与知识
2222

2323
[进入 MatrixAgentSkills 文档](/docs/matrix-agent-skills/overview)
2424

25+
如果你只是想直接复制一段提示发给 agent,请看:
26+
27+
- [直接发给 Agent 的示例](/docs/matrix-agent-skills/direct-link-examples)
28+
2529
## MatrixAuth
2630

2731
MatrixAuth 是混合登录与账号档案管理插件,围绕 `PREMIUM``OFFLINE``BEDROCK` 三种身份模式工作,支持:

sidebars.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ const sidebars: SidebarsConfig = {
1313
},
1414
items: [
1515
'matrix-agent-skills/install-by-agent',
16+
'matrix-agent-skills/direct-link-examples',
1617
'matrix-agent-skills/matrixshop-config',
1718
'matrix-agent-skills/aichat-knowledge-base',
1819
],

0 commit comments

Comments
 (0)