Files
BaiLongma/skills/README.md

34 lines
712 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Skills 系统
遵循 Anthropic Agent Skills 规范改造。
每个技能 = 一个文件夹 + SKILL.mdYAML frontmatter + Markdown 指令)。
## 结构
```
skills/
├── README.md
├── template/
│ └── SKILL.md
├── self-evolution/
│ └── SKILL.md
├── project-analysis/
│ └── SKILL.md
└── ...
```
## SKILL.md 格式
```markdown
---
name: skill-name
description: 简短描述
---
# 指令
## 示例
## 指南
```
## 使用方式
- `skill_builder({action:"list"})` — 列出所有技能
- `skill_builder({action:"create", name:"xxx", description:"xxx", instructions:"..."})` — 创建新技能
- `skill_builder({action:"tree"})` — 查看文件树