backup materials and knowledge-base docs

This commit is contained in:
admin
2026-05-30 16:22:29 +08:00
commit 93e50e8fce
3024 changed files with 2994945 additions and 0 deletions

View File

@@ -0,0 +1,53 @@
# Supported Update Types
## YAML Frontmatter Updates
Update name or description:
```yaml
# Current
---
name: my-skill
description: A helpful skill for various tasks.
---
# Suggested
---
name: api-contract-manager
description: This skill should be used when the user asks to "validate API contract", "check API compatibility", or "detect breaking changes"
---
```
## SKILL.md Content Updates
Fix writing style (imperative form):
```
# Current
You should create the file first.
You need to validate the input.
# Suggested
Create the file first.
Validate the input.
```
## References/ File Updates
Add new section:
```markdown
## New Section
Content to be added...
```
## New File Creation
Create new example file:
```markdown
# examples/demo.md
Complete example content...
```