Add AGENTS.md and Templates directory

This commit is contained in:
2026-04-07 21:13:42 +08:00
parent 80bc593b36
commit 3866525764
120 changed files with 4494 additions and 3 deletions

View File

@@ -0,0 +1,145 @@
---
categories:
- "[[LLM Wiki]]"
tags:
- wiki
- template
created: 2026-04-07
type: template
---
# Wiki Page Template
用于创建 LLM Wiki 页面的模板。
## 概念页面模板
```markdown
---
categories:
- "[[LLM Wiki]]"
tags:
- wiki
- {tag1}
- {tag2}
created: {YYYY-MM-DD}
source: "[[{source-file}]]"
type: concept
aliases:
- {alias1}
---
# {概念名称}
> **一句话定义**{核心定义}
## 定义
{概念的详细定义和解释}
## 关键要点
- 要点 1
- 要点 2
- 要点 3
## 与其他概念的关系
- [[相关概念1]] — {关系说明}
- [[相关概念2]] — {关系说明}
## 来源
- [[source]] — 来源描述
```
## 实体页面模板
```markdown
---
categories:
- "[[LLM Wiki]]"
- "[[People]]"
tags:
- wiki
- people
- {domain}
created: {YYYY-MM-DD}
source: "[[{source-file}]]"
type: entity
aliases:
- {alias}
---
# {人物姓名}
{一句话简介}
## 身份
| 属性 | 值 |
|------|-----|
| 领域 | {领域} |
| 知名身份 | {身份} |
## 主要贡献
- 贡献 1
- 贡献 2
## 与本 Wiki 相关
{此人与 wiki 内容的关联}
## 来源
- [[source]] — 来源描述
```
## 工具页面模板
```markdown
---
categories:
- "[[LLM Wiki]]"
tags:
- wiki
- tool
- {category}
created: {YYYY-MM-DD}
source: "[[{source-file}]]"
type: tool
aliases:
- {alias}
---
# {工具名称}
> **一句话描述**
## 基本信息
| 属性 | 值 |
|------|-----|
| 仓库 | {URL} |
| 类型 | {类型} |
## 在 LLM Wiki 中的角色
{工具在 wiki 工作流中的作用}
## 来源
- [[source]] — 来源描述
```
## Frontmatter 规范
| 字段 | 必填 | 说明 |
|------|------|------|
| `categories` | ✅ | 始终包含 `[[LLM Wiki]]` |
| `tags` | ✅ | 始终包含 `wiki` |
| `created` | ✅ | ISO 日期格式 |
| `source` | ✅ | wikilink 指向 raw 来源 |
| `type` | ✅ | `concept` / `entity` / `tool` / `index` / `log` |
| `aliases` | 可选 | 替代名称列表 |