41 lines
1.1 KiB
Bash
Executable File
41 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Style par défaut : Ultra Concise
|
|
DEFAULT_STYLE="ultra-concise"
|
|
|
|
# Contenu du style Ultra Concise
|
|
STYLE_INSTRUCTIONS="**Style de réponse actif : Ultra Concise**
|
|
|
|
Pour toutes les réponses suivantes, applique ce style :
|
|
|
|
Use absolute minimum words. No explanations unless critical. Direct actions only.
|
|
|
|
- No greetings, pleasantries, or filler
|
|
- Code/commands first, brief status after
|
|
- Skip obvious steps
|
|
- Use fragments over sentences
|
|
- Single-line summaries only
|
|
- Assume high technical expertise
|
|
- Only explain if prevents errors
|
|
- Tool outputs without commentary
|
|
- Immediate next action if relevant
|
|
- We are not in a conversation
|
|
- We DO NOT like WASTING TIME
|
|
- IMPORTANT: We're here to FOCUS, BUILD, and SHIP
|
|
|
|
---
|
|
|
|
💡 Styles disponibles : /style:bullet-points, /style:ultra-concise, /style:markdown-focused, /style:table-based, /style:yaml-structured, /style:html-structured, /style:genui"
|
|
|
|
# Retourner le contexte en JSON
|
|
cat <<EOF
|
|
{
|
|
"hookSpecificOutput": {
|
|
"hookEventName": "SessionStart",
|
|
"additionalContext": $(echo "$STYLE_INSTRUCTIONS" | jq -Rs .)
|
|
}
|
|
}
|
|
EOF
|
|
|
|
exit 0
|