feat(skills): add model-family hint files for agent:bootstrap injection (anthropic/openai/generic)

This commit is contained in:
zap
2026-03-05 20:55:23 +00:00
parent 06202bcfbe
commit 52c64e6f39
3 changed files with 80 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
# MODEL_HINTS.md — General Tool Best Practices
Active model family: **Unknown** (no specific hints available for this model)
Applying universal best practices. For model-specific guidance, see:
- `skills/llm-tool-best-practices/hints/anthropic.md` (Claude)
- `skills/llm-tool-best-practices/hints/openai.md` (GPT)
## Universal rules
- Write detailed descriptions (34+ sentences per tool): purpose, when to use/not use, params, output, caveats.
- Fewer, richer tools beat many narrow ones. Consolidate related operations.
- Use `service_resource_verb` namespacing for clarity.
- Return only high-signal data. Strip opaque IDs, raw stack traces, bloat.
- Bound response sizes; make truncation messages actionable.
- Least privilege. Validate all inputs. Guard destructive actions.