mirror of
https://github.com/anthropics/claude-code.git
synced 2026-02-19 04:27:33 -08:00
Adds a new plugin that transforms plain Slack forwarded message blocks into visually distinctive formatted boxes using Unicode box-drawing characters. Before: [Forwarded Message] From: Felix Klock Message: Here is some text... After: ╔════════════════════════════════════════════════════════════════════╗ ║ FORWARDED MESSAGE ║ ╠════════════════════════════════════════════════════════════════════╣ ║ From: Felix Klock ║ ╟────────────────────────────────────────────────────────────────────╢ ║ Here is some text... ║ ╚════════════════════════════════════════════════════════════════════╝ The plugin uses a UserPromptSubmit hook to intercept prompts containing [Forwarded Message] blocks and reformats them for better visual distinction. https://claude.ai/code/session_01YNRC6p2gAMSQZPX2NGK5F1
19 lines
400 B
JSON
19 lines
400 B
JSON
{
|
|
"name": "slack-quote-formatter",
|
|
"version": "1.0.0",
|
|
"description": "Enhances visual display of Slack forwarded and quoted messages with distinctive formatting",
|
|
"author": {
|
|
"name": "Anthropic",
|
|
"email": "support@anthropic.com"
|
|
},
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"slack",
|
|
"formatting",
|
|
"quotes",
|
|
"messages",
|
|
"visual"
|
|
],
|
|
"hooks": "./hooks/hooks.json"
|
|
}
|