ワンクリックで
set-reminder
Set a one-time reminder to be delivered via DM at a future time
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Set a one-time reminder to be delivered via DM at a future time
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
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.**
SOC 職業分類に基づく
| name | set-reminder |
| description | Set a one-time reminder to be delivered via DM at a future time |
| allowed-tools | Bash |
Set a one-time reminder that will be delivered to the user via direct message (DM) at the specified time.
--scheduled-at parameter MUST be a valid ISO 8601 UTC timestamp (e.g., 2025-01-15T10:00:00Z). You are responsible for converting the user's natural language time expression to this format.${HOME}/.agents/skills/set-reminder/scripts/set-reminder.ts \
--session-id "$SESSION_ID" \
--scheduled-at "2025-01-15T10:00:00Z" \
--message "Team meeting in 30 minutes"
| Parameter | Required | Description |
|---|---|---|
--session-id | Yes | Current session ID |
--scheduled-at | Yes | ISO 8601 UTC timestamp for when the reminder should fire |
--message | Yes | The reminder message content |
scheduledAt must be a valid ISO 8601 timestamp in the future (at least 1 minute from now)reminderId for future cancellation via cancel-reminder{
"success": true,
"data": {
"reminderId": "rem_1705312800000_a1b2c3d4",
"scheduledAt": "2025-01-15T10:00:00.000Z"
}
}