Files
Team c0d14c6ac1 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
2026-04-18 13:07:46 +08:00

31 lines
2.3 KiB
JSON

{
"skill_name": "meta-creator",
"evals": [
{
"id": 1,
"prompt": "Create a new skill called 'csv-analyzer' that helps agents analyze CSV files: find summary statistics, detect missing values, and produce a short report.",
"expected_output": "A skills/csv-analyzer/SKILL.md with valid frontmatter (name matches directory, description explains what it does and when to use it), clear step-by-step instructions, and a skills/csv-analyzer/evals/evals.json with at least 3 eval cases covering typical use, varied phrasing, and an edge case (e.g. malformed CSV)."
},
{
"id": 2,
"prompt": "我想创建一个skill,帮助agent做代码审查,重点检查安全漏洞,比如SQL注入、XSS、硬编码密钥。",
"expected_output": "A skills/security-review/SKILL.md with Chinese-friendly trigger phrases in the description, security-focused review checklist in the body, and evals/evals.json with at least 3 cases including SQL injection, XSS, and hardcoded secrets scenarios."
},
{
"id": 3,
"prompt": "Here are the eval results for my 'doc-writer' skill. Assertion 'output includes a usage example' failed in 2 out of 3 cases. The agent wrote correct docs but skipped examples. How should I update the skill?",
"expected_output": "A targeted update to the doc-writer SKILL.md adding an explicit instruction to always include a usage example with reasoning. Does NOT add unrelated instructions or over-constrain the skill."
},
{
"id": 4,
"prompt": "Create a Kiro agent called 'db-expert' that specializes in database tasks. It should use a sql-helper skill and only have read access to files by default.",
"expected_output": "A .kiro/agents/db-expert.json with name 'db-expert', a description mentioning database tasks, tools including 'read' but not 'write' in allowedTools, and resources referencing the sql-helper skill via skill:// URI."
},
{
"id": 5,
"prompt": "帮我创建一个agent,名字叫 code-reviewer,调用 codereview 这个skill,只允许读文件,不能写。",
"expected_output": "A .kiro/agents/code-reviewer.json with name 'code-reviewer', read in allowedTools but write absent from allowedTools, and skill://skills/codereview/SKILL.md in resources."
}
]
}