Skills Plugins MCP Prompt Model 博客 我的中心
Data & Consulting #image #agent

cc-connect

This skill should be used when sending images, files, or notifications back to the user via messaging platforms (Discord, Feishu, Telegram, etc.) through cc-connect. TRIGGER when agent generates a plot/chart/screenshot and wants to show the user; agent creates a report/PDF/file the user should receive; agent needs to proactively notify the user (e.g. task completed, alert, reminder); user asks to "send image", "show me the chart", "notify me", "send the file", "send to Telegram", "show plot in Discord".

DeepseekModel Curated skill Quality Excellent · 78 v1.0.0

Get

https://deepseekmodel.com/api/download.php?id=archibate-dotfiles-opencode-optional-skills-cc-connect-skill-md&format=skill
Download .skill Standard format with system_prompt and model_config, ready for any agent framework
The actual content of the system_prompt field in the .skill file.
name cc-connect description This skill should be used when sending images, files, or notifications back to the user via messaging platforms (Discord, Feishu, Telegram, etc.) through cc-connect. TRIGGER when agent generates a plot/chart/screenshot and wants to show the user; agent creates a report/PDF/file the user should receive; agent needs to proactively notify the user (e.g. task completed, alert, reminder); user asks to "send image", "show me the chart", "notify me", "send the file", "send to Telegram", "show plot in Discord". version 0.1.0 cc-connect: Send Images, Files, and Notifications Purpose Claude Code cannot send images or files back to users. The terminal output is text-only. cc-connect bridges this gap by providing a send command that delivers images, files, and text notifications directly through messaging platforms (Discord, Feishu, Telegram, etc.). When to use Send generated charts/plots — matplotlib, plotly, seaborn, etc. Send screenshots — captured via agent-browser or other tools Send reports/files — PDFs, CSVs, logs, any artifact to transfer Proactive notifications — task completed, long job done, alerts Send links — share URL links to user (easier to click) When NOT to use Short text report — response directly Service not available — skip this skill if cc-connect daemon not running Commands All commands use cc-connect send with different flags. Send an Image cc-connect send --image /absolute/path/to/image.png -p <project> -m "Description" Repeat --image for multiple images in one message. Supported formats: PNG, JPG, JPEG, GIF. Always use absolute paths. Send a File cc-connect send --file /absolute/path/to/report.pdf -p <project> -m "Description" Repeat --file for multiple files. Works with any file type: PDF, CSV, ZIP, etc. Send a Text Notification cc-connect send -m "Task completed successfully" -p <project> For long or multi-line messages, use heredoc: cc-connect send --stdin -p <project> << 'EOF' Build completed! - Tests: PASS - Coverage: 87% EOF Combine Image + File + Message cc-connect send --image /path/to/chart.png --file /path/to/data.csv -p <project> -m "Results attached" Common Options Flag Description -p, --project <name> Target project name (required when multiple projects exist) -s, --session <key> Target specific session key (optional, defaults to first active) -m, --message <text> Text message to accompany the attachment --image <path> Image file to send (repeatable) --file <path> File to send (repeatable) --stdin Read message body from stdin Project Names Project names come from ~/.cc-connect/config.toml . Check the config to find available project names: grep -A1 'name = ' ~/.cc-connect/config.toml If only one project is configured, -p can be omitted. Workflow Patterns Pattern 1: Generate and Send a Chart After generating a plot with matplotlib, save it to disk and send: import matplotlib.pyplot as plt plt.savefig( "/tmp/chart.png" , dpi= 150 , bbox_inches= "tight" ) plt.close() Then: cc-connect send --image /tmp/chart.png -p <project> -m "Here is the chart" Pattern 2: Notify After Long Task When a long-running task completes (training, backtest, build), notify the user even if they are away from the screen: cc-connect send -m "Training complete! Loss: 0.023, Accuracy: 97.2%" -p <project> Pattern 3: Send Report with Multiple Files cc-connect send \ --file /tmp/report.pdf \ --file /tmp/data.csv \ --image /tmp/summary_chart.png \ -p <project> \ -m "Weekly report attached" Troubleshooting "no active session found" Try specifying the full session key found in daemon logs: journalctl --user -u cc-connect -n 20 --no-pager | grep session_key If not found: The user has not started a chat session yet. The user must send at least one message on the platform before cc-connect send can deliver to them. Then use the session key: cc-connect send --image /path/to/img.png -p <project> -s "discord:xxx:xxx" -m "Image" "project not found" Check available projects with grep 'name = ' ~/.cc-connect/config.toml and use the exact project name with -p . Beta Version Required The --image and --file flags require cc-connect >= v1.2.2-beta. Install via: npm install -g cc-connect@beta Stable versions (v1.2.1 and below) only support text messages ( -m , --stdin ). Requirements cc-connect daemon must be running: cc-connect daemon status attachment_send = "on" in ~/.cc-connect/config.toml (global or per-project) For image/file sending: cc-connect >= v1.2.2-beta ( cc-connect --version )
Keywords that activate this skill. Click one to copy it.

This skill does not provide trigger words.

The downloaded .skill package contains the following fields.
Field Description
formatFormat tag (skill/v1)
skill_idUnique skill ID
nameSkill name
versionVersion
descriptionDescription
categoryCategories (array)
trigger_wordsTrigger words
tagsTags
sourceSource
source_urlSource URL (this page)
exported_atExported at (set per download)
system_promptSystem prompt body
model_configModel config: provider / model / temperature / max_tokens / top_p
examplesExamples
install_guideImport guide for Coze / Dify / Claude / custom frameworks
The same skill can be exported in different platform formats.
.skill Standard format with system_prompt and model_config, ready for any agent framework Download
.skillpro Enhanced format with scripts, tools, dependencies and hooks Download
.json Plain JSON export with system_prompt and model parameters only Download
Coze Markdown with frontmatter, for Coze platform import Download
Dify Dify DSL, import directly after creating an app Download

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。