用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/FerroxLabs/wayland --skill weixin-file-send命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Run the pre-open market brief: scan the watchlist with the bundled market-open-report script, render a standalone HTML brief into the deliverables directory named in the run instructions, then report its path and state plainly whether the run was complete, partial, or empty. Use when the user wants the morning report, the daily brief, or a pre-open scan of their watchlist, run unattended on a schedule or on demand. Do NOT use for reading a live TradingView chart, for intraday signals, or for any request that needs a broker or market-data API; this workflow uses only the bundled offline scanner.
Analyze a chart — set up symbol/timeframe, add indicators, scroll to key dates, annotate, and screenshot. Use when the user wants technical analysis or chart review.
Post-trade review — pull losing trades from the strategy tester, screenshot each entry in context, and cluster common failure patterns. Use when the user asks "why am I losing?", "review my losses", or "what's wrong with my strategy?".
基于 SOC 职业分类
正在显示 SKILL.md
| name | weixin-file-send |
| description | Use when the user wants a local file or image sent back, such as "send me the file" or "发给我". |
Use this skill when:
Do not claim a file was sent unless you emit the protocol block exactly. Without the protocol block, the app will not actually send the file.
Append one or more protocol blocks at the end of the final reply:
[WAYLAND_CHANNEL_SEND]
{"type":"image","path":"./output/chart.png","caption":"Chart ready"}
[/WAYLAND_CHANNEL_SEND]
[WAYLAND_CHANNEL_SEND]
{"type":"file","path":"./output/report.pdf","fileName":"report.pdf","caption":"Report ready"}
[/WAYLAND_CHANNEL_SEND]
type must be image or file.path must point to a real local file that already exists.fileName is optional for file.caption is optional.User-visible text with image:
I generated the chart and sent it below.
[WAYLAND_CHANNEL_SEND]
{"type":"image","path":"./output/chart.png","caption":"Sales chart"}
[/WAYLAND_CHANNEL_SEND]
File only:
[WAYLAND_CHANNEL_SEND]
{"type":"file","path":"./output/report.pdf","fileName":"report.pdf","caption":"Weekly report"}
[/WAYLAND_CHANNEL_SEND]