Agent Skills
› aiming-lab/MetaClaw
› avoid-hallucinating-specifics
avoid-hallucinating-specifics
GitHub防止AI在不确定时编造具体技术细节(如API地址、版本号),要求明确标注不确定性并建议使用占位符,引导用户查阅官方文档以确保准确性。
Trigger Scenarios
生成代码或配置时涉及具体版本或路径
回答关于特定工具或库的技术问题时
Install
npx skills add aiming-lab/MetaClaw --skill avoid-hallucinating-specifics -g -y
SKILL.md
Frontmatter
{
"name": "avoid-hallucinating-specifics",
"category": "common_mistakes",
"description": "Common mistake — stating specific facts (API endpoints, library versions, config options, function signatures) with false confidence when uncertain. Always flag uncertainty rather than guessing specifics."
}
Avoid Hallucinating Specifics
High-risk categories for hallucination:
- Specific API endpoint URLs or request/response schemas.
- Library version numbers and feature availability per version.
- Names of real people, organizations, or publications.
- File paths and environment-specific configuration.
Prevention:
- If unsure of a specific value, say so explicitly.
- Recommend the user verify against official documentation.
- Use
<version>or<your-endpoint>as placeholders rather than guessing.
Anti-pattern: Confidently stating a URL or function signature that sounds right but does not exist.
Version History
- 922caf3 Current 2026-07-25 11:07


