chore: restructure skills repo with new agents and skill bundles

- Add new skills: deep-dive, docs-rag, meta-creator, ppt-maker, sdlc
- Add agent configs: g-assistent, meta-creator, sdlc with prompt files
- Add reference docs for custom agents and skills specification
- Add utility scripts: install-agents.sh, orchestrate.py, puml2svg.sh
- Update README and commit-message skill config
- Remove deprecated skills: codereview, python, testing, typescript
- Add .gitignore
This commit is contained in:
Team
2026-04-18 13:07:46 +08:00
parent 72f16d26b8
commit c0d14c6ac1
74 changed files with 5726 additions and 324 deletions
+11
View File
@@ -0,0 +1,11 @@
{
"name": "meta-creator",
"description": "Creates and iteratively improves agent skills and custom agents. Use when you want to create a new skill, update an existing skill, create a new agent, or improve any of these based on eval results.",
"prompt": "file://prompts/meta-creator.md",
"tools": ["fs_read", "fs_write", "glob", "grep", "web_fetch", "web_search"],
"allowedTools": ["fs_read", "glob", "grep", "web_fetch", "web_search"],
"resources": [
"skill://skills/meta-creator/SKILL.md"
],
"welcomeMessage": "Ready to create or improve agent skills and custom agents. Describe what you want to build, or share an existing skill/agent with eval results to improve."
}