ワンクリックで
send-file
Send a file from the workspace to the user on the platform. The file must exist within the workspace directory.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Send a file from the workspace to the user on the platform. The file must exist within the workspace directory.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Save information to persistent cross-conversation memory. Call this skill to save important information you learned. You MUST NOT manually modify the memory files.
Writing guidelines for producing high-quality Traditional Chinese (zh-TW) content. Use when writing any kind of content. Including blog posts, notes, technical articles, technical writing, chitchat, social media posts, etc., even when you are just sending a text message. Also use when reviewing or editing existing Chinese content for tone, style, and terminology compliance.
Modify memory metadata (visibility, importance) or disable memories. Use when you need to update the status of existing memories. You MUST use this skill to modify memory metadata, you MUST NOT manually modify the memory files.
Search through saved memories and your personal workspace notes by keywords. Use when you need to recall previous conversations, information about the user, or your own knowledge notes.
Get memory statistics for the current workspace. Returns counts of total, enabled, disabled, high-importance, and normal-importance memories.
Conduct a self-directed research session where you pick a topic from provided reference materials or your own curiosity, research it thoroughly using web search and browser tools, and write personal study notes to your agent workspace. Use in your personal research time, are given articles or topics to explore, or want to add new knowledge notes to your personal workspace at /app/data/agent-workspace/. **IMPORTANT - NEVER DELEGATE THIS SKILL TO SUBAGENTS OR ASSIGN IT AS A TASK.**
| name | send-file |
| description | Send a file from the workspace to the user on the platform. The file must exist within the workspace directory. |
| allowed-tools | Bash |
Send a file from your workspace to the current conversation channel.
${HOME}/.agents/skills/send-file/scripts/send-file.ts \
--session-id "$SESSION_ID" \
--file-path "relative/path/to/file.png" \
--caption "Optional description of the file"
| Parameter | Required | Description |
|---|---|---|
--session-id | Yes | Session ID from $SESSION_ID environment variable |
--file-path | Yes | File path relative to the workspace root |
--caption | No | Optional text message to accompany the file |
# Send an image
${HOME}/.agents/skills/send-file/scripts/send-file.ts \
--session-id "$SESSION_ID" \
--file-path "output/chart.png"
# Send a file with description
${HOME}/.agents/skills/send-file/scripts/send-file.ts \
--session-id "$SESSION_ID" \
--file-path "exports/report.pdf" \
--caption "Here is the report you requested"