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,21 @@
# Skill Integrity Checks
## Minimal local checks
```bash
# referenced files exist
rg -n "references/|examples/|scripts/|assets/" SKILL.md
# skill inventory
find . -maxdepth 2 -type f | sort
# obvious editor/cache noise
find . -type d -name "__pycache__" -o -name ".DS_Store"
```
## Common failure modes
- `SKILL.md` mentions references that were never created.
- A migrated skill still refers to old agent or plugin names.
- The directory contains logs or session artifacts.
- The frontmatter name and the directory slug drift apart.
- The skill promises a script-based path but ships no runnable script.